forked from tw-bc-group/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cluster.pb.go
594 lines (524 loc) · 19.6 KB
/
cluster.pb.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: orderer/cluster.proto
package orderer // import "github.com/hyperledger/fabric/protos/orderer"
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import common "github.com/hyperledger/fabric/protos/common"
import (
context "golang.org/x/net/context"
grpc "google.golang.org/grpc"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
// StepRequest wraps a message that is sent to a cluster member.
type StepRequest struct {
// Types that are valid to be assigned to Payload:
// *StepRequest_ConsensusRequest
// *StepRequest_SubmitRequest
Payload isStepRequest_Payload `protobuf_oneof:"payload"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StepRequest) Reset() { *m = StepRequest{} }
func (m *StepRequest) String() string { return proto.CompactTextString(m) }
func (*StepRequest) ProtoMessage() {}
func (*StepRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_cluster_d9833ceca5c79414, []int{0}
}
func (m *StepRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StepRequest.Unmarshal(m, b)
}
func (m *StepRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StepRequest.Marshal(b, m, deterministic)
}
func (dst *StepRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_StepRequest.Merge(dst, src)
}
func (m *StepRequest) XXX_Size() int {
return xxx_messageInfo_StepRequest.Size(m)
}
func (m *StepRequest) XXX_DiscardUnknown() {
xxx_messageInfo_StepRequest.DiscardUnknown(m)
}
var xxx_messageInfo_StepRequest proto.InternalMessageInfo
type isStepRequest_Payload interface {
isStepRequest_Payload()
}
type StepRequest_ConsensusRequest struct {
ConsensusRequest *ConsensusRequest `protobuf:"bytes,1,opt,name=consensus_request,json=consensusRequest,proto3,oneof"`
}
type StepRequest_SubmitRequest struct {
SubmitRequest *SubmitRequest `protobuf:"bytes,2,opt,name=submit_request,json=submitRequest,proto3,oneof"`
}
func (*StepRequest_ConsensusRequest) isStepRequest_Payload() {}
func (*StepRequest_SubmitRequest) isStepRequest_Payload() {}
func (m *StepRequest) GetPayload() isStepRequest_Payload {
if m != nil {
return m.Payload
}
return nil
}
func (m *StepRequest) GetConsensusRequest() *ConsensusRequest {
if x, ok := m.GetPayload().(*StepRequest_ConsensusRequest); ok {
return x.ConsensusRequest
}
return nil
}
func (m *StepRequest) GetSubmitRequest() *SubmitRequest {
if x, ok := m.GetPayload().(*StepRequest_SubmitRequest); ok {
return x.SubmitRequest
}
return nil
}
// XXX_OneofFuncs is for the internal use of the proto package.
func (*StepRequest) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
return _StepRequest_OneofMarshaler, _StepRequest_OneofUnmarshaler, _StepRequest_OneofSizer, []interface{}{
(*StepRequest_ConsensusRequest)(nil),
(*StepRequest_SubmitRequest)(nil),
}
}
func _StepRequest_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
m := msg.(*StepRequest)
// payload
switch x := m.Payload.(type) {
case *StepRequest_ConsensusRequest:
b.EncodeVarint(1<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.ConsensusRequest); err != nil {
return err
}
case *StepRequest_SubmitRequest:
b.EncodeVarint(2<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.SubmitRequest); err != nil {
return err
}
case nil:
default:
return fmt.Errorf("StepRequest.Payload has unexpected type %T", x)
}
return nil
}
func _StepRequest_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
m := msg.(*StepRequest)
switch tag {
case 1: // payload.consensus_request
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(ConsensusRequest)
err := b.DecodeMessage(msg)
m.Payload = &StepRequest_ConsensusRequest{msg}
return true, err
case 2: // payload.submit_request
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(SubmitRequest)
err := b.DecodeMessage(msg)
m.Payload = &StepRequest_SubmitRequest{msg}
return true, err
default:
return false, nil
}
}
func _StepRequest_OneofSizer(msg proto.Message) (n int) {
m := msg.(*StepRequest)
// payload
switch x := m.Payload.(type) {
case *StepRequest_ConsensusRequest:
s := proto.Size(x.ConsensusRequest)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case *StepRequest_SubmitRequest:
s := proto.Size(x.SubmitRequest)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case nil:
default:
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
}
return n
}
// StepResponse is a message received from a cluster member.
type StepResponse struct {
// Types that are valid to be assigned to Payload:
// *StepResponse_SubmitRes
Payload isStepResponse_Payload `protobuf_oneof:"payload"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StepResponse) Reset() { *m = StepResponse{} }
func (m *StepResponse) String() string { return proto.CompactTextString(m) }
func (*StepResponse) ProtoMessage() {}
func (*StepResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_cluster_d9833ceca5c79414, []int{1}
}
func (m *StepResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StepResponse.Unmarshal(m, b)
}
func (m *StepResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StepResponse.Marshal(b, m, deterministic)
}
func (dst *StepResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_StepResponse.Merge(dst, src)
}
func (m *StepResponse) XXX_Size() int {
return xxx_messageInfo_StepResponse.Size(m)
}
func (m *StepResponse) XXX_DiscardUnknown() {
xxx_messageInfo_StepResponse.DiscardUnknown(m)
}
var xxx_messageInfo_StepResponse proto.InternalMessageInfo
type isStepResponse_Payload interface {
isStepResponse_Payload()
}
type StepResponse_SubmitRes struct {
SubmitRes *SubmitResponse `protobuf:"bytes,1,opt,name=submit_res,json=submitRes,proto3,oneof"`
}
func (*StepResponse_SubmitRes) isStepResponse_Payload() {}
func (m *StepResponse) GetPayload() isStepResponse_Payload {
if m != nil {
return m.Payload
}
return nil
}
func (m *StepResponse) GetSubmitRes() *SubmitResponse {
if x, ok := m.GetPayload().(*StepResponse_SubmitRes); ok {
return x.SubmitRes
}
return nil
}
// XXX_OneofFuncs is for the internal use of the proto package.
func (*StepResponse) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
return _StepResponse_OneofMarshaler, _StepResponse_OneofUnmarshaler, _StepResponse_OneofSizer, []interface{}{
(*StepResponse_SubmitRes)(nil),
}
}
func _StepResponse_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
m := msg.(*StepResponse)
// payload
switch x := m.Payload.(type) {
case *StepResponse_SubmitRes:
b.EncodeVarint(1<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.SubmitRes); err != nil {
return err
}
case nil:
default:
return fmt.Errorf("StepResponse.Payload has unexpected type %T", x)
}
return nil
}
func _StepResponse_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
m := msg.(*StepResponse)
switch tag {
case 1: // payload.submit_res
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(SubmitResponse)
err := b.DecodeMessage(msg)
m.Payload = &StepResponse_SubmitRes{msg}
return true, err
default:
return false, nil
}
}
func _StepResponse_OneofSizer(msg proto.Message) (n int) {
m := msg.(*StepResponse)
// payload
switch x := m.Payload.(type) {
case *StepResponse_SubmitRes:
s := proto.Size(x.SubmitRes)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case nil:
default:
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
}
return n
}
// ConsensusRequest is a consensus specific message sent to a cluster member.
type ConsensusRequest struct {
Channel string `protobuf:"bytes,1,opt,name=channel,proto3" json:"channel,omitempty"`
Payload []byte `protobuf:"bytes,2,opt,name=payload,proto3" json:"payload,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ConsensusRequest) Reset() { *m = ConsensusRequest{} }
func (m *ConsensusRequest) String() string { return proto.CompactTextString(m) }
func (*ConsensusRequest) ProtoMessage() {}
func (*ConsensusRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_cluster_d9833ceca5c79414, []int{2}
}
func (m *ConsensusRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ConsensusRequest.Unmarshal(m, b)
}
func (m *ConsensusRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ConsensusRequest.Marshal(b, m, deterministic)
}
func (dst *ConsensusRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ConsensusRequest.Merge(dst, src)
}
func (m *ConsensusRequest) XXX_Size() int {
return xxx_messageInfo_ConsensusRequest.Size(m)
}
func (m *ConsensusRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ConsensusRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ConsensusRequest proto.InternalMessageInfo
func (m *ConsensusRequest) GetChannel() string {
if m != nil {
return m.Channel
}
return ""
}
func (m *ConsensusRequest) GetPayload() []byte {
if m != nil {
return m.Payload
}
return nil
}
// SubmitRequest wraps a transaction to be sent for ordering.
type SubmitRequest struct {
Channel string `protobuf:"bytes,1,opt,name=channel,proto3" json:"channel,omitempty"`
// last_validation_seq denotes the last
// configuration sequence at which the
// sender validated this message.
LastValidationSeq uint64 `protobuf:"varint,2,opt,name=last_validation_seq,json=lastValidationSeq,proto3" json:"last_validation_seq,omitempty"`
// content is the fabric transaction
// that is forwarded to the cluster member.
Payload *common.Envelope `protobuf:"bytes,3,opt,name=payload,proto3" json:"payload,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SubmitRequest) Reset() { *m = SubmitRequest{} }
func (m *SubmitRequest) String() string { return proto.CompactTextString(m) }
func (*SubmitRequest) ProtoMessage() {}
func (*SubmitRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_cluster_d9833ceca5c79414, []int{3}
}
func (m *SubmitRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SubmitRequest.Unmarshal(m, b)
}
func (m *SubmitRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SubmitRequest.Marshal(b, m, deterministic)
}
func (dst *SubmitRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SubmitRequest.Merge(dst, src)
}
func (m *SubmitRequest) XXX_Size() int {
return xxx_messageInfo_SubmitRequest.Size(m)
}
func (m *SubmitRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SubmitRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SubmitRequest proto.InternalMessageInfo
func (m *SubmitRequest) GetChannel() string {
if m != nil {
return m.Channel
}
return ""
}
func (m *SubmitRequest) GetLastValidationSeq() uint64 {
if m != nil {
return m.LastValidationSeq
}
return 0
}
func (m *SubmitRequest) GetPayload() *common.Envelope {
if m != nil {
return m.Payload
}
return nil
}
// SubmitResponse returns a success
// or failure status to the sender.
type SubmitResponse struct {
Channel string `protobuf:"bytes,1,opt,name=channel,proto3" json:"channel,omitempty"`
// Status code, which may be used to programatically respond to success/failure.
Status common.Status `protobuf:"varint,2,opt,name=status,proto3,enum=common.Status" json:"status,omitempty"`
// Info string which may contain additional information about the returned status.
Info string `protobuf:"bytes,3,opt,name=info,proto3" json:"info,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SubmitResponse) Reset() { *m = SubmitResponse{} }
func (m *SubmitResponse) String() string { return proto.CompactTextString(m) }
func (*SubmitResponse) ProtoMessage() {}
func (*SubmitResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_cluster_d9833ceca5c79414, []int{4}
}
func (m *SubmitResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SubmitResponse.Unmarshal(m, b)
}
func (m *SubmitResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SubmitResponse.Marshal(b, m, deterministic)
}
func (dst *SubmitResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SubmitResponse.Merge(dst, src)
}
func (m *SubmitResponse) XXX_Size() int {
return xxx_messageInfo_SubmitResponse.Size(m)
}
func (m *SubmitResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SubmitResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SubmitResponse proto.InternalMessageInfo
func (m *SubmitResponse) GetChannel() string {
if m != nil {
return m.Channel
}
return ""
}
func (m *SubmitResponse) GetStatus() common.Status {
if m != nil {
return m.Status
}
return common.Status_UNKNOWN
}
func (m *SubmitResponse) GetInfo() string {
if m != nil {
return m.Info
}
return ""
}
func init() {
proto.RegisterType((*StepRequest)(nil), "orderer.StepRequest")
proto.RegisterType((*StepResponse)(nil), "orderer.StepResponse")
proto.RegisterType((*ConsensusRequest)(nil), "orderer.ConsensusRequest")
proto.RegisterType((*SubmitRequest)(nil), "orderer.SubmitRequest")
proto.RegisterType((*SubmitResponse)(nil), "orderer.SubmitResponse")
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConn
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion4
// ClusterClient is the client API for Cluster service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type ClusterClient interface {
// Step passes an implementation-specific message to another cluster member.
Step(ctx context.Context, opts ...grpc.CallOption) (Cluster_StepClient, error)
}
type clusterClient struct {
cc *grpc.ClientConn
}
func NewClusterClient(cc *grpc.ClientConn) ClusterClient {
return &clusterClient{cc}
}
func (c *clusterClient) Step(ctx context.Context, opts ...grpc.CallOption) (Cluster_StepClient, error) {
stream, err := c.cc.NewStream(ctx, &_Cluster_serviceDesc.Streams[0], "/orderer.Cluster/Step", opts...)
if err != nil {
return nil, err
}
x := &clusterStepClient{stream}
return x, nil
}
type Cluster_StepClient interface {
Send(*StepRequest) error
Recv() (*StepResponse, error)
grpc.ClientStream
}
type clusterStepClient struct {
grpc.ClientStream
}
func (x *clusterStepClient) Send(m *StepRequest) error {
return x.ClientStream.SendMsg(m)
}
func (x *clusterStepClient) Recv() (*StepResponse, error) {
m := new(StepResponse)
if err := x.ClientStream.RecvMsg(m); err != nil {
return nil, err
}
return m, nil
}
// ClusterServer is the server API for Cluster service.
type ClusterServer interface {
// Step passes an implementation-specific message to another cluster member.
Step(Cluster_StepServer) error
}
func RegisterClusterServer(s *grpc.Server, srv ClusterServer) {
s.RegisterService(&_Cluster_serviceDesc, srv)
}
func _Cluster_Step_Handler(srv interface{}, stream grpc.ServerStream) error {
return srv.(ClusterServer).Step(&clusterStepServer{stream})
}
type Cluster_StepServer interface {
Send(*StepResponse) error
Recv() (*StepRequest, error)
grpc.ServerStream
}
type clusterStepServer struct {
grpc.ServerStream
}
func (x *clusterStepServer) Send(m *StepResponse) error {
return x.ServerStream.SendMsg(m)
}
func (x *clusterStepServer) Recv() (*StepRequest, error) {
m := new(StepRequest)
if err := x.ServerStream.RecvMsg(m); err != nil {
return nil, err
}
return m, nil
}
var _Cluster_serviceDesc = grpc.ServiceDesc{
ServiceName: "orderer.Cluster",
HandlerType: (*ClusterServer)(nil),
Methods: []grpc.MethodDesc{},
Streams: []grpc.StreamDesc{
{
StreamName: "Step",
Handler: _Cluster_Step_Handler,
ServerStreams: true,
ClientStreams: true,
},
},
Metadata: "orderer/cluster.proto",
}
func init() { proto.RegisterFile("orderer/cluster.proto", fileDescriptor_cluster_d9833ceca5c79414) }
var fileDescriptor_cluster_d9833ceca5c79414 = []byte{
// 399 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0xd1, 0xee, 0xd2, 0x30,
0x14, 0xc6, 0xff, 0x53, 0xc2, 0xb2, 0x03, 0x2c, 0x50, 0x44, 0x91, 0x2b, 0x43, 0xa2, 0x21, 0xc6,
0x6c, 0x06, 0x2f, 0xf4, 0xce, 0x04, 0xa2, 0xe1, 0xba, 0x8b, 0x5e, 0x78, 0x43, 0xba, 0xad, 0xc0,
0x92, 0xd1, 0x8e, 0xb6, 0x23, 0xe1, 0x01, 0x7c, 0x12, 0x5f, 0xd4, 0xac, 0xed, 0x36, 0xe0, 0x9f,
0x70, 0x05, 0x3d, 0xdf, 0xd7, 0xdf, 0xf9, 0xce, 0x7a, 0x60, 0xc2, 0x45, 0x4a, 0x05, 0x15, 0x61,
0x92, 0x97, 0x52, 0x51, 0x11, 0x14, 0x82, 0x2b, 0x8e, 0x5c, 0x5b, 0x9e, 0x8d, 0x13, 0x7e, 0x3c,
0x72, 0x16, 0x9a, 0x1f, 0xa3, 0xce, 0xff, 0x39, 0xd0, 0x8b, 0x14, 0x2d, 0x30, 0x3d, 0x95, 0x54,
0x2a, 0xb4, 0x81, 0x51, 0xc2, 0x99, 0xa4, 0x4c, 0x96, 0x72, 0x2b, 0x4c, 0x71, 0xea, 0xbc, 0x73,
0x16, 0xbd, 0xe5, 0xdb, 0xc0, 0x92, 0x82, 0x75, 0xed, 0xb0, 0xb7, 0x36, 0x4f, 0x78, 0x98, 0xdc,
0xd5, 0xd0, 0x77, 0xf0, 0x65, 0x19, 0x1f, 0x33, 0xd5, 0x60, 0x5e, 0x68, 0xcc, 0xeb, 0x06, 0x13,
0x69, 0xb9, 0x65, 0x0c, 0xe4, 0x75, 0x61, 0xe5, 0x81, 0x5b, 0x90, 0x4b, 0xce, 0x49, 0x3a, 0x8f,
0xa0, 0x6f, 0x42, 0xca, 0xa2, 0x6a, 0x83, 0xbe, 0x01, 0x34, 0x6c, 0x69, 0xe3, 0xbd, 0x79, 0xc6,
0x35, 0xe6, 0xcd, 0x13, 0xf6, 0x6a, 0xb0, 0xbc, 0x86, 0xfe, 0x84, 0xe1, 0xfd, 0x20, 0x68, 0x0a,
0x6e, 0x72, 0x20, 0x8c, 0xd1, 0x5c, 0x53, 0x3d, 0x5c, 0x1f, 0x2b, 0xc5, 0x5e, 0xd4, 0x73, 0xf4,
0x71, 0xc3, 0xf9, 0xeb, 0xc0, 0xe0, 0x66, 0x94, 0x07, 0x94, 0x00, 0xc6, 0x39, 0x91, 0x6a, 0x7b,
0x26, 0x79, 0x96, 0x12, 0x95, 0x71, 0xb6, 0x95, 0xf4, 0xa4, 0x89, 0x1d, 0x3c, 0xaa, 0xa4, 0xdf,
0x8d, 0x12, 0xd1, 0x13, 0xfa, 0xd8, 0x76, 0x7d, 0xa9, 0xa7, 0x1c, 0x06, 0xf6, 0xf9, 0x7e, 0xb0,
0x33, 0xcd, 0x79, 0x41, 0xdb, 0x1c, 0x3b, 0xf0, 0x6f, 0x27, 0x7f, 0x90, 0xe3, 0x03, 0x74, 0xa5,
0x22, 0xaa, 0x94, 0xba, 0xb5, 0xbf, 0xf4, 0x6b, 0x6c, 0xa4, 0xab, 0xd8, 0xaa, 0x08, 0x41, 0x27,
0x63, 0x3b, 0xae, 0x9b, 0x7b, 0x58, 0xff, 0x5f, 0xae, 0xc0, 0x5d, 0x9b, 0x0d, 0x43, 0x5f, 0xa1,
0x53, 0xbd, 0x0b, 0x7a, 0xd5, 0x7e, 0xfb, 0x76, 0x97, 0x66, 0x93, 0xbb, 0xaa, 0x49, 0xb5, 0x70,
0x3e, 0x3b, 0xab, 0x5f, 0xf0, 0x9e, 0x8b, 0x7d, 0x70, 0xb8, 0x14, 0x54, 0xe4, 0x34, 0xdd, 0x53,
0x11, 0xec, 0x48, 0x2c, 0xb2, 0xc4, 0xac, 0xa5, 0xac, 0x6f, 0xfe, 0xf9, 0xb4, 0xcf, 0xd4, 0xa1,
0x8c, 0xab, 0x78, 0xe1, 0x95, 0x3b, 0x34, 0xee, 0xd0, 0xb8, 0x43, 0xeb, 0x8e, 0xbb, 0xfa, 0xfc,
0xe5, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xcc, 0xe7, 0xa4, 0xe2, 0x0b, 0x03, 0x00, 0x00,
}