Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Side by Side Diff: milo/api/proto/buildbot.pb.go

Issue 2366763002: Milo: Grpc endpoint for multiple builds on a builder (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Code generated by protoc-gen-go. 1 // Code generated by protoc-gen-go.
2 // source: github.com/luci/luci-go/milo/api/proto/buildbot.proto 2 // source: github.com/luci/luci-go/milo/api/proto/buildbot.proto
3 // DO NOT EDIT! 3 // DO NOT EDIT!
4 4
5 /* 5 /*
6 Package milo is a generated protocol buffer package. 6 Package milo is a generated protocol buffer package.
7 7
8 It is generated from these files: 8 It is generated from these files:
9 github.com/luci/luci-go/milo/api/proto/buildbot.proto 9 github.com/luci/luci-go/milo/api/proto/buildbot.proto
10 10
11 It has these top-level messages: 11 It has these top-level messages:
12 MasterRequest 12 MasterRequest
13 CompressedMasterJSON 13 CompressedMasterJSON
14 BuildbotBuildRequest 14 BuildbotBuildRequest
15 BuildbotBuildJSON 15 BuildbotBuildJSON
16 BuildbotBuildsRequest
17 BuildbotBuildsJSON
16 */ 18 */
17 package milo 19 package milo
18 20
19 import prpc "github.com/luci/luci-go/grpc/prpc" 21 import prpc "github.com/luci/luci-go/grpc/prpc"
20 22
21 import proto "github.com/golang/protobuf/proto" 23 import proto "github.com/golang/protobuf/proto"
22 import fmt "fmt" 24 import fmt "fmt"
23 import math "math" 25 import math "math"
24 import google_protobuf "github.com/luci/luci-go/common/proto/google" 26 import google_protobuf "github.com/luci/luci-go/common/proto/google"
25 27
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 type BuildbotBuildJSON struct { 89 type BuildbotBuildJSON struct {
88 // Json data of the build. 90 // Json data of the build.
89 Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempt y"` 91 Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempt y"`
90 } 92 }
91 93
92 func (m *BuildbotBuildJSON) Reset() { *m = BuildbotBuildJSON{ } } 94 func (m *BuildbotBuildJSON) Reset() { *m = BuildbotBuildJSON{ } }
93 func (m *BuildbotBuildJSON) String() string { return proto.CompactTex tString(m) } 95 func (m *BuildbotBuildJSON) String() string { return proto.CompactTex tString(m) }
94 func (*BuildbotBuildJSON) ProtoMessage() {} 96 func (*BuildbotBuildJSON) ProtoMessage() {}
95 func (*BuildbotBuildJSON) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } 97 func (*BuildbotBuildJSON) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
96 98
99 // The request for multiple build on a builder.
100 type BuildbotBuildsRequest struct {
101 Master string `protobuf:"bytes,1,opt,name=master" json:"master,omitempt y"`
102 Builder string `protobuf:"bytes,2,opt,name=builder" json:"builder,omitem pty"`
103 // Limit to the number of builds to return (default: 50).
104 Limit int32 `protobuf:"varint,3,opt,name=limit" json:"limit,omitempty"`
105 }
106
107 func (m *BuildbotBuildsRequest) Reset() { *m = BuildbotBuilds Request{} }
108 func (m *BuildbotBuildsRequest) String() string { return proto.Compac tTextString(m) }
109 func (*BuildbotBuildsRequest) ProtoMessage() {}
110 func (*BuildbotBuildsRequest) Descriptor() ([]byte, []int) { return fileDescript or0, []int{4} }
111
112 // The response message for multiple builds in a builder.
113 type BuildbotBuildsJSON struct {
114 Builds []*BuildbotBuildJSON `protobuf:"bytes,1,rep,name=builds" json:"bu ilds,omitempty"`
115 }
116
117 func (m *BuildbotBuildsJSON) Reset() { *m = BuildbotBuildsJSO N{} }
118 func (m *BuildbotBuildsJSON) String() string { return proto.CompactTe xtString(m) }
119 func (*BuildbotBuildsJSON) ProtoMessage() {}
120 func (*BuildbotBuildsJSON) Descriptor() ([]byte, []int) { return fileDescriptor0 , []int{5} }
121
122 func (m *BuildbotBuildsJSON) GetBuilds() []*BuildbotBuildJSON {
123 if m != nil {
124 return m.Builds
125 }
126 return nil
127 }
128
97 func init() { 129 func init() {
98 proto.RegisterType((*MasterRequest)(nil), "milo.MasterRequest") 130 proto.RegisterType((*MasterRequest)(nil), "milo.MasterRequest")
99 proto.RegisterType((*CompressedMasterJSON)(nil), "milo.CompressedMasterJ SON") 131 proto.RegisterType((*CompressedMasterJSON)(nil), "milo.CompressedMasterJ SON")
100 proto.RegisterType((*BuildbotBuildRequest)(nil), "milo.BuildbotBuildRequ est") 132 proto.RegisterType((*BuildbotBuildRequest)(nil), "milo.BuildbotBuildRequ est")
101 proto.RegisterType((*BuildbotBuildJSON)(nil), "milo.BuildbotBuildJSON") 133 proto.RegisterType((*BuildbotBuildJSON)(nil), "milo.BuildbotBuildJSON")
134 proto.RegisterType((*BuildbotBuildsRequest)(nil), "milo.BuildbotBuildsRe quest")
135 proto.RegisterType((*BuildbotBuildsJSON)(nil), "milo.BuildbotBuildsJSON" )
102 } 136 }
103 137
104 // Reference imports to suppress errors if they are not otherwise used. 138 // Reference imports to suppress errors if they are not otherwise used.
105 var _ context.Context 139 var _ context.Context
106 var _ grpc.ClientConn 140 var _ grpc.ClientConn
107 141
108 // This is a compile-time assertion to ensure that this generated file 142 // This is a compile-time assertion to ensure that this generated file
109 // is compatible with the grpc package it is being compiled against. 143 // is compatible with the grpc package it is being compiled against.
110 const _ = grpc.SupportPackageIsVersion3 144 const _ = grpc.SupportPackageIsVersion3
111 145
112 // Client API for Buildbot service 146 // Client API for Buildbot service
113 147
114 type BuildbotClient interface { 148 type BuildbotClient interface {
115 GetCompressedMasterJSON(ctx context.Context, in *MasterRequest, opts ... grpc.CallOption) (*CompressedMasterJSON, error) 149 GetCompressedMasterJSON(ctx context.Context, in *MasterRequest, opts ... grpc.CallOption) (*CompressedMasterJSON, error)
116 GetBuildbotBuildJSON(ctx context.Context, in *BuildbotBuildRequest, opts ...grpc.CallOption) (*BuildbotBuildJSON, error) 150 GetBuildbotBuildJSON(ctx context.Context, in *BuildbotBuildRequest, opts ...grpc.CallOption) (*BuildbotBuildJSON, error)
151 GetBuildbotBuildsJSON(ctx context.Context, in *BuildbotBuildsRequest, op ts ...grpc.CallOption) (*BuildbotBuildsJSON, error)
117 } 152 }
118 type buildbotPRPCClient struct { 153 type buildbotPRPCClient struct {
119 client *prpc.Client 154 client *prpc.Client
120 } 155 }
121 156
122 func NewBuildbotPRPCClient(client *prpc.Client) BuildbotClient { 157 func NewBuildbotPRPCClient(client *prpc.Client) BuildbotClient {
123 return &buildbotPRPCClient{client} 158 return &buildbotPRPCClient{client}
124 } 159 }
125 160
126 func (c *buildbotPRPCClient) GetCompressedMasterJSON(ctx context.Context, in *Ma sterRequest, opts ...grpc.CallOption) (*CompressedMasterJSON, error) { 161 func (c *buildbotPRPCClient) GetCompressedMasterJSON(ctx context.Context, in *Ma sterRequest, opts ...grpc.CallOption) (*CompressedMasterJSON, error) {
127 out := new(CompressedMasterJSON) 162 out := new(CompressedMasterJSON)
128 err := c.client.Call(ctx, "milo.Buildbot", "GetCompressedMasterJSON", in , out, opts...) 163 err := c.client.Call(ctx, "milo.Buildbot", "GetCompressedMasterJSON", in , out, opts...)
129 if err != nil { 164 if err != nil {
130 return nil, err 165 return nil, err
131 } 166 }
132 return out, nil 167 return out, nil
133 } 168 }
134 169
135 func (c *buildbotPRPCClient) GetBuildbotBuildJSON(ctx context.Context, in *Build botBuildRequest, opts ...grpc.CallOption) (*BuildbotBuildJSON, error) { 170 func (c *buildbotPRPCClient) GetBuildbotBuildJSON(ctx context.Context, in *Build botBuildRequest, opts ...grpc.CallOption) (*BuildbotBuildJSON, error) {
136 out := new(BuildbotBuildJSON) 171 out := new(BuildbotBuildJSON)
137 err := c.client.Call(ctx, "milo.Buildbot", "GetBuildbotBuildJSON", in, o ut, opts...) 172 err := c.client.Call(ctx, "milo.Buildbot", "GetBuildbotBuildJSON", in, o ut, opts...)
138 if err != nil { 173 if err != nil {
139 return nil, err 174 return nil, err
140 } 175 }
141 return out, nil 176 return out, nil
142 } 177 }
143 178
179 func (c *buildbotPRPCClient) GetBuildbotBuildsJSON(ctx context.Context, in *Buil dbotBuildsRequest, opts ...grpc.CallOption) (*BuildbotBuildsJSON, error) {
180 out := new(BuildbotBuildsJSON)
181 err := c.client.Call(ctx, "milo.Buildbot", "GetBuildbotBuildsJSON", in, out, opts...)
182 if err != nil {
183 return nil, err
184 }
185 return out, nil
186 }
187
144 type buildbotClient struct { 188 type buildbotClient struct {
145 cc *grpc.ClientConn 189 cc *grpc.ClientConn
146 } 190 }
147 191
148 func NewBuildbotClient(cc *grpc.ClientConn) BuildbotClient { 192 func NewBuildbotClient(cc *grpc.ClientConn) BuildbotClient {
149 return &buildbotClient{cc} 193 return &buildbotClient{cc}
150 } 194 }
151 195
152 func (c *buildbotClient) GetCompressedMasterJSON(ctx context.Context, in *Master Request, opts ...grpc.CallOption) (*CompressedMasterJSON, error) { 196 func (c *buildbotClient) GetCompressedMasterJSON(ctx context.Context, in *Master Request, opts ...grpc.CallOption) (*CompressedMasterJSON, error) {
153 out := new(CompressedMasterJSON) 197 out := new(CompressedMasterJSON)
154 err := grpc.Invoke(ctx, "/milo.Buildbot/GetCompressedMasterJSON", in, ou t, c.cc, opts...) 198 err := grpc.Invoke(ctx, "/milo.Buildbot/GetCompressedMasterJSON", in, ou t, c.cc, opts...)
155 if err != nil { 199 if err != nil {
156 return nil, err 200 return nil, err
157 } 201 }
158 return out, nil 202 return out, nil
159 } 203 }
160 204
161 func (c *buildbotClient) GetBuildbotBuildJSON(ctx context.Context, in *BuildbotB uildRequest, opts ...grpc.CallOption) (*BuildbotBuildJSON, error) { 205 func (c *buildbotClient) GetBuildbotBuildJSON(ctx context.Context, in *BuildbotB uildRequest, opts ...grpc.CallOption) (*BuildbotBuildJSON, error) {
162 out := new(BuildbotBuildJSON) 206 out := new(BuildbotBuildJSON)
163 err := grpc.Invoke(ctx, "/milo.Buildbot/GetBuildbotBuildJSON", in, out, c.cc, opts...) 207 err := grpc.Invoke(ctx, "/milo.Buildbot/GetBuildbotBuildJSON", in, out, c.cc, opts...)
164 if err != nil { 208 if err != nil {
165 return nil, err 209 return nil, err
166 } 210 }
167 return out, nil 211 return out, nil
168 } 212 }
169 213
214 func (c *buildbotClient) GetBuildbotBuildsJSON(ctx context.Context, in *Buildbot BuildsRequest, opts ...grpc.CallOption) (*BuildbotBuildsJSON, error) {
215 out := new(BuildbotBuildsJSON)
216 err := grpc.Invoke(ctx, "/milo.Buildbot/GetBuildbotBuildsJSON", in, out, c.cc, opts...)
217 if err != nil {
218 return nil, err
219 }
220 return out, nil
221 }
222
170 // Server API for Buildbot service 223 // Server API for Buildbot service
171 224
172 type BuildbotServer interface { 225 type BuildbotServer interface {
173 GetCompressedMasterJSON(context.Context, *MasterRequest) (*CompressedMas terJSON, error) 226 GetCompressedMasterJSON(context.Context, *MasterRequest) (*CompressedMas terJSON, error)
174 GetBuildbotBuildJSON(context.Context, *BuildbotBuildRequest) (*BuildbotB uildJSON, error) 227 GetBuildbotBuildJSON(context.Context, *BuildbotBuildRequest) (*BuildbotB uildJSON, error)
228 GetBuildbotBuildsJSON(context.Context, *BuildbotBuildsRequest) (*Buildbo tBuildsJSON, error)
175 } 229 }
176 230
177 func RegisterBuildbotServer(s prpc.Registrar, srv BuildbotServer) { 231 func RegisterBuildbotServer(s prpc.Registrar, srv BuildbotServer) {
178 s.RegisterService(&_Buildbot_serviceDesc, srv) 232 s.RegisterService(&_Buildbot_serviceDesc, srv)
179 } 233 }
180 234
181 func _Buildbot_GetCompressedMasterJSON_Handler(srv interface{}, ctx context.Cont ext, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (inte rface{}, error) { 235 func _Buildbot_GetCompressedMasterJSON_Handler(srv interface{}, ctx context.Cont ext, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (inte rface{}, error) {
182 in := new(MasterRequest) 236 in := new(MasterRequest)
183 if err := dec(in); err != nil { 237 if err := dec(in); err != nil {
184 return nil, err 238 return nil, err
(...skipping 22 matching lines...) Expand all
207 info := &grpc.UnaryServerInfo{ 261 info := &grpc.UnaryServerInfo{
208 Server: srv, 262 Server: srv,
209 FullMethod: "/milo.Buildbot/GetBuildbotBuildJSON", 263 FullMethod: "/milo.Buildbot/GetBuildbotBuildJSON",
210 } 264 }
211 handler := func(ctx context.Context, req interface{}) (interface{}, erro r) { 265 handler := func(ctx context.Context, req interface{}) (interface{}, erro r) {
212 return srv.(BuildbotServer).GetBuildbotBuildJSON(ctx, req.(*Buil dbotBuildRequest)) 266 return srv.(BuildbotServer).GetBuildbotBuildJSON(ctx, req.(*Buil dbotBuildRequest))
213 } 267 }
214 return interceptor(ctx, in, info, handler) 268 return interceptor(ctx, in, info, handler)
215 } 269 }
216 270
271 func _Buildbot_GetBuildbotBuildsJSON_Handler(srv interface{}, ctx context.Contex t, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interf ace{}, error) {
272 in := new(BuildbotBuildsRequest)
273 if err := dec(in); err != nil {
274 return nil, err
275 }
276 if interceptor == nil {
277 return srv.(BuildbotServer).GetBuildbotBuildsJSON(ctx, in)
278 }
279 info := &grpc.UnaryServerInfo{
280 Server: srv,
281 FullMethod: "/milo.Buildbot/GetBuildbotBuildsJSON",
282 }
283 handler := func(ctx context.Context, req interface{}) (interface{}, erro r) {
284 return srv.(BuildbotServer).GetBuildbotBuildsJSON(ctx, req.(*Bui ldbotBuildsRequest))
285 }
286 return interceptor(ctx, in, info, handler)
287 }
288
217 var _Buildbot_serviceDesc = grpc.ServiceDesc{ 289 var _Buildbot_serviceDesc = grpc.ServiceDesc{
218 ServiceName: "milo.Buildbot", 290 ServiceName: "milo.Buildbot",
219 HandlerType: (*BuildbotServer)(nil), 291 HandlerType: (*BuildbotServer)(nil),
220 Methods: []grpc.MethodDesc{ 292 Methods: []grpc.MethodDesc{
221 { 293 {
222 MethodName: "GetCompressedMasterJSON", 294 MethodName: "GetCompressedMasterJSON",
223 Handler: _Buildbot_GetCompressedMasterJSON_Handler, 295 Handler: _Buildbot_GetCompressedMasterJSON_Handler,
224 }, 296 },
225 { 297 {
226 MethodName: "GetBuildbotBuildJSON", 298 MethodName: "GetBuildbotBuildJSON",
227 Handler: _Buildbot_GetBuildbotBuildJSON_Handler, 299 Handler: _Buildbot_GetBuildbotBuildJSON_Handler,
228 }, 300 },
301 {
302 MethodName: "GetBuildbotBuildsJSON",
303 Handler: _Buildbot_GetBuildbotBuildsJSON_Handler,
304 },
229 }, 305 },
230 Streams: []grpc.StreamDesc{}, 306 Streams: []grpc.StreamDesc{},
231 Metadata: fileDescriptor0, 307 Metadata: fileDescriptor0,
232 } 308 }
233 309
234 func init() { 310 func init() {
235 proto.RegisterFile("github.com/luci/luci-go/milo/api/proto/buildbot.prot o", fileDescriptor0) 311 proto.RegisterFile("github.com/luci/luci-go/milo/api/proto/buildbot.prot o", fileDescriptor0)
236 } 312 }
237 313
238 var fileDescriptor0 = []byte{ 314 var fileDescriptor0 = []byte{
239 » // 324 bytes of a gzipped FileDescriptorProto 315 » // 390 bytes of a gzipped FileDescriptorProto
240 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x6c, 0x51, 0xb1, 0x4e, 0xc3, 0x30, 316 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x9c, 0x92, 0xcf, 0x6f, 0x9b, 0x30,
241 » 0x10, 0x25, 0x6d, 0x55, 0xd2, 0x03, 0x06, 0x4c, 0x45, 0xa3, 0x30, 0x80, 0xc2, 0x00, 0x0b, 0x8e, 317 » 0x14, 0xc7, 0x47, 0x7e, 0x8d, 0xbc, 0x6d, 0x87, 0x79, 0x64, 0x41, 0xe4, 0xb0, 0x89, 0x1d, 0xb6,
242 » 0x54, 0x04, 0x1f, 0x00, 0x03, 0x12, 0xa2, 0x45, 0x0a, 0xec, 0xc8, 0x69, 0xdc, 0x60, 0x29, 0x8e, 318 » 0xcb, 0x40, 0xca, 0xb4, 0xfd, 0x01, 0x9b, 0xa6, 0x4a, 0x55, 0x93, 0x56, 0x6e, 0xef, 0x11, 0x04,
243 » 0x43, 0x63, 0xaf, 0xfc, 0x0e, 0xbf, 0x49, 0x72, 0x8e, 0x8b, 0x2a, 0xb2, 0x24, 0xf7, 0xfc, 0xde, 319 » 0x87, 0x5a, 0xc2, 0x98, 0x06, 0x73, 0xed, 0xff, 0xdd, 0x5b, 0x9d, 0x67, 0x1c, 0x95, 0x86, 0x5e,
244 » 0xf9, 0xde, 0x3d, 0xc3, 0x5d, 0x2e, 0xf4, 0xa7, 0x49, 0xe9, 0x4a, 0xc9, 0xb8, 0x30, 0x2b, 0x81, 320 » 0x7a, 0x01, 0x3f, 0xbf, 0xef, 0xfb, 0xbe, 0x8f, 0x9f, 0x0d, 0xbf, 0x73, 0xae, 0x6e, 0x9b, 0x34,
245 » 0x9f, 0x9b, 0x5c, 0xc5, 0x52, 0x14, 0x2a, 0x66, 0x95, 0x88, 0xab, 0x8d, 0xd2, 0x2a, 0x4e, 0x8d, 321 » 0xda, 0x4a, 0x11, 0x17, 0xcd, 0x96, 0xe3, 0xe7, 0x67, 0x2e, 0x63, 0xc1, 0x0b, 0x19, 0x27, 0x15,
246 » 0x28, 0xb2, 0x54, 0x69, 0x8a, 0x90, 0x8c, 0x5a, 0x3a, 0x3c, 0xcf, 0x95, 0xca, 0x0b, 0x6e, 0x25, 322 » 0x8f, 0xab, 0xbd, 0x54, 0x32, 0x4e, 0x1b, 0x5e, 0x64, 0xa9, 0x54, 0x11, 0x86, 0x64, 0x74, 0x48,
247 » 0xa9, 0x59, 0xc7, 0x5a, 0x48, 0x5e, 0x6b, 0x26, 0x2b, 0x2b, 0x8b, 0x2e, 0xe1, 0x68, 0xc1, 0x6a, 323 » 0x07, 0x5f, 0x72, 0x29, 0xf3, 0x82, 0x19, 0x49, 0xda, 0xec, 0x62, 0xc5, 0x05, 0xab, 0x55, 0x22,
248 » 0xcd, 0x37, 0x09, 0xff, 0x32, 0x0d, 0x43, 0x08, 0x8c, 0x4a, 0x26, 0x79, 0xe0, 0x5d, 0x78, 0xd7, 324 » 0x2a, 0x23, 0x0b, 0xbf, 0xc1, 0x87, 0x55, 0x52, 0x2b, 0xb6, 0xa7, 0xec, 0xae, 0xd1, 0x19, 0x42,
249 » 0x93, 0x04, 0xeb, 0xe8, 0x1b, 0xa6, 0x8f, 0x4a, 0x56, 0x1b, 0x5e, 0xd7, 0x3c, 0xb3, 0xf2, 0xe7, 325 » 0x60, 0x54, 0x26, 0x82, 0xf9, 0xce, 0x57, 0xe7, 0xc7, 0x94, 0xe2, 0x3a, 0xbc, 0x07, 0xef, 0x9f,
250 » 0xb7, 0xd7, 0x25, 0x09, 0xc1, 0x17, 0x65, 0x03, 0x4a, 0x56, 0xa0, 0xde, 0x4f, 0xb6, 0x98, 0xdc, 326 » 0x14, 0xd5, 0x9e, 0xd5, 0x35, 0xcb, 0x8c, 0xfc, 0xfc, 0xfa, 0x72, 0x4d, 0x02, 0x70, 0x79, 0xa9,
251 » 0x83, 0x2f, 0x55, 0x26, 0xd6, 0x82, 0x67, 0xc1, 0xa0, 0xe1, 0x0e, 0xe6, 0x21, 0xb5, 0x66, 0xa8, 327 » 0x83, 0x32, 0x29, 0x50, 0xef, 0xd2, 0x63, 0x4c, 0xfe, 0x80, 0x2b, 0x64, 0xc6, 0x77, 0x9c, 0x65,
252 » 0x33, 0x43, 0xdf, 0x9d, 0x99, 0x64, 0xab, 0x6d, 0xe7, 0x67, 0x4c, 0xb3, 0x60, 0xd8, 0xf4, 0x1c, 328 » 0xfe, 0x40, 0xe7, 0xde, 0x2d, 0x83, 0xc8, 0xc0, 0x44, 0x16, 0x26, 0xba, 0xb1, 0x30, 0xf4, 0xa8,
253 » 0x26, 0x58, 0x47, 0x1c, 0xa6, 0x0f, 0xdd, 0x76, 0xf8, 0x77, 0x5e, 0x4f, 0x61, 0x2c, 0xd1, 0x4d, 329 » 0x3d, 0xf4, 0xcf, 0x12, 0x95, 0xf8, 0x43, 0x5d, 0xf3, 0x9e, 0xe2, 0x3a, 0x64, 0xe0, 0xfd, 0x6d,
254 » 0xe7, 0xb6, 0x43, 0x24, 0x80, 0x7d, 0x4c, 0xa3, 0x21, 0x06, 0x48, 0x38, 0x48, 0xce, 0x60, 0x82, 330 » 0x4f, 0x87, 0x7f, 0xcb, 0xfa, 0x19, 0x26, 0x02, 0x69, 0x5a, 0xda, 0x36, 0x22, 0x3e, 0xbc, 0xc5,
255 » 0xe5, 0x47, 0x69, 0x24, 0x8e, 0x18, 0x26, 0x3e, 0x1e, 0x2c, 0x8d, 0x8c, 0xae, 0xe0, 0x78, 0x67, 331 » 0x69, 0xe8, 0xc4, 0x00, 0x13, 0x36, 0x24, 0x0b, 0x98, 0xe2, 0x72, 0x53, 0x36, 0x02, 0x5b, 0x0c,
256 » 0x0c, 0xee, 0xe8, 0xfc, 0x78, 0x7f, 0x7e, 0xe6, 0x3f, 0x1e, 0xf8, 0x4e, 0x49, 0x5e, 0x60, 0xf6, 332 » 0xa9, 0x8b, 0x1b, 0xeb, 0x46, 0x84, 0xdf, 0xe1, 0x63, 0xa7, 0x0d, 0x9e, 0xd1, 0xf2, 0x38, 0x4f,
257 » 0xc4, 0x75, 0x6f, 0x3e, 0x27, 0xb4, 0x7d, 0x04, 0xba, 0x13, 0x70, 0x18, 0xda, 0xc3, 0xbe, 0x86, 333 » 0x78, 0x36, 0x30, 0xeb, 0x08, 0xeb, 0xd7, 0x03, 0x79, 0x30, 0x2e, 0xb8, 0xe0, 0x0a, 0x61, 0xc6,
258 » 0x68, 0x8f, 0x2c, 0x60, 0xda, 0xdc, 0xf6, 0xdf, 0x46, 0xd7, 0xd5, 0x17, 0x43, 0x38, 0xeb, 0xe1, 334 » 0xd4, 0x04, 0xe1, 0x7f, 0x20, 0xdd, 0x06, 0x88, 0x12, 0xc3, 0x04, 0xcb, 0x6a, 0xed, 0x3e, 0xd4,
259 » 0xec, 0x75, 0xe9, 0x18, 0xb3, 0xbe, 0xfd, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x9f, 0x70, 0x41, 0x6c, 335 » 0x03, 0x9d, 0x47, 0x87, 0x3b, 0x8e, 0x4e, 0x98, 0x69, 0x2b, 0x5b, 0x3e, 0x38, 0xe0, 0xda, 0x2c,
260 » 0x45, 0x02, 0x00, 0x00, 336 » 0xb9, 0x80, 0xf9, 0x19, 0x53, 0xbd, 0xf7, 0xf8, 0xc9, 0x18, 0x75, 0x1e, 0x42, 0x10, 0x98, 0xcd,
337 » 0xbe, 0x82, 0xf0, 0x0d, 0x59, 0x81, 0xa7, 0xdd, 0x4e, 0xc7, 0x15, 0xf4, 0x30, 0x59, 0xc7, 0x97,
338 » 0x78, 0xb5, 0xdd, 0x15, 0xcc, 0x9e, 0xdb, 0x99, 0x33, 0x2f, 0x7a, 0x6a, 0xec, 0xb8, 0x03, 0xbf,
339 » 0x2f, 0x69, 0x1c, 0xd3, 0x09, 0xbe, 0xb2, 0x5f, 0x8f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xef, 0x43,
340 » 0xaa, 0xec, 0x3f, 0x03, 0x00, 0x00,
261 } 341 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698