This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bc.pb.go
472 lines (418 loc) · 16.8 KB
/
bc.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
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: bc.proto
package bcgo
import (
cryptogo "aletheiaware.com/cryptogo"
fmt "fmt"
proto "github.com/golang/protobuf/proto"
math "math"
)
// 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.ProtoPackageIsVersion3 // please upgrade the proto package
type Block struct {
// Timestamp (nanoseconds) when the block was created.
Timestamp uint64 `protobuf:"fixed64,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
// Name of the channel.
ChannelName string `protobuf:"bytes,2,opt,name=channel_name,json=channelName,proto3" json:"channel_name,omitempty"`
// Length of chain in blocks (inclusive).
Length uint64 `protobuf:"fixed64,3,opt,name=length,proto3" json:"length,omitempty"`
// Hash of the previous block in the chain.
Previous []byte `protobuf:"bytes,4,opt,name=previous,proto3" json:"previous,omitempty"`
// Alias of the block miner's public key.
Miner string `protobuf:"bytes,5,opt,name=miner,proto3" json:"miner,omitempty"`
// The nonce mined to reach threshold.
Nonce uint64 `protobuf:"fixed64,6,opt,name=nonce,proto3" json:"nonce,omitempty"`
// The block's entries (list of hash/record pairs).
Entry []*BlockEntry `protobuf:"bytes,7,rep,name=entry,proto3" json:"entry,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Block) Reset() { *m = Block{} }
func (m *Block) String() string { return proto.CompactTextString(m) }
func (*Block) ProtoMessage() {}
func (*Block) Descriptor() ([]byte, []int) {
return fileDescriptor_99e2a20f8b284799, []int{0}
}
func (m *Block) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Block.Unmarshal(m, b)
}
func (m *Block) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Block.Marshal(b, m, deterministic)
}
func (m *Block) XXX_Merge(src proto.Message) {
xxx_messageInfo_Block.Merge(m, src)
}
func (m *Block) XXX_Size() int {
return xxx_messageInfo_Block.Size(m)
}
func (m *Block) XXX_DiscardUnknown() {
xxx_messageInfo_Block.DiscardUnknown(m)
}
var xxx_messageInfo_Block proto.InternalMessageInfo
func (m *Block) GetTimestamp() uint64 {
if m != nil {
return m.Timestamp
}
return 0
}
func (m *Block) GetChannelName() string {
if m != nil {
return m.ChannelName
}
return ""
}
func (m *Block) GetLength() uint64 {
if m != nil {
return m.Length
}
return 0
}
func (m *Block) GetPrevious() []byte {
if m != nil {
return m.Previous
}
return nil
}
func (m *Block) GetMiner() string {
if m != nil {
return m.Miner
}
return ""
}
func (m *Block) GetNonce() uint64 {
if m != nil {
return m.Nonce
}
return 0
}
func (m *Block) GetEntry() []*BlockEntry {
if m != nil {
return m.Entry
}
return nil
}
type BlockEntry struct {
// Hash of the record.
RecordHash []byte `protobuf:"bytes,1,opt,name=record_hash,json=recordHash,proto3" json:"record_hash,omitempty"`
Record *Record `protobuf:"bytes,2,opt,name=record,proto3" json:"record,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BlockEntry) Reset() { *m = BlockEntry{} }
func (m *BlockEntry) String() string { return proto.CompactTextString(m) }
func (*BlockEntry) ProtoMessage() {}
func (*BlockEntry) Descriptor() ([]byte, []int) {
return fileDescriptor_99e2a20f8b284799, []int{1}
}
func (m *BlockEntry) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BlockEntry.Unmarshal(m, b)
}
func (m *BlockEntry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BlockEntry.Marshal(b, m, deterministic)
}
func (m *BlockEntry) XXX_Merge(src proto.Message) {
xxx_messageInfo_BlockEntry.Merge(m, src)
}
func (m *BlockEntry) XXX_Size() int {
return xxx_messageInfo_BlockEntry.Size(m)
}
func (m *BlockEntry) XXX_DiscardUnknown() {
xxx_messageInfo_BlockEntry.DiscardUnknown(m)
}
var xxx_messageInfo_BlockEntry proto.InternalMessageInfo
func (m *BlockEntry) GetRecordHash() []byte {
if m != nil {
return m.RecordHash
}
return nil
}
func (m *BlockEntry) GetRecord() *Record {
if m != nil {
return m.Record
}
return nil
}
type Record struct {
// Timestamp (nanoseconds) when the record was created.
Timestamp uint64 `protobuf:"fixed64,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
// Alias of the record creator's public key.
Creator string `protobuf:"bytes,2,opt,name=creator,proto3" json:"creator,omitempty"`
// The list of accesses granted.
Access []*Record_Access `protobuf:"bytes,3,rep,name=access,proto3" json:"access,omitempty"`
// Holds record content, optionally encrypted with a secret key.
Payload []byte `protobuf:"bytes,4,opt,name=payload,proto3" json:"payload,omitempty"`
// The algorithm used to compress the payload.
CompressionAlgorithm cryptogo.CompressionAlgorithm `protobuf:"varint,5,opt,name=compression_algorithm,json=compressionAlgorithm,proto3,enum=crypto.CompressionAlgorithm" json:"compression_algorithm,omitempty"`
// The algorithm used to encrypt the payload.
EncryptionAlgorithm cryptogo.EncryptionAlgorithm `protobuf:"varint,6,opt,name=encryption_algorithm,json=encryptionAlgorithm,proto3,enum=crypto.EncryptionAlgorithm" json:"encryption_algorithm,omitempty"`
// Signature of payload (signed by the record creator's private key).
Signature []byte `protobuf:"bytes,7,opt,name=signature,proto3" json:"signature,omitempty"`
// The algorithm used to sign the payload.
SignatureAlgorithm cryptogo.SignatureAlgorithm `protobuf:"varint,8,opt,name=signature_algorithm,json=signatureAlgorithm,proto3,enum=crypto.SignatureAlgorithm" json:"signature_algorithm,omitempty"`
// References to previous records.
Reference []*Reference `protobuf:"bytes,9,rep,name=reference,proto3" json:"reference,omitempty"`
// Holds payload meta data.
Meta map[string]string `protobuf:"bytes,10,rep,name=meta,proto3" json:"meta,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Record) Reset() { *m = Record{} }
func (m *Record) String() string { return proto.CompactTextString(m) }
func (*Record) ProtoMessage() {}
func (*Record) Descriptor() ([]byte, []int) {
return fileDescriptor_99e2a20f8b284799, []int{2}
}
func (m *Record) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Record.Unmarshal(m, b)
}
func (m *Record) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Record.Marshal(b, m, deterministic)
}
func (m *Record) XXX_Merge(src proto.Message) {
xxx_messageInfo_Record.Merge(m, src)
}
func (m *Record) XXX_Size() int {
return xxx_messageInfo_Record.Size(m)
}
func (m *Record) XXX_DiscardUnknown() {
xxx_messageInfo_Record.DiscardUnknown(m)
}
var xxx_messageInfo_Record proto.InternalMessageInfo
func (m *Record) GetTimestamp() uint64 {
if m != nil {
return m.Timestamp
}
return 0
}
func (m *Record) GetCreator() string {
if m != nil {
return m.Creator
}
return ""
}
func (m *Record) GetAccess() []*Record_Access {
if m != nil {
return m.Access
}
return nil
}
func (m *Record) GetPayload() []byte {
if m != nil {
return m.Payload
}
return nil
}
func (m *Record) GetCompressionAlgorithm() cryptogo.CompressionAlgorithm {
if m != nil {
return m.CompressionAlgorithm
}
return cryptogo.CompressionAlgorithm_UNKNOWN_COMPRESSION
}
func (m *Record) GetEncryptionAlgorithm() cryptogo.EncryptionAlgorithm {
if m != nil {
return m.EncryptionAlgorithm
}
return cryptogo.EncryptionAlgorithm_UNKNOWN_ENCRYPTION
}
func (m *Record) GetSignature() []byte {
if m != nil {
return m.Signature
}
return nil
}
func (m *Record) GetSignatureAlgorithm() cryptogo.SignatureAlgorithm {
if m != nil {
return m.SignatureAlgorithm
}
return cryptogo.SignatureAlgorithm_UNKNOWN_SIGNATURE
}
func (m *Record) GetReference() []*Reference {
if m != nil {
return m.Reference
}
return nil
}
func (m *Record) GetMeta() map[string]string {
if m != nil {
return m.Meta
}
return nil
}
type Record_Access struct {
// Alias of the public key granted access, empty if public.
Alias string `protobuf:"bytes,1,opt,name=alias,proto3" json:"alias,omitempty"`
// The secret access key used to encrypt the payload.
SecretKey []byte `protobuf:"bytes,2,opt,name=secret_key,json=secretKey,proto3" json:"secret_key,omitempty"`
// If the alias is set, the secret key will be encrypted by the alias' public key.
// The algorithm used to encrypt the secret key.
EncryptionAlgorithm cryptogo.EncryptionAlgorithm `protobuf:"varint,3,opt,name=encryption_algorithm,json=encryptionAlgorithm,proto3,enum=crypto.EncryptionAlgorithm" json:"encryption_algorithm,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Record_Access) Reset() { *m = Record_Access{} }
func (m *Record_Access) String() string { return proto.CompactTextString(m) }
func (*Record_Access) ProtoMessage() {}
func (*Record_Access) Descriptor() ([]byte, []int) {
return fileDescriptor_99e2a20f8b284799, []int{2, 0}
}
func (m *Record_Access) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Record_Access.Unmarshal(m, b)
}
func (m *Record_Access) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Record_Access.Marshal(b, m, deterministic)
}
func (m *Record_Access) XXX_Merge(src proto.Message) {
xxx_messageInfo_Record_Access.Merge(m, src)
}
func (m *Record_Access) XXX_Size() int {
return xxx_messageInfo_Record_Access.Size(m)
}
func (m *Record_Access) XXX_DiscardUnknown() {
xxx_messageInfo_Record_Access.DiscardUnknown(m)
}
var xxx_messageInfo_Record_Access proto.InternalMessageInfo
func (m *Record_Access) GetAlias() string {
if m != nil {
return m.Alias
}
return ""
}
func (m *Record_Access) GetSecretKey() []byte {
if m != nil {
return m.SecretKey
}
return nil
}
func (m *Record_Access) GetEncryptionAlgorithm() cryptogo.EncryptionAlgorithm {
if m != nil {
return m.EncryptionAlgorithm
}
return cryptogo.EncryptionAlgorithm_UNKNOWN_ENCRYPTION
}
type Reference struct {
// Timestamp (nanoseconds) when the referenced item was created.
Timestamp uint64 `protobuf:"fixed64,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
// Name of the channel holding the referenced item.
ChannelName string `protobuf:"bytes,2,opt,name=channel_name,json=channelName,proto3" json:"channel_name,omitempty"`
// Hash of the block holding the referenced item.
BlockHash []byte `protobuf:"bytes,3,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
// Hash of the record holding the referenced item.
RecordHash []byte `protobuf:"bytes,4,opt,name=record_hash,json=recordHash,proto3" json:"record_hash,omitempty"`
// Index of block in chain holding the referenced item.
Index uint64 `protobuf:"fixed64,5,opt,name=index,proto3" json:"index,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Reference) Reset() { *m = Reference{} }
func (m *Reference) String() string { return proto.CompactTextString(m) }
func (*Reference) ProtoMessage() {}
func (*Reference) Descriptor() ([]byte, []int) {
return fileDescriptor_99e2a20f8b284799, []int{3}
}
func (m *Reference) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Reference.Unmarshal(m, b)
}
func (m *Reference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Reference.Marshal(b, m, deterministic)
}
func (m *Reference) XXX_Merge(src proto.Message) {
xxx_messageInfo_Reference.Merge(m, src)
}
func (m *Reference) XXX_Size() int {
return xxx_messageInfo_Reference.Size(m)
}
func (m *Reference) XXX_DiscardUnknown() {
xxx_messageInfo_Reference.DiscardUnknown(m)
}
var xxx_messageInfo_Reference proto.InternalMessageInfo
func (m *Reference) GetTimestamp() uint64 {
if m != nil {
return m.Timestamp
}
return 0
}
func (m *Reference) GetChannelName() string {
if m != nil {
return m.ChannelName
}
return ""
}
func (m *Reference) GetBlockHash() []byte {
if m != nil {
return m.BlockHash
}
return nil
}
func (m *Reference) GetRecordHash() []byte {
if m != nil {
return m.RecordHash
}
return nil
}
func (m *Reference) GetIndex() uint64 {
if m != nil {
return m.Index
}
return 0
}
func init() {
proto.RegisterType((*Block)(nil), "bc.Block")
proto.RegisterType((*BlockEntry)(nil), "bc.BlockEntry")
proto.RegisterType((*Record)(nil), "bc.Record")
proto.RegisterMapType((map[string]string)(nil), "bc.Record.MetaEntry")
proto.RegisterType((*Record_Access)(nil), "bc.Record.Access")
proto.RegisterType((*Reference)(nil), "bc.Reference")
}
func init() { proto.RegisterFile("bc.proto", fileDescriptor_99e2a20f8b284799) }
var fileDescriptor_99e2a20f8b284799 = []byte{
// 586 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0xd1, 0x6e, 0xd3, 0x4a,
0x10, 0x95, 0x9b, 0xc6, 0xa9, 0x27, 0xb9, 0xd5, 0x65, 0x9b, 0x22, 0x2b, 0xb4, 0x22, 0x44, 0x3c,
0x04, 0x21, 0x19, 0xa9, 0x08, 0x81, 0x78, 0x6b, 0xaa, 0x4a, 0x48, 0x15, 0x15, 0x35, 0x6f, 0xbc,
0x44, 0xeb, 0xed, 0x10, 0x5b, 0xb5, 0x77, 0xa3, 0xdd, 0x6d, 0x21, 0x1f, 0xc1, 0x4f, 0xf0, 0x0b,
0xfc, 0x07, 0xdf, 0x84, 0x76, 0xd6, 0x8e, 0x5b, 0x02, 0x42, 0x82, 0x37, 0x9f, 0x33, 0xe3, 0x33,
0xb3, 0x67, 0x67, 0x16, 0x76, 0x32, 0x91, 0x2c, 0xb5, 0xb2, 0x8a, 0x6d, 0x65, 0x62, 0x34, 0x10,
0x7a, 0xb5, 0xb4, 0xca, 0x33, 0x93, 0xef, 0x01, 0x74, 0x67, 0xa5, 0x12, 0x57, 0xec, 0x00, 0x22,
0x5b, 0x54, 0x68, 0x2c, 0xaf, 0x96, 0x71, 0x30, 0x0e, 0xa6, 0x61, 0xda, 0x12, 0xec, 0x11, 0x0c,
0x44, 0xce, 0xa5, 0xc4, 0x72, 0x2e, 0x79, 0x85, 0xf1, 0xd6, 0x38, 0x98, 0x46, 0x69, 0xbf, 0xe6,
0xce, 0x79, 0x85, 0xec, 0x3e, 0x84, 0x25, 0xca, 0x85, 0xcd, 0xe3, 0x0e, 0xfd, 0x5d, 0x23, 0x36,
0x82, 0x9d, 0xa5, 0xc6, 0x9b, 0x42, 0x5d, 0x9b, 0x78, 0x7b, 0x1c, 0x4c, 0x07, 0xe9, 0x1a, 0xb3,
0x21, 0x74, 0xab, 0x42, 0xa2, 0x8e, 0xbb, 0xa4, 0xe7, 0x81, 0x63, 0xa5, 0x92, 0x02, 0xe3, 0x90,
0x84, 0x3c, 0x60, 0x8f, 0xa1, 0x8b, 0xd2, 0xea, 0x55, 0xdc, 0x1b, 0x77, 0xa6, 0xfd, 0xa3, 0xdd,
0x24, 0x13, 0x09, 0xb5, 0x7e, 0xea, 0xd8, 0xd4, 0x07, 0x27, 0x17, 0x00, 0x2d, 0xc9, 0x1e, 0x42,
0x5f, 0xa3, 0x50, 0xfa, 0x72, 0x9e, 0x73, 0x93, 0xd3, 0xb1, 0x06, 0x29, 0x78, 0xea, 0x0d, 0x37,
0x39, 0x9b, 0x40, 0xe8, 0x11, 0x9d, 0xa8, 0x7f, 0x04, 0x4e, 0x35, 0x25, 0x26, 0xad, 0x23, 0x93,
0x6f, 0x5d, 0x08, 0x3d, 0xf5, 0x07, 0x93, 0x62, 0xe8, 0x09, 0x8d, 0xdc, 0x2a, 0x5d, 0xfb, 0xd3,
0x40, 0xf6, 0x04, 0x42, 0x2e, 0x04, 0x1a, 0x13, 0x77, 0xa8, 0xf9, 0x7b, 0x6d, 0x99, 0xe4, 0x98,
0x02, 0x69, 0x9d, 0xe0, 0x44, 0x96, 0x7c, 0x55, 0x2a, 0x7e, 0x59, 0xbb, 0xd5, 0x40, 0x76, 0x01,
0xfb, 0x42, 0x55, 0x4b, 0x8d, 0xc6, 0x14, 0x4a, 0xce, 0x79, 0xb9, 0x50, 0xba, 0xb0, 0x79, 0x45,
0xe6, 0xed, 0x1e, 0x1d, 0x24, 0xf5, 0xcd, 0x9e, 0xb4, 0x49, 0xc7, 0x4d, 0x4e, 0x3a, 0x14, 0xbf,
0x60, 0xd9, 0x39, 0x0c, 0x51, 0xd2, 0x6f, 0x77, 0x15, 0x43, 0x52, 0x7c, 0xd0, 0x28, 0x9e, 0xae,
0x73, 0x5a, 0xc1, 0x3d, 0xdc, 0x24, 0x9d, 0x3f, 0xa6, 0x58, 0x48, 0x6e, 0xaf, 0x35, 0xc6, 0x3d,
0x6a, 0xbf, 0x25, 0xd8, 0x19, 0xec, 0xad, 0xc1, 0xad, 0x62, 0x3b, 0x54, 0x6c, 0xd4, 0x14, 0x7b,
0xdf, 0xa4, 0xb4, 0xb5, 0x98, 0xd9, 0xe0, 0xd8, 0x53, 0x88, 0x34, 0x7e, 0x44, 0x8d, 0x6e, 0x50,
0x22, 0x72, 0xf5, 0x3f, 0xef, 0x6a, 0x4d, 0xa6, 0x6d, 0x9c, 0x4d, 0x61, 0xbb, 0x42, 0xcb, 0x63,
0xa0, 0xbc, 0xe1, 0x2d, 0xf7, 0xdf, 0xa2, 0xe5, 0x7e, 0x80, 0x28, 0x63, 0xf4, 0x25, 0x80, 0xd0,
0xdf, 0x88, 0x1b, 0x43, 0x5e, 0x16, 0xdc, 0xd0, 0x45, 0x47, 0xa9, 0x07, 0xec, 0x10, 0xc0, 0xa0,
0xd0, 0x68, 0xe7, 0x57, 0xb8, 0xa2, 0x7b, 0x76, 0x67, 0x24, 0xe6, 0x0c, 0x57, 0xbf, 0x75, 0xb4,
0xf3, 0x77, 0x8e, 0x8e, 0x5e, 0x42, 0xb4, 0x6e, 0x91, 0xfd, 0x0f, 0x1d, 0x57, 0xd4, 0xf7, 0xe3,
0x3e, 0x5d, 0x8f, 0x37, 0xbc, 0xbc, 0x6e, 0x16, 0xd2, 0x83, 0xd7, 0x5b, 0xaf, 0x82, 0xc9, 0xd7,
0x00, 0xa2, 0xb5, 0x17, 0xff, 0xbe, 0xdd, 0x87, 0x00, 0x99, 0xdb, 0x2b, 0xbf, 0x48, 0x1d, 0x7f,
0x6c, 0x62, 0x68, 0x8f, 0x7e, 0x5a, 0xb4, 0xed, 0x8d, 0x45, 0x1b, 0x42, 0xb7, 0x90, 0x97, 0xf8,
0x99, 0x86, 0x35, 0x4c, 0x3d, 0x98, 0xbd, 0x80, 0x3d, 0xa1, 0xaa, 0x84, 0x97, 0x68, 0x73, 0x2c,
0xf8, 0x27, 0xae, 0x31, 0xc9, 0xc4, 0xac, 0x37, 0x3b, 0x79, 0xe7, 0x9e, 0xa7, 0x0f, 0xfb, 0x77,
0x22, 0x42, 0x55, 0xcf, 0x32, 0xb1, 0x50, 0x59, 0x48, 0x8f, 0xd7, 0xf3, 0x1f, 0x01, 0x00, 0x00,
0xff, 0xff, 0xfb, 0x20, 0x6b, 0x24, 0xda, 0x04, 0x00, 0x00,
}