From cd11f1e094108a6fa9c4db235b2d968678bccaca Mon Sep 17 00:00:00 2001 From: Martin Martinez Rivera Date: Tue, 18 Jun 2019 15:52:08 -0700 Subject: [PATCH 1/4] Introduce backup data formats for cross-version compatibility. currently backups are storing data in the internal format. If that format changes backups will not work accross version. This PR introduces new formats for both keys and values (posting lists) to solve this problem. --- posting/list.go | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/posting/list.go b/posting/list.go index d138bc306e8..c23d8b51c94 100644 --- a/posting/list.go +++ b/posting/list.go @@ -1258,3 +1258,32 @@ func (l *List) PartSplits() []uint64 { copy(splits, l.plist.Splits) return splits } + +// ToBackupPostingList converts a posting list into its representation used for storing backups. +func ToBackupPostingList(l *pb.PostingList) *pb.BackupPostingList { + bl := pb.BackupPostingList{} + if l == nil { + return &bl + } + + bl.Uids = codec.Decode(l.Pack, 0) + bl.Postings = l.Postings + bl.CommitTs = l.CommitTs + bl.Splits = l.Splits + return &bl +} + +// FromBackupPostingList converts a posting list in the format used for backups to a +// normal posting list. +func FromBackupPostingList(bl *pb.BackupPostingList) *pb.PostingList { + l := pb.PostingList{} + if bl == nil { + return &l + } + + l.Pack = codec.Encode(bl.Uids, blockSize) + l.Postings = bl.Postings + l.CommitTs = bl.CommitTs + l.Splits = bl.Splits + return &l +} From 735c650ccc26f21d42a21461e59c98009db215bb Mon Sep 17 00:00:00 2001 From: Martin Martinez Rivera Date: Tue, 18 Jun 2019 15:53:54 -0700 Subject: [PATCH 2/4] Add rest of files. --- protos/pb.proto | 19 + protos/pb/pb.pb.go | 1358 ++++++++++++++++++++++++++++++++++++-------- x/keys.go | 44 ++ 3 files changed, 1183 insertions(+), 238 deletions(-) diff --git a/protos/pb.proto b/protos/pb.proto index 8a70d695498..773ba92741a 100644 --- a/protos/pb.proto +++ b/protos/pb.proto @@ -499,4 +499,23 @@ message ExportRequest { string format = 4; } +// A key stored in the format used for writing backups. +message BackupKey { + bytes byteType = 1; + string attr = 2; + uint64 uid = 3; + uint64 start_uid = 4; + string term = 5; + uint32 count = 6; + bytes byte_prefix = 7; +} + +// A posting list stored in the format used for writing backups. +message BackupPostingList { + repeated uint64 uids = 1; + repeated Posting postings = 2; + uint64 commit_ts = 3; + repeated uint64 splits = 4; +} + // vim: noexpandtab sw=2 ts=2 diff --git a/protos/pb/pb.pb.go b/protos/pb/pb.pb.go index 991eec1ee74..602e11e820a 100644 --- a/protos/pb/pb.pb.go +++ b/protos/pb/pb.pb.go @@ -3745,6 +3745,174 @@ func (m *ExportRequest) GetFormat() string { return "" } +// A key stored in the format used for writing backups. +type BackupKey struct { + ByteType []byte `protobuf:"bytes,1,opt,name=byteType,proto3" json:"byteType,omitempty"` + Attr string `protobuf:"bytes,2,opt,name=attr,proto3" json:"attr,omitempty"` + Uid uint64 `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"` + StartUid uint64 `protobuf:"varint,4,opt,name=start_uid,json=startUid,proto3" json:"start_uid,omitempty"` + Term string `protobuf:"bytes,5,opt,name=term,proto3" json:"term,omitempty"` + Count uint32 `protobuf:"varint,6,opt,name=count,proto3" json:"count,omitempty"` + BytePrefix []byte `protobuf:"bytes,7,opt,name=byte_prefix,json=bytePrefix,proto3" json:"byte_prefix,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *BackupKey) Reset() { *m = BackupKey{} } +func (m *BackupKey) String() string { return proto.CompactTextString(m) } +func (*BackupKey) ProtoMessage() {} +func (*BackupKey) Descriptor() ([]byte, []int) { + return fileDescriptor_f80abaa17e25ccc8, []int{50} +} +func (m *BackupKey) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *BackupKey) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_BackupKey.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalTo(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *BackupKey) XXX_Merge(src proto.Message) { + xxx_messageInfo_BackupKey.Merge(m, src) +} +func (m *BackupKey) XXX_Size() int { + return m.Size() +} +func (m *BackupKey) XXX_DiscardUnknown() { + xxx_messageInfo_BackupKey.DiscardUnknown(m) +} + +var xxx_messageInfo_BackupKey proto.InternalMessageInfo + +func (m *BackupKey) GetByteType() []byte { + if m != nil { + return m.ByteType + } + return nil +} + +func (m *BackupKey) GetAttr() string { + if m != nil { + return m.Attr + } + return "" +} + +func (m *BackupKey) GetUid() uint64 { + if m != nil { + return m.Uid + } + return 0 +} + +func (m *BackupKey) GetStartUid() uint64 { + if m != nil { + return m.StartUid + } + return 0 +} + +func (m *BackupKey) GetTerm() string { + if m != nil { + return m.Term + } + return "" +} + +func (m *BackupKey) GetCount() uint32 { + if m != nil { + return m.Count + } + return 0 +} + +func (m *BackupKey) GetBytePrefix() []byte { + if m != nil { + return m.BytePrefix + } + return nil +} + +// A posting list stored in the format used for writing backups. +type BackupPostingList struct { + Uids []uint64 `protobuf:"varint,1,rep,packed,name=uids,proto3" json:"uids,omitempty"` + Postings []*Posting `protobuf:"bytes,2,rep,name=postings,proto3" json:"postings,omitempty"` + CommitTs uint64 `protobuf:"varint,3,opt,name=commit_ts,json=commitTs,proto3" json:"commit_ts,omitempty"` + Splits []uint64 `protobuf:"varint,4,rep,packed,name=splits,proto3" json:"splits,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *BackupPostingList) Reset() { *m = BackupPostingList{} } +func (m *BackupPostingList) String() string { return proto.CompactTextString(m) } +func (*BackupPostingList) ProtoMessage() {} +func (*BackupPostingList) Descriptor() ([]byte, []int) { + return fileDescriptor_f80abaa17e25ccc8, []int{51} +} +func (m *BackupPostingList) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *BackupPostingList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_BackupPostingList.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalTo(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *BackupPostingList) XXX_Merge(src proto.Message) { + xxx_messageInfo_BackupPostingList.Merge(m, src) +} +func (m *BackupPostingList) XXX_Size() int { + return m.Size() +} +func (m *BackupPostingList) XXX_DiscardUnknown() { + xxx_messageInfo_BackupPostingList.DiscardUnknown(m) +} + +var xxx_messageInfo_BackupPostingList proto.InternalMessageInfo + +func (m *BackupPostingList) GetUids() []uint64 { + if m != nil { + return m.Uids + } + return nil +} + +func (m *BackupPostingList) GetPostings() []*Posting { + if m != nil { + return m.Postings + } + return nil +} + +func (m *BackupPostingList) GetCommitTs() uint64 { + if m != nil { + return m.CommitTs + } + return 0 +} + +func (m *BackupPostingList) GetSplits() []uint64 { + if m != nil { + return m.Splits + } + return nil +} + func init() { proto.RegisterEnum("pb.DirectedEdge_Op", DirectedEdge_Op_name, DirectedEdge_Op_value) proto.RegisterEnum("pb.Mutations_DropOp", Mutations_DropOp_name, Mutations_DropOp_value) @@ -3807,234 +3975,242 @@ func init() { proto.RegisterType((*BackupRequest)(nil), "pb.BackupRequest") proto.RegisterType((*BackupResponse)(nil), "pb.BackupResponse") proto.RegisterType((*ExportRequest)(nil), "pb.ExportRequest") + proto.RegisterType((*BackupKey)(nil), "pb.BackupKey") + proto.RegisterType((*BackupPostingList)(nil), "pb.BackupPostingList") } func init() { proto.RegisterFile("pb.proto", fileDescriptor_f80abaa17e25ccc8) } var fileDescriptor_f80abaa17e25ccc8 = []byte{ - // 3549 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x5a, 0xcd, 0x6f, 0xdc, 0x48, - 0x76, 0x37, 0xd9, 0xdd, 0x6c, 0xf2, 0x75, 0x4b, 0xee, 0xad, 0xf1, 0x7a, 0x7a, 0xb4, 0xbb, 0xb6, - 0x86, 0xf3, 0x61, 0x8d, 0x67, 0x47, 0xf6, 0x68, 0x36, 0xc9, 0xce, 0x06, 0x39, 0xc8, 0x56, 0xdb, - 0xd1, 0x8c, 0x2c, 0x29, 0xa5, 0x96, 0x37, 0x3b, 0x87, 0x34, 0x4a, 0x64, 0xa9, 0xc5, 0x15, 0x9b, - 0x64, 0x58, 0x6c, 0xa5, 0x35, 0xb7, 0x1c, 0x12, 0x20, 0x40, 0x6e, 0xb9, 0x2c, 0x82, 0x20, 0x87, - 0x1c, 0x03, 0x04, 0xb9, 0xee, 0x39, 0x40, 0x80, 0x1c, 0x83, 0xfc, 0x05, 0xc1, 0x24, 0xc7, 0x9c, - 0x03, 0xe4, 0x16, 0xbc, 0x57, 0xc5, 0x26, 0xd9, 0x96, 0x3d, 0x3b, 0x01, 0x72, 0x52, 0xbd, 0x8f, - 0x62, 0x55, 0xfd, 0xea, 0xd5, 0xfb, 0x6a, 0x81, 0x9b, 0x9d, 0x6d, 0x67, 0x79, 0x5a, 0xa4, 0xcc, - 0xce, 0xce, 0x36, 0x3c, 0x91, 0x45, 0x9a, 0xdc, 0x78, 0x30, 0x8d, 0x8a, 0x8b, 0xf9, 0xd9, 0x76, - 0x90, 0xce, 0x1e, 0x85, 0xd3, 0x5c, 0x64, 0x17, 0x9f, 0x44, 0xe9, 0xa3, 0x33, 0x11, 0x4e, 0x65, - 0xfe, 0x28, 0x3b, 0x7b, 0x54, 0xce, 0xf3, 0x37, 0xa0, 0x7d, 0x10, 0xa9, 0x82, 0x31, 0x68, 0xcf, - 0xa3, 0x50, 0x0d, 0xad, 0xcd, 0xd6, 0x96, 0xc3, 0x69, 0xec, 0xbf, 0x00, 0x6f, 0x2c, 0xd4, 0xe5, - 0x4b, 0x11, 0xcf, 0x25, 0x1b, 0x40, 0xeb, 0x4a, 0xc4, 0x43, 0x6b, 0xd3, 0xda, 0xea, 0x73, 0x1c, - 0xb2, 0x6d, 0x70, 0xaf, 0x44, 0x3c, 0x29, 0xae, 0x33, 0x39, 0xb4, 0x37, 0xad, 0xad, 0xf5, 0x9d, - 0xb7, 0xb6, 0xb3, 0xb3, 0xed, 0xe3, 0x54, 0x15, 0x51, 0x32, 0xdd, 0x7e, 0x29, 0xe2, 0xf1, 0x75, - 0x26, 0x79, 0xf7, 0x4a, 0x0f, 0xfc, 0x23, 0xe8, 0x9d, 0xe4, 0xc1, 0xb3, 0x79, 0x12, 0x14, 0x51, - 0x9a, 0xe0, 0x8a, 0x89, 0x98, 0x49, 0xfa, 0xa2, 0xc7, 0x69, 0x8c, 0x3c, 0x91, 0x4f, 0xd5, 0xb0, - 0xb5, 0xd9, 0x42, 0x1e, 0x8e, 0xd9, 0x10, 0xba, 0x91, 0x7a, 0x9a, 0xce, 0x93, 0x62, 0xd8, 0xde, - 0xb4, 0xb6, 0x5c, 0x5e, 0x92, 0xfe, 0x5f, 0xb4, 0xa0, 0xf3, 0x07, 0x73, 0x99, 0x5f, 0xd3, 0xbc, - 0xa2, 0xc8, 0xcb, 0x6f, 0xe1, 0x98, 0xdd, 0x81, 0x4e, 0x2c, 0x92, 0xa9, 0x1a, 0xda, 0xf4, 0x31, - 0x4d, 0xb0, 0x1f, 0x80, 0x27, 0xce, 0x0b, 0x99, 0x4f, 0xe6, 0x51, 0x38, 0x6c, 0x6d, 0x5a, 0x5b, - 0x0e, 0x77, 0x89, 0x71, 0x1a, 0x85, 0xec, 0x1d, 0x70, 0xc3, 0x74, 0x12, 0xd4, 0xd7, 0x0a, 0x53, - 0x5a, 0x8b, 0xbd, 0x07, 0xee, 0x3c, 0x0a, 0x27, 0x71, 0xa4, 0x8a, 0x61, 0x67, 0xd3, 0xda, 0xea, - 0xed, 0xb8, 0x78, 0x58, 0xc4, 0x8e, 0x77, 0xe7, 0x51, 0x48, 0x20, 0x3e, 0x04, 0x57, 0xe5, 0xc1, - 0xe4, 0x7c, 0x9e, 0x04, 0x43, 0x87, 0x94, 0x6e, 0xa3, 0x52, 0xed, 0xd4, 0xbc, 0xab, 0x34, 0x81, - 0xc7, 0xca, 0xe5, 0x95, 0xcc, 0x95, 0x1c, 0x76, 0xf5, 0x52, 0x86, 0x64, 0x8f, 0xa1, 0x77, 0x2e, - 0x02, 0x59, 0x4c, 0x32, 0x91, 0x8b, 0xd9, 0xd0, 0xad, 0x3e, 0xf4, 0x0c, 0xd9, 0xc7, 0xc8, 0x55, - 0x1c, 0xce, 0x97, 0x04, 0xfb, 0x0c, 0xd6, 0x88, 0x52, 0x93, 0xf3, 0x28, 0x2e, 0x64, 0x3e, 0xf4, - 0x68, 0xce, 0x3a, 0xcd, 0x21, 0xce, 0x38, 0x97, 0x92, 0xf7, 0xb5, 0x92, 0xe6, 0xb0, 0x1f, 0x01, - 0xc8, 0x45, 0x26, 0x92, 0x70, 0x22, 0xe2, 0x78, 0x08, 0xb4, 0x07, 0x4f, 0x73, 0x76, 0xe3, 0x98, - 0xbd, 0x8d, 0xfb, 0x13, 0xe1, 0xa4, 0x50, 0xc3, 0xb5, 0x4d, 0x6b, 0xab, 0xcd, 0x1d, 0x24, 0xc7, - 0x0a, 0x71, 0x0d, 0x44, 0x70, 0x21, 0x87, 0xeb, 0x9b, 0xd6, 0x56, 0x87, 0x6b, 0xc2, 0xdf, 0x01, - 0x8f, 0xec, 0x84, 0x70, 0xf8, 0x00, 0x9c, 0x2b, 0x24, 0xb4, 0x39, 0xf5, 0x76, 0xd6, 0x70, 0x23, - 0x4b, 0x53, 0xe2, 0x46, 0xe8, 0xdf, 0x03, 0xf7, 0x40, 0x24, 0xd3, 0xd2, 0xfe, 0xf0, 0x82, 0x68, - 0x82, 0xc7, 0x69, 0xec, 0xff, 0xca, 0x06, 0x87, 0x4b, 0x35, 0x8f, 0x0b, 0xf6, 0x00, 0x00, 0xe1, - 0x9f, 0x89, 0x22, 0x8f, 0x16, 0xe6, 0xab, 0xd5, 0x05, 0x78, 0xf3, 0x28, 0x7c, 0x41, 0x22, 0xf6, - 0x18, 0xfa, 0xf4, 0xf5, 0x52, 0xd5, 0xae, 0x36, 0xb0, 0xdc, 0x1f, 0xef, 0x91, 0x8a, 0x99, 0x71, - 0x17, 0x1c, 0xba, 0x71, 0x6d, 0x75, 0x6b, 0xdc, 0x50, 0xec, 0x03, 0x58, 0x8f, 0x92, 0x02, 0x6f, - 0x24, 0x28, 0x26, 0xa1, 0x54, 0xa5, 0x49, 0xac, 0x2d, 0xb9, 0x7b, 0x52, 0x15, 0xec, 0x53, 0xd0, - 0xb0, 0x96, 0x0b, 0x76, 0x68, 0xc1, 0xf5, 0xe5, 0x75, 0x29, 0xbd, 0x22, 0xe9, 0x98, 0x15, 0x3f, - 0x81, 0x1e, 0x9e, 0xaf, 0x9c, 0xe1, 0xd0, 0x8c, 0x3e, 0x9d, 0xc6, 0xc0, 0xc1, 0x01, 0x15, 0x8c, - 0x3a, 0x42, 0x83, 0x66, 0xa7, 0xcd, 0x84, 0xc6, 0xfe, 0x08, 0x3a, 0x47, 0x79, 0x28, 0xf3, 0x1b, - 0x2d, 0x9f, 0x41, 0x3b, 0x94, 0x2a, 0xa0, 0x47, 0xe9, 0x72, 0x1a, 0x57, 0xaf, 0xa1, 0x55, 0x7b, - 0x0d, 0xfe, 0xdf, 0x5a, 0xd0, 0x3b, 0x49, 0xf3, 0xe2, 0x85, 0x54, 0x4a, 0x4c, 0x25, 0xbb, 0x0f, - 0x9d, 0x14, 0x3f, 0x6b, 0x10, 0xf6, 0x70, 0x4f, 0xb4, 0x0e, 0xd7, 0xfc, 0x95, 0x7b, 0xb0, 0x5f, - 0x7f, 0x0f, 0x68, 0x25, 0xf4, 0x8e, 0x5a, 0xc6, 0x4a, 0xe8, 0x15, 0xdd, 0x05, 0x27, 0x3d, 0x3f, - 0x57, 0x52, 0x63, 0xd9, 0xe1, 0x86, 0x7a, 0xad, 0xb1, 0xf9, 0xbf, 0x05, 0x80, 0xfb, 0xfb, 0x8e, - 0x56, 0xe0, 0x5f, 0x40, 0x8f, 0x8b, 0xf3, 0xe2, 0x69, 0x9a, 0x14, 0x72, 0x51, 0xb0, 0x75, 0xb0, - 0xa3, 0x90, 0x20, 0x72, 0xb8, 0x1d, 0x85, 0xb8, 0xb9, 0x69, 0x9e, 0xce, 0x33, 0x42, 0x68, 0x8d, - 0x6b, 0x82, 0xa0, 0x0c, 0xc3, 0x9c, 0x76, 0x8c, 0x50, 0x86, 0x61, 0xce, 0xee, 0x43, 0x4f, 0x25, - 0x22, 0x53, 0x17, 0x69, 0x81, 0x9b, 0x6b, 0xd3, 0xe6, 0xa0, 0x64, 0x8d, 0x95, 0xff, 0xcf, 0x16, - 0x38, 0x2f, 0xe4, 0xec, 0x4c, 0xe6, 0xaf, 0xac, 0xf2, 0x0e, 0xb8, 0xf4, 0xe1, 0x49, 0x14, 0x9a, - 0x85, 0xba, 0x44, 0xef, 0x87, 0x37, 0x2e, 0x75, 0x17, 0x9c, 0x58, 0x0a, 0x04, 0x5f, 0xdb, 0x99, - 0xa1, 0x10, 0x1b, 0x31, 0x9b, 0x84, 0x52, 0x84, 0xe4, 0x78, 0x5c, 0xee, 0x88, 0xd9, 0x9e, 0x14, - 0x21, 0xee, 0x2d, 0x16, 0xaa, 0x98, 0xcc, 0xb3, 0x50, 0x14, 0x92, 0x1c, 0x4e, 0x1b, 0x0d, 0x47, - 0x15, 0xa7, 0xc4, 0x61, 0x0f, 0xe1, 0x7b, 0x41, 0x3c, 0x57, 0xe8, 0xed, 0xa2, 0xe4, 0x3c, 0x9d, - 0xa4, 0x49, 0x7c, 0x4d, 0xf8, 0xba, 0xfc, 0xb6, 0x11, 0xec, 0x27, 0xe7, 0xe9, 0x51, 0x12, 0x5f, - 0xfb, 0xbf, 0xb6, 0xa1, 0xf3, 0x9c, 0x60, 0x78, 0x0c, 0xdd, 0x19, 0x1d, 0xa8, 0x7c, 0xbd, 0x77, - 0x11, 0x61, 0x92, 0x6d, 0xeb, 0x93, 0xaa, 0x51, 0x52, 0xe4, 0xd7, 0xbc, 0x54, 0xc3, 0x19, 0x85, - 0x38, 0x8b, 0x65, 0xa1, 0x8c, 0x45, 0xd4, 0x66, 0x8c, 0xb5, 0xc0, 0xcc, 0x30, 0x6a, 0xab, 0xb0, - 0xb6, 0x56, 0x61, 0x65, 0x1b, 0xe0, 0x06, 0x17, 0x32, 0xb8, 0x54, 0xf3, 0x99, 0x01, 0x7d, 0x49, - 0x6f, 0x3c, 0x83, 0x7e, 0x7d, 0x1f, 0x18, 0x99, 0x2e, 0xe5, 0x35, 0x01, 0xdf, 0xe6, 0x38, 0x64, - 0x9b, 0xd0, 0xa1, 0x17, 0x4e, 0xb0, 0xf7, 0x76, 0x00, 0xb7, 0xa3, 0xa7, 0x70, 0x2d, 0xf8, 0x99, - 0xfd, 0x53, 0x0b, 0xbf, 0x53, 0xdf, 0x5d, 0xfd, 0x3b, 0xde, 0xeb, 0xbf, 0xa3, 0xa7, 0xd4, 0xbe, - 0xe3, 0xff, 0x8f, 0x0d, 0xfd, 0xaf, 0x64, 0x9e, 0x1e, 0xe7, 0x69, 0x96, 0x2a, 0x11, 0xb3, 0xdd, - 0xe6, 0xe9, 0x34, 0x8a, 0x9b, 0x38, 0xb9, 0xae, 0xb6, 0x7d, 0xb2, 0x3c, 0xae, 0x46, 0xa7, 0x7e, - 0x7e, 0x1f, 0x1c, 0x8d, 0xee, 0x0d, 0x47, 0x30, 0x12, 0xd4, 0xd1, 0x78, 0x12, 0x7e, 0xcd, 0xed, - 0x19, 0x09, 0xbb, 0x07, 0x30, 0x13, 0x8b, 0x03, 0x29, 0x94, 0xdc, 0x0f, 0x4b, 0xf3, 0xad, 0x38, - 0x88, 0xf3, 0x4c, 0x2c, 0xc6, 0x8b, 0x64, 0xac, 0xc8, 0xba, 0xda, 0x7c, 0x49, 0xb3, 0x1f, 0x82, - 0x37, 0x13, 0x0b, 0x7c, 0x47, 0xfb, 0xa1, 0xb1, 0xae, 0x8a, 0xc1, 0xde, 0x85, 0x56, 0xb1, 0x48, - 0xc8, 0x29, 0x61, 0x74, 0xc2, 0xd4, 0x63, 0xbc, 0x48, 0xcc, 0x8b, 0xe3, 0x28, 0x2b, 0x01, 0x75, - 0x2b, 0x40, 0x07, 0xd0, 0x0a, 0xa2, 0x90, 0xc2, 0x93, 0xc7, 0x71, 0xb8, 0xf1, 0x7b, 0x70, 0x7b, - 0x05, 0x87, 0xfa, 0x3d, 0xac, 0xe9, 0x69, 0x77, 0xea, 0xf7, 0xd0, 0xae, 0x63, 0xff, 0xeb, 0x16, - 0xdc, 0x36, 0xc6, 0x70, 0x11, 0x65, 0x27, 0x05, 0x9a, 0xfd, 0x10, 0xba, 0xe4, 0x6d, 0x64, 0x6e, - 0x6c, 0xa2, 0x24, 0xd9, 0xef, 0x80, 0x43, 0x2f, 0xb0, 0xb4, 0xd3, 0xfb, 0x15, 0xaa, 0xcb, 0xe9, - 0xda, 0x6e, 0xcd, 0x95, 0x18, 0x75, 0xf6, 0x13, 0xe8, 0x7c, 0x2d, 0xf3, 0x54, 0x7b, 0xcf, 0xde, - 0xce, 0xbd, 0x9b, 0xe6, 0xe1, 0xdd, 0x9a, 0x69, 0x5a, 0xf9, 0xff, 0x11, 0xfc, 0xf7, 0xd1, 0x5f, - 0xce, 0xd2, 0x2b, 0x19, 0x0e, 0xbb, 0xb4, 0xa3, 0xba, 0x7d, 0x94, 0xa2, 0x12, 0x6d, 0xb7, 0x42, - 0x7b, 0x0f, 0x7a, 0xb5, 0xe3, 0xdd, 0x80, 0xf4, 0xfd, 0xa6, 0xc5, 0x7b, 0xcb, 0x87, 0x5c, 0x7f, - 0x38, 0x7b, 0x00, 0xd5, 0x61, 0xff, 0xaf, 0xcf, 0xcf, 0xff, 0x53, 0x0b, 0x6e, 0x3f, 0x4d, 0x93, - 0x44, 0x52, 0x62, 0xa4, 0xaf, 0xae, 0x32, 0x7b, 0xeb, 0xb5, 0x66, 0xff, 0x11, 0x74, 0x14, 0x2a, - 0x9b, 0xaf, 0xbf, 0x75, 0xc3, 0x5d, 0x70, 0xad, 0x81, 0x6e, 0x66, 0x26, 0x16, 0x93, 0x4c, 0x26, - 0x61, 0x94, 0x4c, 0x4b, 0x37, 0x33, 0x13, 0x8b, 0x63, 0xcd, 0xf1, 0xff, 0xce, 0x02, 0x47, 0xbf, - 0x98, 0x86, 0xb7, 0xb6, 0x9a, 0xde, 0xfa, 0x87, 0xe0, 0x65, 0xb9, 0x0c, 0xa3, 0xa0, 0x5c, 0xd5, - 0xe3, 0x15, 0x03, 0x8d, 0xf3, 0x3c, 0xcd, 0x03, 0x49, 0x9f, 0x77, 0xb9, 0x26, 0x90, 0xab, 0x32, - 0x11, 0xe8, 0xe4, 0xae, 0xc5, 0x35, 0x81, 0x3e, 0x5e, 0x5f, 0x0e, 0x5d, 0x8a, 0xcb, 0x0d, 0x85, - 0x59, 0x29, 0xc5, 0x3f, 0xf2, 0xd0, 0x1e, 0x89, 0x5c, 0x64, 0x90, 0x6b, 0xfe, 0x7b, 0x1b, 0xfa, - 0x7b, 0x51, 0x2e, 0x83, 0x42, 0x86, 0xa3, 0x70, 0x4a, 0x5f, 0x91, 0x49, 0x11, 0x15, 0xd7, 0x26, - 0xd8, 0x18, 0x6a, 0x99, 0x0b, 0xd8, 0xcd, 0x2c, 0x58, 0xdf, 0x45, 0x8b, 0x12, 0x77, 0x4d, 0xb0, - 0x1d, 0x00, 0x9d, 0x25, 0x51, 0xf2, 0xde, 0x7e, 0x7d, 0xf2, 0xee, 0x91, 0x1a, 0x0e, 0x11, 0x20, - 0x3d, 0x27, 0xd2, 0x81, 0xc8, 0xa1, 0xcc, 0x7e, 0x8e, 0x86, 0x4c, 0xc9, 0xc5, 0x99, 0x8c, 0xc9, - 0x50, 0x29, 0xb9, 0x38, 0x93, 0xf1, 0x32, 0xa5, 0xeb, 0xea, 0xed, 0xe0, 0x98, 0xbd, 0x07, 0x76, - 0x9a, 0xd1, 0xe1, 0xcd, 0x82, 0xf5, 0x83, 0x6d, 0x1f, 0x65, 0xdc, 0x4e, 0x33, 0xb4, 0x02, 0x9d, - 0xa9, 0x0e, 0x3d, 0x63, 0xdc, 0xe8, 0x5d, 0x28, 0x9b, 0xe2, 0x46, 0xe2, 0xdf, 0x05, 0xfb, 0x28, - 0x63, 0x5d, 0x68, 0x9d, 0x8c, 0xc6, 0x83, 0x5b, 0x38, 0xd8, 0x1b, 0x1d, 0x0c, 0x2c, 0xff, 0xbf, - 0x6c, 0xf0, 0x5e, 0xcc, 0x0b, 0x81, 0x36, 0xa5, 0xde, 0x74, 0xa9, 0xef, 0x80, 0xab, 0x0a, 0x91, - 0x93, 0x87, 0xd6, 0x6e, 0xa5, 0x4b, 0xf4, 0x58, 0xb1, 0x0f, 0xa1, 0x23, 0xc3, 0xa9, 0x2c, 0x5f, - 0xfb, 0x60, 0x75, 0x9f, 0x5c, 0x8b, 0xd9, 0x16, 0x38, 0x2a, 0xb8, 0x90, 0x33, 0x31, 0x6c, 0x57, - 0x8a, 0x27, 0xc4, 0xd1, 0x11, 0x98, 0x1b, 0x39, 0xdb, 0x81, 0xef, 0x47, 0xd3, 0x24, 0xcd, 0xe5, - 0x24, 0x4a, 0x42, 0xb9, 0x98, 0x04, 0x69, 0x72, 0x1e, 0x47, 0x41, 0x61, 0x22, 0xfa, 0x5b, 0x5a, - 0xb8, 0x8f, 0xb2, 0xa7, 0x46, 0xc4, 0xde, 0x87, 0x0e, 0xde, 0x8e, 0x32, 0xf9, 0x21, 0x65, 0x94, - 0x78, 0x11, 0xe6, 0xd3, 0x5a, 0xc8, 0x3e, 0x81, 0x6e, 0x98, 0xa7, 0xd9, 0x24, 0xcd, 0x08, 0xe7, - 0xf5, 0x9d, 0x3b, 0xf4, 0x1e, 0x4a, 0x04, 0xb6, 0xf7, 0xf2, 0x34, 0x3b, 0xca, 0xb8, 0x13, 0xd2, - 0x5f, 0x4c, 0xfa, 0x49, 0x5d, 0xdb, 0x84, 0xf6, 0x0c, 0x1e, 0x72, 0x28, 0x39, 0xf6, 0x1f, 0x81, - 0xa3, 0x27, 0x30, 0x17, 0xda, 0x87, 0x47, 0x87, 0x23, 0x0d, 0xed, 0xee, 0xc1, 0xc1, 0xc0, 0x42, - 0xd6, 0xde, 0xee, 0x78, 0x77, 0x60, 0xe3, 0x68, 0xfc, 0x8b, 0xe3, 0xd1, 0xa0, 0xe5, 0xff, 0x95, - 0x05, 0x6e, 0xe9, 0xbf, 0xd9, 0x47, 0xe8, 0x78, 0xc9, 0xff, 0x9b, 0xe7, 0x4b, 0x45, 0x4b, 0x2d, - 0x11, 0xe3, 0xa5, 0x1c, 0x2d, 0x86, 0x90, 0x28, 0x3d, 0x3a, 0x11, 0xf5, 0x34, 0xb0, 0xd5, 0xa8, - 0x39, 0x30, 0xa3, 0x4d, 0x13, 0x69, 0x32, 0x23, 0x1a, 0xd3, 0x05, 0x46, 0x49, 0x20, 0x51, 0xbb, - 0x63, 0x2e, 0x10, 0xe9, 0xb1, 0xf2, 0xff, 0xc6, 0x06, 0x77, 0x19, 0x8d, 0x3f, 0x06, 0x6f, 0x56, - 0xc2, 0x61, 0x7c, 0xc6, 0x5a, 0x03, 0x23, 0x5e, 0xc9, 0xd9, 0x5d, 0xb0, 0x2f, 0xaf, 0xcc, 0x75, - 0x3a, 0xa8, 0xf5, 0xe5, 0x4b, 0x6e, 0x5f, 0x5e, 0x55, 0x4e, 0xa7, 0xf3, 0xad, 0x4e, 0xe7, 0x01, - 0xdc, 0x0e, 0x62, 0x29, 0x92, 0x49, 0xe5, 0x33, 0xf4, 0xb3, 0x58, 0x27, 0xf6, 0xf1, 0xd2, 0x71, - 0x18, 0xc7, 0xd9, 0xad, 0xc2, 0xe3, 0x07, 0xd0, 0x09, 0x65, 0x5c, 0x88, 0x7a, 0xcd, 0x77, 0x94, - 0x8b, 0x20, 0x96, 0x7b, 0xc8, 0xe6, 0x5a, 0xca, 0xb6, 0xc0, 0x2d, 0x53, 0x05, 0x53, 0xe9, 0x51, - 0xf1, 0x50, 0xde, 0x03, 0x5f, 0x4a, 0x2b, 0x98, 0xa1, 0x06, 0xb3, 0xff, 0x29, 0xb4, 0xbe, 0x7c, - 0x79, 0x62, 0xce, 0x6a, 0xbd, 0x72, 0xd6, 0x12, 0x6c, 0xbb, 0x02, 0xdb, 0xff, 0xef, 0x16, 0x74, - 0x8d, 0x6f, 0xc0, 0x7d, 0xcf, 0x97, 0x89, 0x2e, 0x0e, 0x9b, 0xf1, 0x79, 0xe9, 0x64, 0xea, 0xfd, - 0x81, 0xd6, 0xb7, 0xf7, 0x07, 0xd8, 0xcf, 0xa0, 0x9f, 0x69, 0x59, 0xdd, 0x2d, 0xbd, 0x5d, 0x9f, - 0x63, 0xfe, 0xd2, 0xbc, 0x5e, 0x56, 0x11, 0x68, 0x0c, 0x54, 0x52, 0x15, 0x62, 0x4a, 0x57, 0xd4, - 0xe7, 0x5d, 0xa4, 0xc7, 0x62, 0xfa, 0x1a, 0xe7, 0xf4, 0x1b, 0xf8, 0x18, 0x4c, 0xe8, 0xd3, 0x6c, - 0xd8, 0x27, 0xbf, 0x81, 0x7e, 0xa9, 0xee, 0x32, 0xd6, 0x9a, 0x2e, 0xe3, 0x07, 0xe0, 0x05, 0xe9, - 0x6c, 0x16, 0x91, 0x6c, 0xdd, 0x24, 0xac, 0xc4, 0x18, 0x2b, 0xff, 0xcf, 0x2d, 0xe8, 0x9a, 0xd3, - 0xb2, 0x1e, 0x74, 0xf7, 0x46, 0xcf, 0x76, 0x4f, 0x0f, 0xd0, 0x6b, 0x01, 0x38, 0x4f, 0xf6, 0x0f, - 0x77, 0xf9, 0x2f, 0x06, 0x16, 0x3e, 0xb3, 0xfd, 0xc3, 0xf1, 0xc0, 0x66, 0x1e, 0x74, 0x9e, 0x1d, - 0x1c, 0xed, 0x8e, 0x07, 0x2d, 0x7c, 0x67, 0x4f, 0x8e, 0x8e, 0x0e, 0x06, 0x6d, 0xd6, 0x07, 0x77, - 0x6f, 0x77, 0x3c, 0x1a, 0xef, 0xbf, 0x18, 0x0d, 0x3a, 0xa8, 0xfb, 0x7c, 0x74, 0x34, 0x70, 0x70, - 0x70, 0xba, 0xbf, 0x37, 0xe8, 0xa2, 0xfc, 0x78, 0xf7, 0xe4, 0xe4, 0xe7, 0x47, 0x7c, 0x6f, 0xe0, - 0xe2, 0x77, 0x4f, 0xc6, 0x7c, 0xff, 0xf0, 0xf9, 0xc0, 0xc3, 0xf1, 0xd1, 0x93, 0x2f, 0x46, 0x4f, - 0xc7, 0x03, 0xf0, 0x3f, 0x85, 0x5e, 0x0d, 0x41, 0x9c, 0xcd, 0x47, 0xcf, 0x06, 0xb7, 0x70, 0xc9, - 0x97, 0xbb, 0x07, 0xa7, 0xa3, 0x81, 0xc5, 0xd6, 0x01, 0x68, 0x38, 0x39, 0xd8, 0x3d, 0x7c, 0x3e, - 0xb0, 0xfd, 0xdf, 0x06, 0xf7, 0x34, 0x0a, 0x9f, 0xc4, 0x69, 0x70, 0x89, 0x86, 0x71, 0x26, 0x94, - 0x34, 0xa1, 0x9e, 0xc6, 0x18, 0x8b, 0xc8, 0x28, 0x95, 0xb9, 0x7b, 0x43, 0xf9, 0x87, 0xd0, 0x3d, - 0x8d, 0xc2, 0x63, 0x11, 0x5c, 0xa2, 0xcf, 0x39, 0xc3, 0xf9, 0x13, 0x15, 0x7d, 0x2d, 0x8d, 0x1b, - 0xf6, 0x88, 0x73, 0x12, 0x7d, 0x2d, 0xd9, 0xfb, 0xe0, 0x10, 0x51, 0x26, 0x65, 0x64, 0xcb, 0xe5, - 0x9a, 0xdc, 0xc8, 0xfc, 0xbf, 0xb4, 0x96, 0x7b, 0xa7, 0x7e, 0xc1, 0x7d, 0x68, 0x67, 0x22, 0xb8, - 0x34, 0x8e, 0xa6, 0x67, 0xe6, 0xe0, 0x7a, 0x9c, 0x04, 0xec, 0x01, 0xb8, 0xc6, 0x40, 0xca, 0x0f, - 0xf7, 0x6a, 0x96, 0xc4, 0x97, 0xc2, 0xe6, 0xd5, 0xb5, 0x9a, 0x57, 0x87, 0xc7, 0x53, 0x59, 0x1c, - 0x51, 0xe9, 0xd7, 0x42, 0x87, 0xa4, 0x29, 0xff, 0x27, 0x00, 0x55, 0x33, 0xe6, 0x86, 0xca, 0xe1, - 0x0e, 0x74, 0x44, 0x1c, 0x19, 0x54, 0x3c, 0xae, 0x09, 0xff, 0x10, 0x7a, 0xb5, 0x16, 0x0e, 0xda, - 0x93, 0x88, 0xe3, 0xc9, 0xa5, 0xbc, 0x56, 0x34, 0xd7, 0xe5, 0x5d, 0x11, 0xc7, 0x5f, 0xca, 0x6b, - 0x85, 0xce, 0x5f, 0x77, 0x7f, 0xec, 0x95, 0x76, 0x02, 0x4d, 0xe5, 0x5a, 0xe8, 0xff, 0x18, 0x1c, - 0xdd, 0x63, 0xa8, 0x99, 0xb3, 0xf5, 0xda, 0x90, 0xf9, 0xb9, 0xd9, 0x33, 0x75, 0x24, 0xd8, 0xc7, - 0xa6, 0xcb, 0xa4, 0x74, 0x4f, 0xcb, 0xaa, 0xd2, 0x48, 0xad, 0x64, 0x1a, 0x4c, 0xa4, 0xec, 0xef, - 0x81, 0xfb, 0xc6, 0xbe, 0x9d, 0x01, 0xc0, 0xae, 0x00, 0xb8, 0xa1, 0x93, 0xe7, 0xff, 0x12, 0xa0, - 0xea, 0x46, 0x99, 0xd7, 0xa5, 0xbf, 0x82, 0xaf, 0xeb, 0x21, 0x96, 0x7c, 0x51, 0x1c, 0xe6, 0x32, - 0x69, 0x9c, 0xba, 0xea, 0x5f, 0x2d, 0xe5, 0x6c, 0x13, 0xda, 0xd4, 0x64, 0x6b, 0x55, 0xde, 0x6f, - 0xd9, 0x61, 0x23, 0x89, 0xbf, 0x80, 0x35, 0x1d, 0x89, 0xb9, 0xfc, 0xe3, 0xb9, 0x54, 0x6f, 0xcc, - 0xef, 0xee, 0x01, 0x2c, 0x7d, 0x75, 0xd9, 0x2e, 0xac, 0x71, 0xd0, 0x08, 0xce, 0x23, 0x19, 0x87, - 0xe5, 0x69, 0x0c, 0x85, 0x97, 0xac, 0x23, 0x74, 0x5b, 0xf7, 0x54, 0x88, 0xf0, 0x7f, 0x17, 0xfa, - 0xe5, 0xca, 0xd4, 0xb4, 0xf8, 0x78, 0x99, 0x25, 0x68, 0x8c, 0x75, 0xad, 0xa4, 0x55, 0x0e, 0xd3, - 0x50, 0x3e, 0xb1, 0x87, 0x56, 0x99, 0x28, 0xf8, 0xff, 0xd6, 0x2a, 0x67, 0x9b, 0x1a, 0xbe, 0x91, - 0x7b, 0x5a, 0xab, 0xb9, 0x67, 0x33, 0x8f, 0xb3, 0x7f, 0xa3, 0x3c, 0xee, 0xa7, 0xe0, 0x85, 0x94, - 0xcc, 0x44, 0x57, 0xa5, 0x5f, 0xde, 0x58, 0x4d, 0x5c, 0x4c, 0xba, 0x13, 0x5d, 0x49, 0x5e, 0x29, - 0xe3, 0x5e, 0x8a, 0xf4, 0x52, 0x26, 0xd1, 0xd7, 0xd4, 0xa4, 0xc0, 0x33, 0x57, 0x8c, 0xaa, 0xe3, - 0xa3, 0x73, 0x1a, 0xd3, 0xf1, 0x29, 0x9b, 0x57, 0x4e, 0xd5, 0xbc, 0x42, 0x3c, 0xe7, 0x99, 0x92, - 0x79, 0x51, 0x66, 0xc1, 0x9a, 0x5a, 0x26, 0x8c, 0x9e, 0xd1, 0xc5, 0x84, 0xf1, 0x5d, 0xe8, 0x27, - 0x69, 0x32, 0x49, 0xe6, 0x71, 0x8c, 0x79, 0xba, 0xe9, 0x53, 0xf6, 0x92, 0x34, 0x39, 0x34, 0x2c, - 0xf6, 0x10, 0xbe, 0x57, 0x57, 0xd1, 0xf6, 0xdc, 0xd3, 0x6d, 0x8e, 0x9a, 0x1e, 0x59, 0xfd, 0x16, - 0x0c, 0xd2, 0xb3, 0x5f, 0xca, 0xa0, 0x20, 0xc4, 0x26, 0x64, 0xc8, 0x7d, 0x1d, 0x9d, 0x35, 0x1f, - 0x21, 0x3a, 0x14, 0x33, 0xe9, 0x7f, 0x0e, 0xde, 0x12, 0x84, 0x5a, 0x36, 0xe4, 0x41, 0x67, 0xff, - 0x70, 0x6f, 0xf4, 0x87, 0x03, 0x0b, 0x5d, 0x39, 0x1f, 0xbd, 0x1c, 0xf1, 0x93, 0xd1, 0xc0, 0x46, - 0x37, 0xbb, 0x37, 0x3a, 0x18, 0x8d, 0x47, 0x83, 0xd6, 0x17, 0x6d, 0xb7, 0x3b, 0x70, 0xb9, 0x2b, - 0x17, 0x59, 0x1c, 0x05, 0x51, 0xe1, 0x9f, 0x00, 0x54, 0x89, 0x1b, 0xfa, 0x9b, 0x6a, 0x6d, 0x7d, - 0xa3, 0x6e, 0x61, 0x56, 0xc5, 0x94, 0xd2, 0x98, 0x9a, 0xfd, 0xba, 0x94, 0x52, 0xcb, 0xfd, 0x53, - 0x70, 0x5f, 0x88, 0xec, 0x95, 0x12, 0xac, 0xbf, 0x2c, 0xb4, 0xe7, 0xa6, 0xed, 0x64, 0x62, 0xf4, - 0x07, 0xd0, 0x35, 0x2e, 0xcf, 0xbc, 0x9a, 0x86, 0x3b, 0x2c, 0x65, 0xfe, 0x9f, 0x59, 0x70, 0xe7, - 0x45, 0x7a, 0x25, 0x97, 0x69, 0xca, 0xb1, 0xb8, 0x8e, 0x53, 0x11, 0x7e, 0x8b, 0x21, 0xfe, 0x08, - 0x40, 0xa5, 0xf3, 0x3c, 0x90, 0x93, 0xe9, 0xb2, 0xdb, 0xe5, 0x69, 0xce, 0x73, 0xd3, 0x58, 0x97, - 0xaa, 0x20, 0x61, 0x4b, 0x3f, 0x3e, 0xa4, 0x51, 0xf4, 0x7d, 0x70, 0x8a, 0x45, 0x52, 0x35, 0xd7, - 0x3a, 0x05, 0xd6, 0xbf, 0xfe, 0x53, 0xf0, 0xc6, 0x0b, 0xaa, 0x0a, 0xe7, 0xaa, 0x11, 0x78, 0xad, - 0x37, 0x04, 0x5e, 0x7b, 0x25, 0xf0, 0xfe, 0xa7, 0x05, 0xbd, 0x5a, 0xfe, 0xc4, 0xde, 0x85, 0x76, - 0xb1, 0x48, 0x9a, 0x5d, 0xe9, 0x72, 0x11, 0x4e, 0x22, 0xb4, 0x37, 0x2c, 0x19, 0x85, 0x52, 0xd1, - 0x34, 0x91, 0xa1, 0xf9, 0x24, 0x96, 0x91, 0xbb, 0x86, 0xc5, 0x0e, 0xe0, 0xb6, 0xf6, 0x24, 0x65, - 0x47, 0xaa, 0x2c, 0x14, 0xde, 0x5b, 0xc9, 0xd7, 0x74, 0xe5, 0xfc, 0xb4, 0xd4, 0xd2, 0xbd, 0x81, - 0xf5, 0x69, 0x83, 0xb9, 0xb1, 0x0b, 0x6f, 0xdd, 0xa0, 0xf6, 0x9d, 0x9a, 0x20, 0xf7, 0x61, 0x6d, - 0xbc, 0x48, 0xc6, 0xd1, 0x4c, 0xaa, 0x42, 0xcc, 0x32, 0x4a, 0x5c, 0x4c, 0x24, 0x68, 0x73, 0xbb, - 0x50, 0xfe, 0x87, 0xd0, 0x3f, 0x96, 0x32, 0xe7, 0x52, 0x65, 0x69, 0xa2, 0x83, 0xb6, 0xa2, 0x43, - 0x9b, 0xb0, 0x63, 0x28, 0xff, 0x8f, 0xc0, 0xc3, 0x6c, 0xfd, 0x89, 0x28, 0x82, 0x8b, 0xef, 0x92, - 0xcd, 0x7f, 0x08, 0xdd, 0x4c, 0x9b, 0x89, 0x49, 0xb0, 0xfb, 0xe4, 0xe3, 0x8c, 0xe9, 0xf0, 0x52, - 0xe8, 0x73, 0x68, 0x1d, 0xce, 0x67, 0xf5, 0x9f, 0x92, 0xda, 0xfa, 0xa7, 0xa4, 0x46, 0xfd, 0x6b, - 0x37, 0xeb, 0x5f, 0xb4, 0xbc, 0xf3, 0x34, 0xff, 0x13, 0x91, 0x87, 0x32, 0x34, 0x45, 0x76, 0xc5, - 0xf0, 0xbf, 0x82, 0x5e, 0x79, 0x33, 0xfb, 0x21, 0xfd, 0x5a, 0x44, 0xa6, 0xb1, 0x1f, 0x36, 0x2c, - 0x45, 0x17, 0xa9, 0x32, 0x09, 0xf7, 0xcb, 0x2b, 0xd5, 0x44, 0x73, 0x65, 0xd3, 0x84, 0x59, 0x56, - 0xde, 0xcf, 0xa0, 0x5f, 0x26, 0xd5, 0x2f, 0x64, 0x21, 0xc8, 0xd8, 0xe2, 0x48, 0x26, 0x35, 0x43, - 0x74, 0x35, 0x63, 0xac, 0xde, 0xd0, 0xee, 0xf5, 0xb7, 0xc1, 0x31, 0x96, 0xcc, 0xa0, 0x1d, 0xa4, - 0xa1, 0x7e, 0x40, 0x1d, 0x4e, 0x63, 0x84, 0x63, 0xa6, 0xa6, 0x65, 0xf0, 0x9c, 0xa9, 0xa9, 0xff, - 0xd7, 0x36, 0xac, 0x3d, 0x11, 0xc1, 0xe5, 0x3c, 0x2b, 0xa3, 0x57, 0xad, 0x32, 0xb2, 0x1a, 0x95, - 0x51, 0xbd, 0x0a, 0xb2, 0x1b, 0x55, 0x50, 0x63, 0x43, 0xad, 0x66, 0xc4, 0x7b, 0x1b, 0xba, 0xf3, - 0x24, 0x5a, 0x94, 0xaf, 0xce, 0xe3, 0x0e, 0x92, 0x63, 0xc5, 0x36, 0xa1, 0x87, 0x0f, 0x33, 0x4a, - 0xa8, 0x1e, 0x22, 0x40, 0x3c, 0x5e, 0x67, 0xe1, 0x4b, 0x17, 0x41, 0x20, 0x95, 0xc2, 0xbc, 0xc5, - 0xe4, 0xd4, 0x9e, 0xe6, 0x7c, 0x29, 0xaf, 0xc9, 0x11, 0xc8, 0x20, 0x97, 0xc5, 0xa4, 0xaa, 0x6d, - 0x3c, 0xcd, 0x41, 0xf1, 0x7b, 0xb0, 0xa6, 0xa4, 0x52, 0x51, 0x9a, 0x4c, 0x28, 0x72, 0x98, 0x12, - 0xb4, 0x6f, 0x98, 0x63, 0xe4, 0xe1, 0x85, 0x8b, 0x24, 0x4d, 0xae, 0x67, 0xe9, 0x5c, 0x99, 0x60, - 0x50, 0x31, 0xfc, 0x01, 0xac, 0x97, 0xd8, 0x68, 0x73, 0xf6, 0x0b, 0x58, 0x1b, 0x2d, 0x32, 0xfa, - 0x99, 0xe0, 0x5b, 0x63, 0x7d, 0x0d, 0x48, 0xbb, 0x01, 0x64, 0x0d, 0x92, 0x16, 0xb5, 0x6c, 0x4a, - 0x48, 0x30, 0xfa, 0xa7, 0xf9, 0x4c, 0x14, 0x25, 0x54, 0x9a, 0xda, 0xf9, 0x27, 0x0b, 0xda, 0xf8, - 0x1a, 0xb0, 0xc0, 0xfc, 0x7d, 0x29, 0xf2, 0xe2, 0x4c, 0x8a, 0x82, 0x35, 0x2c, 0x7f, 0xa3, 0x41, - 0xf9, 0xb7, 0x1e, 0x5b, 0x6c, 0x5b, 0xff, 0x32, 0x51, 0xfe, 0xe0, 0xb2, 0x56, 0xbe, 0x29, 0x7a, - 0x73, 0xab, 0xfa, 0x5b, 0xa4, 0xff, 0x45, 0x1a, 0x25, 0x4f, 0x75, 0xbb, 0x9e, 0xad, 0xbe, 0xc1, - 0xd5, 0x19, 0xec, 0x13, 0x70, 0xf6, 0x15, 0x3e, 0xf6, 0x57, 0x55, 0x29, 0x96, 0xd4, 0xfd, 0x80, - 0x7f, 0x6b, 0xe7, 0x1f, 0x5b, 0xd0, 0xfe, 0x4a, 0xe6, 0x29, 0xfb, 0x31, 0x74, 0x4d, 0x33, 0x8e, - 0xd5, 0x9a, 0x6e, 0x1b, 0x94, 0x4c, 0xac, 0x74, 0xe9, 0x68, 0x95, 0x81, 0x0e, 0x47, 0x55, 0x0d, - 0xcc, 0xaa, 0x5e, 0xe1, 0x2b, 0x9b, 0xfa, 0x1c, 0x06, 0x27, 0x45, 0x2e, 0xc5, 0xac, 0xa6, 0xde, - 0x04, 0xea, 0xa6, 0x82, 0x9a, 0xf0, 0xfa, 0x18, 0x1c, 0xed, 0x51, 0x57, 0x26, 0xac, 0xd6, 0xc6, - 0xa4, 0xfc, 0x00, 0x7a, 0x27, 0x17, 0xe9, 0x3c, 0x0e, 0x4f, 0x64, 0x7e, 0x25, 0x59, 0xad, 0x21, - 0xbe, 0x51, 0x1b, 0xfb, 0xb7, 0xd8, 0x16, 0x80, 0x76, 0x1a, 0xa7, 0x51, 0xa8, 0x58, 0x17, 0x65, - 0x87, 0xf3, 0x99, 0xfe, 0x68, 0xcd, 0x9b, 0x68, 0xcd, 0x9a, 0x63, 0x7d, 0x93, 0xe6, 0x67, 0xb0, - 0xf6, 0x94, 0x02, 0xcf, 0x51, 0xbe, 0x7b, 0x96, 0xe6, 0x05, 0x5b, 0x6d, 0x8a, 0x6f, 0xac, 0x32, - 0xfc, 0x5b, 0xec, 0x31, 0xb8, 0xe3, 0xfc, 0x5a, 0xeb, 0x7f, 0xcf, 0xc4, 0xa3, 0x6a, 0xbd, 0x1b, - 0x4e, 0xb9, 0xf3, 0x0f, 0x2d, 0x70, 0x7e, 0x9e, 0xe6, 0x97, 0x32, 0x67, 0x0f, 0xc1, 0xa1, 0x26, - 0x86, 0x31, 0xa3, 0x65, 0x43, 0xe3, 0xa6, 0x85, 0xde, 0x07, 0x8f, 0x40, 0x19, 0x0b, 0x75, 0xa9, - 0xaf, 0x8a, 0x7e, 0x39, 0xd7, 0xb8, 0xe8, 0x4c, 0x95, 0xee, 0x75, 0x5d, 0x5f, 0xd4, 0xb2, 0xa7, - 0xd3, 0xe8, 0x2c, 0x6c, 0x74, 0x75, 0x9b, 0xe0, 0x04, 0x4d, 0xf3, 0xb1, 0xc5, 0x3e, 0x82, 0xf6, - 0x89, 0x3e, 0x29, 0x2a, 0x55, 0xbf, 0x23, 0x6e, 0xac, 0x97, 0x8c, 0xe5, 0x97, 0x1f, 0x81, 0xa3, - 0xd3, 0x18, 0x7d, 0xcc, 0x46, 0x6e, 0xbe, 0x31, 0xa8, 0xb3, 0xcc, 0x84, 0x4f, 0xc1, 0xd1, 0xcf, - 0x5c, 0x4f, 0x68, 0xb8, 0xc3, 0x0d, 0x56, 0x67, 0x95, 0xc6, 0xcc, 0x3e, 0x02, 0x47, 0xfb, 0x01, - 0x3d, 0xa5, 0xe1, 0x13, 0xf4, 0x41, 0xb5, 0x17, 0xd6, 0x06, 0xcc, 0x65, 0x20, 0xa3, 0x5a, 0xa2, - 0xc3, 0xca, 0xc3, 0xdd, 0xf0, 0x0a, 0x3f, 0x87, 0xb5, 0x46, 0x52, 0xc4, 0x86, 0x04, 0xf8, 0x0d, - 0x79, 0xd2, 0xea, 0xe4, 0x27, 0x83, 0x7f, 0xf9, 0xe6, 0x9e, 0xf5, 0xaf, 0xdf, 0xdc, 0xb3, 0xfe, - 0xfd, 0x9b, 0x7b, 0xd6, 0xaf, 0xfe, 0xe3, 0xde, 0xad, 0x33, 0x87, 0xfe, 0xf3, 0xe2, 0xb3, 0xff, - 0x0d, 0x00, 0x00, 0xff, 0xff, 0xe6, 0xa6, 0xd7, 0x8c, 0xbd, 0x21, 0x00, 0x00, + // 3644 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x5a, 0xcd, 0x8f, 0x24, 0x47, + 0x56, 0x9f, 0xac, 0x8f, 0xac, 0xcc, 0x57, 0xd5, 0x3d, 0xe5, 0xf0, 0xec, 0xb8, 0xdc, 0xde, 0x9d, + 0x69, 0xa7, 0x3f, 0xa6, 0x3d, 0x5e, 0xf7, 0x8c, 0xdb, 0x0b, 0xac, 0x17, 0x71, 0xe8, 0x99, 0xae, + 0x19, 0xda, 0xee, 0x2f, 0xa2, 0xaa, 0x67, 0x59, 0x1f, 0x28, 0x45, 0x67, 0x46, 0x57, 0xe7, 0x76, + 0x56, 0x66, 0x92, 0x91, 0xd5, 0x54, 0xfb, 0xc6, 0x01, 0x24, 0x24, 0x6e, 0x5c, 0x56, 0x08, 0x71, + 0xe0, 0x88, 0x84, 0x38, 0x21, 0xed, 0x19, 0x09, 0x89, 0x23, 0xe2, 0x2f, 0x40, 0x86, 0x23, 0x67, + 0x24, 0x6e, 0xe8, 0xbd, 0x88, 0xac, 0xcc, 0xac, 0xe9, 0x19, 0xaf, 0x91, 0x7c, 0xaa, 0x78, 0x1f, + 0xf1, 0xf5, 0x8b, 0x17, 0xef, 0xbd, 0x78, 0x59, 0xe0, 0xa4, 0x67, 0xdb, 0x69, 0x96, 0xe4, 0x09, + 0x6b, 0xa4, 0x67, 0x1b, 0xae, 0x48, 0x43, 0x4d, 0x6e, 0x3c, 0x98, 0x86, 0xf9, 0xc5, 0xfc, 0x6c, + 0xdb, 0x4f, 0x66, 0x8f, 0x82, 0x69, 0x26, 0xd2, 0x8b, 0x4f, 0xc2, 0xe4, 0xd1, 0x99, 0x08, 0xa6, + 0x32, 0x7b, 0x94, 0x9e, 0x3d, 0x2a, 0xfa, 0x79, 0x1b, 0xd0, 0x3a, 0x08, 0x55, 0xce, 0x18, 0xb4, + 0xe6, 0x61, 0xa0, 0x06, 0xd6, 0x66, 0x73, 0xcb, 0xe6, 0xd4, 0xf6, 0x0e, 0xc1, 0x1d, 0x0b, 0x75, + 0xf9, 0x42, 0x44, 0x73, 0xc9, 0xfa, 0xd0, 0xbc, 0x12, 0xd1, 0xc0, 0xda, 0xb4, 0xb6, 0x7a, 0x1c, + 0x9b, 0x6c, 0x1b, 0x9c, 0x2b, 0x11, 0x4d, 0xf2, 0xeb, 0x54, 0x0e, 0x1a, 0x9b, 0xd6, 0xd6, 0xfa, + 0xce, 0x9b, 0xdb, 0xe9, 0xd9, 0xf6, 0x49, 0xa2, 0xf2, 0x30, 0x9e, 0x6e, 0xbf, 0x10, 0xd1, 0xf8, + 0x3a, 0x95, 0xbc, 0x73, 0xa5, 0x1b, 0xde, 0x31, 0x74, 0x47, 0x99, 0xff, 0x6c, 0x1e, 0xfb, 0x79, + 0x98, 0xc4, 0x38, 0x63, 0x2c, 0x66, 0x92, 0x46, 0x74, 0x39, 0xb5, 0x91, 0x27, 0xb2, 0xa9, 0x1a, + 0x34, 0x37, 0x9b, 0xc8, 0xc3, 0x36, 0x1b, 0x40, 0x27, 0x54, 0x4f, 0x93, 0x79, 0x9c, 0x0f, 0x5a, + 0x9b, 0xd6, 0x96, 0xc3, 0x0b, 0xd2, 0xfb, 0x8b, 0x26, 0xb4, 0xff, 0x60, 0x2e, 0xb3, 0x6b, 0xea, + 0x97, 0xe7, 0x59, 0x31, 0x16, 0xb6, 0xd9, 0x1d, 0x68, 0x47, 0x22, 0x9e, 0xaa, 0x41, 0x83, 0x06, + 0xd3, 0x04, 0x7b, 0x07, 0x5c, 0x71, 0x9e, 0xcb, 0x6c, 0x32, 0x0f, 0x83, 0x41, 0x73, 0xd3, 0xda, + 0xb2, 0xb9, 0x43, 0x8c, 0xd3, 0x30, 0x60, 0x6f, 0x83, 0x13, 0x24, 0x13, 0xbf, 0x3a, 0x57, 0x90, + 0xd0, 0x5c, 0xec, 0x3d, 0x70, 0xe6, 0x61, 0x30, 0x89, 0x42, 0x95, 0x0f, 0xda, 0x9b, 0xd6, 0x56, + 0x77, 0xc7, 0xc1, 0xcd, 0x22, 0x76, 0xbc, 0x33, 0x0f, 0x03, 0x02, 0xf1, 0x21, 0x38, 0x2a, 0xf3, + 0x27, 0xe7, 0xf3, 0xd8, 0x1f, 0xd8, 0xa4, 0x74, 0x1b, 0x95, 0x2a, 0xbb, 0xe6, 0x1d, 0xa5, 0x09, + 0xdc, 0x56, 0x26, 0xaf, 0x64, 0xa6, 0xe4, 0xa0, 0xa3, 0xa7, 0x32, 0x24, 0x7b, 0x0c, 0xdd, 0x73, + 0xe1, 0xcb, 0x7c, 0x92, 0x8a, 0x4c, 0xcc, 0x06, 0x4e, 0x39, 0xd0, 0x33, 0x64, 0x9f, 0x20, 0x57, + 0x71, 0x38, 0x5f, 0x12, 0xec, 0x33, 0x58, 0x23, 0x4a, 0x4d, 0xce, 0xc3, 0x28, 0x97, 0xd9, 0xc0, + 0xa5, 0x3e, 0xeb, 0xd4, 0x87, 0x38, 0xe3, 0x4c, 0x4a, 0xde, 0xd3, 0x4a, 0x9a, 0xc3, 0x7e, 0x04, + 0x20, 0x17, 0xa9, 0x88, 0x83, 0x89, 0x88, 0xa2, 0x01, 0xd0, 0x1a, 0x5c, 0xcd, 0xd9, 0x8d, 0x22, + 0xf6, 0x16, 0xae, 0x4f, 0x04, 0x93, 0x5c, 0x0d, 0xd6, 0x36, 0xad, 0xad, 0x16, 0xb7, 0x91, 0x1c, + 0x2b, 0xc4, 0xd5, 0x17, 0xfe, 0x85, 0x1c, 0xac, 0x6f, 0x5a, 0x5b, 0x6d, 0xae, 0x09, 0x6f, 0x07, + 0x5c, 0xb2, 0x13, 0xc2, 0xe1, 0x03, 0xb0, 0xaf, 0x90, 0xd0, 0xe6, 0xd4, 0xdd, 0x59, 0xc3, 0x85, + 0x2c, 0x4d, 0x89, 0x1b, 0xa1, 0x77, 0x0f, 0x9c, 0x03, 0x11, 0x4f, 0x0b, 0xfb, 0xc3, 0x03, 0xa2, + 0x0e, 0x2e, 0xa7, 0xb6, 0xf7, 0xab, 0x06, 0xd8, 0x5c, 0xaa, 0x79, 0x94, 0xb3, 0x07, 0x00, 0x08, + 0xff, 0x4c, 0xe4, 0x59, 0xb8, 0x30, 0xa3, 0x96, 0x07, 0xe0, 0xce, 0xc3, 0xe0, 0x90, 0x44, 0xec, + 0x31, 0xf4, 0x68, 0xf4, 0x42, 0xb5, 0x51, 0x2e, 0x60, 0xb9, 0x3e, 0xde, 0x25, 0x15, 0xd3, 0xe3, + 0x2e, 0xd8, 0x74, 0xe2, 0xda, 0xea, 0xd6, 0xb8, 0xa1, 0xd8, 0x07, 0xb0, 0x1e, 0xc6, 0x39, 0x9e, + 0x88, 0x9f, 0x4f, 0x02, 0xa9, 0x0a, 0x93, 0x58, 0x5b, 0x72, 0xf7, 0xa4, 0xca, 0xd9, 0xa7, 0xa0, + 0x61, 0x2d, 0x26, 0x6c, 0xd3, 0x84, 0xeb, 0xcb, 0xe3, 0x52, 0x7a, 0x46, 0xd2, 0x31, 0x33, 0x7e, + 0x02, 0x5d, 0xdc, 0x5f, 0xd1, 0xc3, 0xa6, 0x1e, 0x3d, 0xda, 0x8d, 0x81, 0x83, 0x03, 0x2a, 0x18, + 0x75, 0x84, 0x06, 0xcd, 0x4e, 0x9b, 0x09, 0xb5, 0xbd, 0x21, 0xb4, 0x8f, 0xb3, 0x40, 0x66, 0x37, + 0x5a, 0x3e, 0x83, 0x56, 0x20, 0x95, 0x4f, 0x97, 0xd2, 0xe1, 0xd4, 0x2e, 0x6f, 0x43, 0xb3, 0x72, + 0x1b, 0xbc, 0xbf, 0xb5, 0xa0, 0x3b, 0x4a, 0xb2, 0xfc, 0x50, 0x2a, 0x25, 0xa6, 0x92, 0xdd, 0x87, + 0x76, 0x82, 0xc3, 0x1a, 0x84, 0x5d, 0x5c, 0x13, 0xcd, 0xc3, 0x35, 0x7f, 0xe5, 0x1c, 0x1a, 0xaf, + 0x3e, 0x07, 0xb4, 0x12, 0xba, 0x47, 0x4d, 0x63, 0x25, 0x74, 0x8b, 0xee, 0x82, 0x9d, 0x9c, 0x9f, + 0x2b, 0xa9, 0xb1, 0x6c, 0x73, 0x43, 0xbd, 0xd2, 0xd8, 0xbc, 0xdf, 0x02, 0xc0, 0xf5, 0x7d, 0x47, + 0x2b, 0xf0, 0x2e, 0xa0, 0xcb, 0xc5, 0x79, 0xfe, 0x34, 0x89, 0x73, 0xb9, 0xc8, 0xd9, 0x3a, 0x34, + 0xc2, 0x80, 0x20, 0xb2, 0x79, 0x23, 0x0c, 0x70, 0x71, 0xd3, 0x2c, 0x99, 0xa7, 0x84, 0xd0, 0x1a, + 0xd7, 0x04, 0x41, 0x19, 0x04, 0x19, 0xad, 0x18, 0xa1, 0x0c, 0x82, 0x8c, 0xdd, 0x87, 0xae, 0x8a, + 0x45, 0xaa, 0x2e, 0x92, 0x1c, 0x17, 0xd7, 0xa2, 0xc5, 0x41, 0xc1, 0x1a, 0x2b, 0xef, 0x5f, 0x2c, + 0xb0, 0x0f, 0xe5, 0xec, 0x4c, 0x66, 0x2f, 0xcd, 0xf2, 0x36, 0x38, 0x34, 0xf0, 0x24, 0x0c, 0xcc, + 0x44, 0x1d, 0xa2, 0xf7, 0x83, 0x1b, 0xa7, 0xba, 0x0b, 0x76, 0x24, 0x05, 0x82, 0xaf, 0xed, 0xcc, + 0x50, 0x88, 0x8d, 0x98, 0x4d, 0x02, 0x29, 0x02, 0x72, 0x3c, 0x0e, 0xb7, 0xc5, 0x6c, 0x4f, 0x8a, + 0x00, 0xd7, 0x16, 0x09, 0x95, 0x4f, 0xe6, 0x69, 0x20, 0x72, 0x49, 0x0e, 0xa7, 0x85, 0x86, 0xa3, + 0xf2, 0x53, 0xe2, 0xb0, 0x87, 0xf0, 0x86, 0x1f, 0xcd, 0x15, 0x7a, 0xbb, 0x30, 0x3e, 0x4f, 0x26, + 0x49, 0x1c, 0x5d, 0x13, 0xbe, 0x0e, 0xbf, 0x6d, 0x04, 0xfb, 0xf1, 0x79, 0x72, 0x1c, 0x47, 0xd7, + 0xde, 0xaf, 0x1b, 0xd0, 0x7e, 0x4e, 0x30, 0x3c, 0x86, 0xce, 0x8c, 0x36, 0x54, 0xdc, 0xde, 0xbb, + 0x88, 0x30, 0xc9, 0xb6, 0xf5, 0x4e, 0xd5, 0x30, 0xce, 0xb3, 0x6b, 0x5e, 0xa8, 0x61, 0x8f, 0x5c, + 0x9c, 0x45, 0x32, 0x57, 0xc6, 0x22, 0x2a, 0x3d, 0xc6, 0x5a, 0x60, 0x7a, 0x18, 0xb5, 0x55, 0x58, + 0x9b, 0xab, 0xb0, 0xb2, 0x0d, 0x70, 0xfc, 0x0b, 0xe9, 0x5f, 0xaa, 0xf9, 0xcc, 0x80, 0xbe, 0xa4, + 0x37, 0x9e, 0x41, 0xaf, 0xba, 0x0e, 0x8c, 0x4c, 0x97, 0xf2, 0x9a, 0x80, 0x6f, 0x71, 0x6c, 0xb2, + 0x4d, 0x68, 0xd3, 0x0d, 0x27, 0xd8, 0xbb, 0x3b, 0x80, 0xcb, 0xd1, 0x5d, 0xb8, 0x16, 0xfc, 0xac, + 0xf1, 0x53, 0x0b, 0xc7, 0xa9, 0xae, 0xae, 0x3a, 0x8e, 0xfb, 0xea, 0x71, 0x74, 0x97, 0xca, 0x38, + 0xde, 0xff, 0x36, 0xa0, 0xf7, 0x95, 0xcc, 0x92, 0x93, 0x2c, 0x49, 0x13, 0x25, 0x22, 0xb6, 0x5b, + 0xdf, 0x9d, 0x46, 0x71, 0x13, 0x3b, 0x57, 0xd5, 0xb6, 0x47, 0xcb, 0xed, 0x6a, 0x74, 0xaa, 0xfb, + 0xf7, 0xc0, 0xd6, 0xe8, 0xde, 0xb0, 0x05, 0x23, 0x41, 0x1d, 0x8d, 0x27, 0xe1, 0x57, 0x5f, 0x9e, + 0x91, 0xb0, 0x7b, 0x00, 0x33, 0xb1, 0x38, 0x90, 0x42, 0xc9, 0xfd, 0xa0, 0x30, 0xdf, 0x92, 0x83, + 0x38, 0xcf, 0xc4, 0x62, 0xbc, 0x88, 0xc7, 0x8a, 0xac, 0xab, 0xc5, 0x97, 0x34, 0xfb, 0x21, 0xb8, + 0x33, 0xb1, 0xc0, 0x7b, 0xb4, 0x1f, 0x18, 0xeb, 0x2a, 0x19, 0xec, 0x5d, 0x68, 0xe6, 0x8b, 0x98, + 0x9c, 0x12, 0x46, 0x27, 0x4c, 0x3d, 0xc6, 0x8b, 0xd8, 0xdc, 0x38, 0x8e, 0xb2, 0x02, 0x50, 0xa7, + 0x04, 0xb4, 0x0f, 0x4d, 0x3f, 0x0c, 0x28, 0x3c, 0xb9, 0x1c, 0x9b, 0x1b, 0xbf, 0x07, 0xb7, 0x57, + 0x70, 0xa8, 0x9e, 0xc3, 0x9a, 0xee, 0x76, 0xa7, 0x7a, 0x0e, 0xad, 0x2a, 0xf6, 0xbf, 0x6e, 0xc2, + 0x6d, 0x63, 0x0c, 0x17, 0x61, 0x3a, 0xca, 0xd1, 0xec, 0x07, 0xd0, 0x21, 0x6f, 0x23, 0x33, 0x63, + 0x13, 0x05, 0xc9, 0x7e, 0x07, 0x6c, 0xba, 0x81, 0x85, 0x9d, 0xde, 0x2f, 0x51, 0x5d, 0x76, 0xd7, + 0x76, 0x6b, 0x8e, 0xc4, 0xa8, 0xb3, 0x9f, 0x40, 0xfb, 0x6b, 0x99, 0x25, 0xda, 0x7b, 0x76, 0x77, + 0xee, 0xdd, 0xd4, 0x0f, 0xcf, 0xd6, 0x74, 0xd3, 0xca, 0xdf, 0x23, 0xf8, 0xef, 0xa3, 0xbf, 0x9c, + 0x25, 0x57, 0x32, 0x18, 0x74, 0x68, 0x45, 0x55, 0xfb, 0x28, 0x44, 0x05, 0xda, 0x4e, 0x89, 0xf6, + 0x1e, 0x74, 0x2b, 0xdb, 0xbb, 0x01, 0xe9, 0xfb, 0x75, 0x8b, 0x77, 0x97, 0x17, 0xb9, 0x7a, 0x71, + 0xf6, 0x00, 0xca, 0xcd, 0xfe, 0x7f, 0xaf, 0x9f, 0xf7, 0xa7, 0x16, 0xdc, 0x7e, 0x9a, 0xc4, 0xb1, + 0xa4, 0xc4, 0x48, 0x1f, 0x5d, 0x69, 0xf6, 0xd6, 0x2b, 0xcd, 0xfe, 0x23, 0x68, 0x2b, 0x54, 0x36, + 0xa3, 0xbf, 0x79, 0xc3, 0x59, 0x70, 0xad, 0x81, 0x6e, 0x66, 0x26, 0x16, 0x93, 0x54, 0xc6, 0x41, + 0x18, 0x4f, 0x0b, 0x37, 0x33, 0x13, 0x8b, 0x13, 0xcd, 0xf1, 0xfe, 0xce, 0x02, 0x5b, 0xdf, 0x98, + 0x9a, 0xb7, 0xb6, 0xea, 0xde, 0xfa, 0x87, 0xe0, 0xa6, 0x99, 0x0c, 0x42, 0xbf, 0x98, 0xd5, 0xe5, + 0x25, 0x03, 0x8d, 0xf3, 0x3c, 0xc9, 0x7c, 0x49, 0xc3, 0x3b, 0x5c, 0x13, 0xc8, 0x55, 0xa9, 0xf0, + 0x75, 0x72, 0xd7, 0xe4, 0x9a, 0x40, 0x1f, 0xaf, 0x0f, 0x87, 0x0e, 0xc5, 0xe1, 0x86, 0xc2, 0xac, + 0x94, 0xe2, 0x1f, 0x79, 0x68, 0x97, 0x44, 0x0e, 0x32, 0xc8, 0x35, 0xff, 0x7d, 0x03, 0x7a, 0x7b, + 0x61, 0x26, 0xfd, 0x5c, 0x06, 0xc3, 0x60, 0x4a, 0xa3, 0xc8, 0x38, 0x0f, 0xf3, 0x6b, 0x13, 0x6c, + 0x0c, 0xb5, 0xcc, 0x05, 0x1a, 0xf5, 0x2c, 0x58, 0x9f, 0x45, 0x93, 0x12, 0x77, 0x4d, 0xb0, 0x1d, + 0x00, 0x9d, 0x25, 0x51, 0xf2, 0xde, 0x7a, 0x75, 0xf2, 0xee, 0x92, 0x1a, 0x36, 0x11, 0x20, 0xdd, + 0x27, 0xd4, 0x81, 0xc8, 0xa6, 0xcc, 0x7e, 0x8e, 0x86, 0x4c, 0xc9, 0xc5, 0x99, 0x8c, 0xc8, 0x50, + 0x29, 0xb9, 0x38, 0x93, 0xd1, 0x32, 0xa5, 0xeb, 0xe8, 0xe5, 0x60, 0x9b, 0xbd, 0x07, 0x8d, 0x24, + 0xa5, 0xcd, 0x9b, 0x09, 0xab, 0x1b, 0xdb, 0x3e, 0x4e, 0x79, 0x23, 0x49, 0xd1, 0x0a, 0x74, 0xa6, + 0x3a, 0x70, 0x8d, 0x71, 0xa3, 0x77, 0xa1, 0x6c, 0x8a, 0x1b, 0x89, 0x77, 0x17, 0x1a, 0xc7, 0x29, + 0xeb, 0x40, 0x73, 0x34, 0x1c, 0xf7, 0x6f, 0x61, 0x63, 0x6f, 0x78, 0xd0, 0xb7, 0xbc, 0xff, 0x6e, + 0x80, 0x7b, 0x38, 0xcf, 0x05, 0xda, 0x94, 0x7a, 0xdd, 0xa1, 0xbe, 0x0d, 0x8e, 0xca, 0x45, 0x46, + 0x1e, 0x5a, 0xbb, 0x95, 0x0e, 0xd1, 0x63, 0xc5, 0x3e, 0x84, 0xb6, 0x0c, 0xa6, 0xb2, 0xb8, 0xed, + 0xfd, 0xd5, 0x75, 0x72, 0x2d, 0x66, 0x5b, 0x60, 0x2b, 0xff, 0x42, 0xce, 0xc4, 0xa0, 0x55, 0x2a, + 0x8e, 0x88, 0xa3, 0x23, 0x30, 0x37, 0x72, 0xb6, 0x03, 0x3f, 0x08, 0xa7, 0x71, 0x92, 0xc9, 0x49, + 0x18, 0x07, 0x72, 0x31, 0xf1, 0x93, 0xf8, 0x3c, 0x0a, 0xfd, 0xdc, 0x44, 0xf4, 0x37, 0xb5, 0x70, + 0x1f, 0x65, 0x4f, 0x8d, 0x88, 0xbd, 0x0f, 0x6d, 0x3c, 0x1d, 0x65, 0xf2, 0x43, 0xca, 0x28, 0xf1, + 0x20, 0xcc, 0xd0, 0x5a, 0xc8, 0x3e, 0x81, 0x4e, 0x90, 0x25, 0xe9, 0x24, 0x49, 0x09, 0xe7, 0xf5, + 0x9d, 0x3b, 0x74, 0x1f, 0x0a, 0x04, 0xb6, 0xf7, 0xb2, 0x24, 0x3d, 0x4e, 0xb9, 0x1d, 0xd0, 0x2f, + 0x26, 0xfd, 0xa4, 0xae, 0x6d, 0x42, 0x7b, 0x06, 0x17, 0x39, 0x94, 0x1c, 0x7b, 0x8f, 0xc0, 0xd6, + 0x1d, 0x98, 0x03, 0xad, 0xa3, 0xe3, 0xa3, 0xa1, 0x86, 0x76, 0xf7, 0xe0, 0xa0, 0x6f, 0x21, 0x6b, + 0x6f, 0x77, 0xbc, 0xdb, 0x6f, 0x60, 0x6b, 0xfc, 0x8b, 0x93, 0x61, 0xbf, 0xe9, 0xfd, 0x95, 0x05, + 0x4e, 0xe1, 0xbf, 0xd9, 0x47, 0xe8, 0x78, 0xc9, 0xff, 0x9b, 0xeb, 0x4b, 0x8f, 0x96, 0x4a, 0x22, + 0xc6, 0x0b, 0x39, 0x5a, 0x0c, 0x21, 0x51, 0x78, 0x74, 0x22, 0xaa, 0x69, 0x60, 0xb3, 0xf6, 0xe6, + 0xc0, 0x8c, 0x36, 0x89, 0xa5, 0xc9, 0x8c, 0xa8, 0x4d, 0x07, 0x18, 0xc6, 0xbe, 0x44, 0xed, 0xb6, + 0x39, 0x40, 0xa4, 0xc7, 0xca, 0xfb, 0x9b, 0x06, 0x38, 0xcb, 0x68, 0xfc, 0x31, 0xb8, 0xb3, 0x02, + 0x0e, 0xe3, 0x33, 0xd6, 0x6a, 0x18, 0xf1, 0x52, 0xce, 0xee, 0x42, 0xe3, 0xf2, 0xca, 0x1c, 0xa7, + 0x8d, 0x5a, 0x5f, 0xbe, 0xe0, 0x8d, 0xcb, 0xab, 0xd2, 0xe9, 0xb4, 0xbf, 0xd5, 0xe9, 0x3c, 0x80, + 0xdb, 0x7e, 0x24, 0x45, 0x3c, 0x29, 0x7d, 0x86, 0xbe, 0x16, 0xeb, 0xc4, 0x3e, 0x59, 0x3a, 0x0e, + 0xe3, 0x38, 0x3b, 0x65, 0x78, 0xfc, 0x00, 0xda, 0x81, 0x8c, 0x72, 0x51, 0x7d, 0xf3, 0x1d, 0x67, + 0xc2, 0x8f, 0xe4, 0x1e, 0xb2, 0xb9, 0x96, 0xb2, 0x2d, 0x70, 0x8a, 0x54, 0xc1, 0xbc, 0xf4, 0xe8, + 0xf1, 0x50, 0x9c, 0x03, 0x5f, 0x4a, 0x4b, 0x98, 0xa1, 0x02, 0xb3, 0xf7, 0x29, 0x34, 0xbf, 0x7c, + 0x31, 0x32, 0x7b, 0xb5, 0x5e, 0xda, 0x6b, 0x01, 0x76, 0xa3, 0x04, 0xdb, 0xfb, 0x9f, 0x26, 0x74, + 0x8c, 0x6f, 0xc0, 0x75, 0xcf, 0x97, 0x89, 0x2e, 0x36, 0xeb, 0xf1, 0x79, 0xe9, 0x64, 0xaa, 0xf5, + 0x81, 0xe6, 0xb7, 0xd7, 0x07, 0xd8, 0xcf, 0xa0, 0x97, 0x6a, 0x59, 0xd5, 0x2d, 0xbd, 0x55, 0xed, + 0x63, 0x7e, 0xa9, 0x5f, 0x37, 0x2d, 0x09, 0x34, 0x06, 0x7a, 0x52, 0xe5, 0x62, 0x4a, 0x47, 0xd4, + 0xe3, 0x1d, 0xa4, 0xc7, 0x62, 0xfa, 0x0a, 0xe7, 0xf4, 0x1b, 0xf8, 0x18, 0x4c, 0xe8, 0x93, 0x74, + 0xd0, 0x23, 0xbf, 0x81, 0x7e, 0xa9, 0xea, 0x32, 0xd6, 0xea, 0x2e, 0xe3, 0x1d, 0x70, 0xfd, 0x64, + 0x36, 0x0b, 0x49, 0xb6, 0x6e, 0x12, 0x56, 0x62, 0x8c, 0x95, 0xf7, 0xe7, 0x16, 0x74, 0xcc, 0x6e, + 0x59, 0x17, 0x3a, 0x7b, 0xc3, 0x67, 0xbb, 0xa7, 0x07, 0xe8, 0xb5, 0x00, 0xec, 0x27, 0xfb, 0x47, + 0xbb, 0xfc, 0x17, 0x7d, 0x0b, 0xaf, 0xd9, 0xfe, 0xd1, 0xb8, 0xdf, 0x60, 0x2e, 0xb4, 0x9f, 0x1d, + 0x1c, 0xef, 0x8e, 0xfb, 0x4d, 0xbc, 0x67, 0x4f, 0x8e, 0x8f, 0x0f, 0xfa, 0x2d, 0xd6, 0x03, 0x67, + 0x6f, 0x77, 0x3c, 0x1c, 0xef, 0x1f, 0x0e, 0xfb, 0x6d, 0xd4, 0x7d, 0x3e, 0x3c, 0xee, 0xdb, 0xd8, + 0x38, 0xdd, 0xdf, 0xeb, 0x77, 0x50, 0x7e, 0xb2, 0x3b, 0x1a, 0xfd, 0xfc, 0x98, 0xef, 0xf5, 0x1d, + 0x1c, 0x77, 0x34, 0xe6, 0xfb, 0x47, 0xcf, 0xfb, 0x2e, 0xb6, 0x8f, 0x9f, 0x7c, 0x31, 0x7c, 0x3a, + 0xee, 0x83, 0xf7, 0x29, 0x74, 0x2b, 0x08, 0x62, 0x6f, 0x3e, 0x7c, 0xd6, 0xbf, 0x85, 0x53, 0xbe, + 0xd8, 0x3d, 0x38, 0x1d, 0xf6, 0x2d, 0xb6, 0x0e, 0x40, 0xcd, 0xc9, 0xc1, 0xee, 0xd1, 0xf3, 0x7e, + 0xc3, 0xfb, 0x6d, 0x70, 0x4e, 0xc3, 0xe0, 0x49, 0x94, 0xf8, 0x97, 0x68, 0x18, 0x67, 0x42, 0x49, + 0x13, 0xea, 0xa9, 0x8d, 0xb1, 0x88, 0x8c, 0x52, 0x99, 0xb3, 0x37, 0x94, 0x77, 0x04, 0x9d, 0xd3, + 0x30, 0x38, 0x11, 0xfe, 0x25, 0xfa, 0x9c, 0x33, 0xec, 0x3f, 0x51, 0xe1, 0xd7, 0xd2, 0xb8, 0x61, + 0x97, 0x38, 0xa3, 0xf0, 0x6b, 0xc9, 0xde, 0x07, 0x9b, 0x88, 0x22, 0x29, 0x23, 0x5b, 0x2e, 0xe6, + 0xe4, 0x46, 0xe6, 0xfd, 0xa5, 0xb5, 0x5c, 0x3b, 0xd5, 0x0b, 0xee, 0x43, 0x2b, 0x15, 0xfe, 0xa5, + 0x71, 0x34, 0x5d, 0xd3, 0x07, 0xe7, 0xe3, 0x24, 0x60, 0x0f, 0xc0, 0x31, 0x06, 0x52, 0x0c, 0xdc, + 0xad, 0x58, 0x12, 0x5f, 0x0a, 0xeb, 0x47, 0xd7, 0xac, 0x1f, 0x1d, 0x6e, 0x4f, 0xa5, 0x51, 0x48, + 0x4f, 0xbf, 0x26, 0x3a, 0x24, 0x4d, 0x79, 0x3f, 0x01, 0x28, 0x8b, 0x31, 0x37, 0xbc, 0x1c, 0xee, + 0x40, 0x5b, 0x44, 0xa1, 0x41, 0xc5, 0xe5, 0x9a, 0xf0, 0x8e, 0xa0, 0x5b, 0x29, 0xe1, 0xa0, 0x3d, + 0x89, 0x28, 0x9a, 0x5c, 0xca, 0x6b, 0x45, 0x7d, 0x1d, 0xde, 0x11, 0x51, 0xf4, 0xa5, 0xbc, 0x56, + 0xe8, 0xfc, 0x75, 0xf5, 0xa7, 0xb1, 0x52, 0x4e, 0xa0, 0xae, 0x5c, 0x0b, 0xbd, 0x1f, 0x83, 0xad, + 0x6b, 0x0c, 0x15, 0x73, 0xb6, 0x5e, 0x19, 0x32, 0x3f, 0x37, 0x6b, 0xa6, 0x8a, 0x04, 0xfb, 0xd8, + 0x54, 0x99, 0x94, 0xae, 0x69, 0x59, 0x65, 0x1a, 0xa9, 0x95, 0x4c, 0x81, 0x89, 0x94, 0xbd, 0x3d, + 0x70, 0x5e, 0x5b, 0xb7, 0x33, 0x00, 0x34, 0x4a, 0x00, 0x6e, 0xa8, 0xe4, 0x79, 0xbf, 0x04, 0x28, + 0xab, 0x51, 0xe6, 0x76, 0xe9, 0x51, 0xf0, 0x76, 0x3d, 0xc4, 0x27, 0x5f, 0x18, 0x05, 0x99, 0x8c, + 0x6b, 0xbb, 0x2e, 0xeb, 0x57, 0x4b, 0x39, 0xdb, 0x84, 0x16, 0x15, 0xd9, 0x9a, 0xa5, 0xf7, 0x5b, + 0x56, 0xd8, 0x48, 0xe2, 0x2d, 0x60, 0x4d, 0x47, 0x62, 0x2e, 0xff, 0x78, 0x2e, 0xd5, 0x6b, 0xf3, + 0xbb, 0x7b, 0x00, 0x4b, 0x5f, 0x5d, 0x94, 0x0b, 0x2b, 0x1c, 0x34, 0x82, 0xf3, 0x50, 0x46, 0x41, + 0xb1, 0x1b, 0x43, 0xe1, 0x21, 0xeb, 0x08, 0xdd, 0xd2, 0x35, 0x15, 0x22, 0xbc, 0xdf, 0x85, 0x5e, + 0x31, 0x33, 0x15, 0x2d, 0x3e, 0x5e, 0x66, 0x09, 0x1a, 0x63, 0xfd, 0x56, 0xd2, 0x2a, 0x47, 0x49, + 0x20, 0x9f, 0x34, 0x06, 0x56, 0x91, 0x28, 0x78, 0xff, 0xde, 0x2c, 0x7a, 0x9b, 0x37, 0x7c, 0x2d, + 0xf7, 0xb4, 0x56, 0x73, 0xcf, 0x7a, 0x1e, 0xd7, 0xf8, 0x8d, 0xf2, 0xb8, 0x9f, 0x82, 0x1b, 0x50, + 0x32, 0x13, 0x5e, 0x15, 0x7e, 0x79, 0x63, 0x35, 0x71, 0x31, 0xe9, 0x4e, 0x78, 0x25, 0x79, 0xa9, + 0x8c, 0x6b, 0xc9, 0x93, 0x4b, 0x19, 0x87, 0x5f, 0x53, 0x91, 0x02, 0xf7, 0x5c, 0x32, 0xca, 0x8a, + 0x8f, 0xce, 0x69, 0x4c, 0xc5, 0xa7, 0x28, 0x5e, 0xd9, 0x65, 0xf1, 0x0a, 0xf1, 0x9c, 0xa7, 0x4a, + 0x66, 0x79, 0x91, 0x05, 0x6b, 0x6a, 0x99, 0x30, 0xba, 0x46, 0x17, 0x13, 0xc6, 0x77, 0xa1, 0x17, + 0x27, 0xf1, 0x24, 0x9e, 0x47, 0x11, 0xe6, 0xe9, 0xa6, 0x4e, 0xd9, 0x8d, 0x93, 0xf8, 0xc8, 0xb0, + 0xd8, 0x43, 0x78, 0xa3, 0xaa, 0xa2, 0xed, 0xb9, 0xab, 0xcb, 0x1c, 0x15, 0x3d, 0xb2, 0xfa, 0x2d, + 0xe8, 0x27, 0x67, 0xbf, 0x94, 0x7e, 0x4e, 0x88, 0x4d, 0xc8, 0x90, 0x7b, 0x3a, 0x3a, 0x6b, 0x3e, + 0x42, 0x74, 0x24, 0x66, 0xd2, 0xfb, 0x1c, 0xdc, 0x25, 0x08, 0x95, 0x6c, 0xc8, 0x85, 0xf6, 0xfe, + 0xd1, 0xde, 0xf0, 0x0f, 0xfb, 0x16, 0xba, 0x72, 0x3e, 0x7c, 0x31, 0xe4, 0xa3, 0x61, 0xbf, 0x81, + 0x6e, 0x76, 0x6f, 0x78, 0x30, 0x1c, 0x0f, 0xfb, 0xcd, 0x2f, 0x5a, 0x4e, 0xa7, 0xef, 0x70, 0x47, + 0x2e, 0xd2, 0x28, 0xf4, 0xc3, 0xdc, 0x1b, 0x01, 0x94, 0x89, 0x1b, 0xfa, 0x9b, 0x72, 0x6e, 0x7d, + 0xa2, 0x4e, 0x6e, 0x66, 0xc5, 0x94, 0xd2, 0x98, 0x5a, 0xe3, 0x55, 0x29, 0xa5, 0x96, 0x7b, 0xa7, + 0xe0, 0x1c, 0x8a, 0xf4, 0xa5, 0x27, 0x58, 0x6f, 0xf9, 0xd0, 0x9e, 0x9b, 0xb2, 0x93, 0x89, 0xd1, + 0x1f, 0x40, 0xc7, 0xb8, 0x3c, 0x73, 0x6b, 0x6a, 0xee, 0xb0, 0x90, 0x79, 0x7f, 0x66, 0xc1, 0x9d, + 0xc3, 0xe4, 0x4a, 0x2e, 0xd3, 0x94, 0x13, 0x71, 0x1d, 0x25, 0x22, 0xf8, 0x16, 0x43, 0xfc, 0x11, + 0x80, 0x4a, 0xe6, 0x99, 0x2f, 0x27, 0xd3, 0x65, 0xb5, 0xcb, 0xd5, 0x9c, 0xe7, 0xa6, 0xb0, 0x2e, + 0x55, 0x4e, 0xc2, 0xa6, 0xbe, 0x7c, 0x48, 0xa3, 0xe8, 0x07, 0x60, 0xe7, 0x8b, 0xb8, 0x2c, 0xae, + 0xb5, 0x73, 0x7c, 0xff, 0x7a, 0x4f, 0xc1, 0x1d, 0x2f, 0xe8, 0x55, 0x38, 0x57, 0xb5, 0xc0, 0x6b, + 0xbd, 0x26, 0xf0, 0x36, 0x56, 0x02, 0xef, 0x7f, 0x59, 0xd0, 0xad, 0xe4, 0x4f, 0xec, 0x5d, 0x68, + 0xe5, 0x8b, 0xb8, 0x5e, 0x95, 0x2e, 0x26, 0xe1, 0x24, 0x42, 0x7b, 0xc3, 0x27, 0xa3, 0x50, 0x2a, + 0x9c, 0xc6, 0x32, 0x30, 0x43, 0xe2, 0x33, 0x72, 0xd7, 0xb0, 0xd8, 0x01, 0xdc, 0xd6, 0x9e, 0xa4, + 0xa8, 0x48, 0x15, 0x0f, 0x85, 0xf7, 0x56, 0xf2, 0x35, 0xfd, 0x72, 0x7e, 0x5a, 0x68, 0xe9, 0xda, + 0xc0, 0xfa, 0xb4, 0xc6, 0xdc, 0xd8, 0x85, 0x37, 0x6f, 0x50, 0xfb, 0x4e, 0x45, 0x90, 0xfb, 0xb0, + 0x36, 0x5e, 0xc4, 0xe3, 0x70, 0x26, 0x55, 0x2e, 0x66, 0x29, 0x25, 0x2e, 0x26, 0x12, 0xb4, 0x78, + 0x23, 0x57, 0xde, 0x87, 0xd0, 0x3b, 0x91, 0x32, 0xe3, 0x52, 0xa5, 0x49, 0xac, 0x83, 0xb6, 0xa2, + 0x4d, 0x9b, 0xb0, 0x63, 0x28, 0xef, 0x8f, 0xc0, 0xc5, 0x6c, 0xfd, 0x89, 0xc8, 0xfd, 0x8b, 0xef, + 0x92, 0xcd, 0x7f, 0x08, 0x9d, 0x54, 0x9b, 0x89, 0x49, 0xb0, 0x7b, 0xe4, 0xe3, 0x8c, 0xe9, 0xf0, + 0x42, 0xe8, 0x71, 0x68, 0x1e, 0xcd, 0x67, 0xd5, 0x4f, 0x49, 0x2d, 0xfd, 0x29, 0xa9, 0xf6, 0xfe, + 0x6d, 0xd4, 0xdf, 0xbf, 0x68, 0x79, 0xe7, 0x49, 0xf6, 0x27, 0x22, 0x0b, 0x64, 0x60, 0x1e, 0xd9, + 0x25, 0xc3, 0xfb, 0x0a, 0xba, 0xc5, 0xc9, 0xec, 0x07, 0xf4, 0xb5, 0x88, 0x4c, 0x63, 0x3f, 0xa8, + 0x59, 0x8a, 0x7e, 0xa4, 0xca, 0x38, 0xd8, 0x2f, 0x8e, 0x54, 0x13, 0xf5, 0x99, 0x4d, 0x11, 0x66, + 0xf9, 0xf2, 0x7e, 0x06, 0xbd, 0x22, 0xa9, 0x3e, 0x94, 0xb9, 0x20, 0x63, 0x8b, 0x42, 0x19, 0x57, + 0x0c, 0xd1, 0xd1, 0x8c, 0xb1, 0x7a, 0x4d, 0xb9, 0xd7, 0xdb, 0x06, 0xdb, 0x58, 0x32, 0x83, 0x96, + 0x9f, 0x04, 0xfa, 0x02, 0xb5, 0x39, 0xb5, 0x11, 0x8e, 0x99, 0x9a, 0x16, 0xc1, 0x73, 0xa6, 0xa6, + 0xde, 0x5f, 0x37, 0x60, 0xed, 0x89, 0xf0, 0x2f, 0xe7, 0x69, 0x11, 0xbd, 0x2a, 0x2f, 0x23, 0xab, + 0xf6, 0x32, 0xaa, 0xbe, 0x82, 0x1a, 0xb5, 0x57, 0x50, 0x6d, 0x41, 0xcd, 0x7a, 0xc4, 0x7b, 0x0b, + 0x3a, 0xf3, 0x38, 0x5c, 0x14, 0xb7, 0xce, 0xe5, 0x36, 0x92, 0x63, 0xc5, 0x36, 0xa1, 0x8b, 0x17, + 0x33, 0x8c, 0xe9, 0x3d, 0x44, 0x80, 0xb8, 0xbc, 0xca, 0xc2, 0x9b, 0x2e, 0x7c, 0x5f, 0x2a, 0x85, + 0x79, 0x8b, 0xc9, 0xa9, 0x5d, 0xcd, 0xf9, 0x52, 0x5e, 0x93, 0x23, 0x90, 0x7e, 0x26, 0xf3, 0x49, + 0xf9, 0xb6, 0x71, 0x35, 0x07, 0xc5, 0xef, 0xc1, 0x9a, 0x92, 0x4a, 0x85, 0x49, 0x3c, 0xa1, 0xc8, + 0x61, 0x9e, 0xa0, 0x3d, 0xc3, 0x1c, 0x23, 0x0f, 0x0f, 0x5c, 0xc4, 0x49, 0x7c, 0x3d, 0x4b, 0xe6, + 0xca, 0x04, 0x83, 0x92, 0xe1, 0xf5, 0x61, 0xbd, 0xc0, 0x46, 0x9b, 0xb3, 0x97, 0xc3, 0xda, 0x70, + 0x91, 0xd2, 0x67, 0x82, 0x6f, 0x8d, 0xf5, 0x15, 0x20, 0x1b, 0x35, 0x20, 0x2b, 0x90, 0x34, 0xa9, + 0x64, 0x53, 0x40, 0x82, 0xd1, 0x3f, 0xc9, 0x66, 0x22, 0x2f, 0xa0, 0xd2, 0x94, 0xf7, 0x4f, 0x16, + 0xb8, 0x7a, 0x21, 0xb8, 0xb1, 0x0d, 0x70, 0xce, 0xae, 0x73, 0x8a, 0xb0, 0xc6, 0x0f, 0x2f, 0xe9, + 0x1b, 0xeb, 0x32, 0xc6, 0x41, 0xeb, 0x7c, 0x93, 0x1c, 0xf4, 0x3b, 0xe0, 0x6a, 0x27, 0x87, 0x7c, + 0x53, 0xf3, 0x26, 0xc6, 0x69, 0x48, 0x1f, 0x0c, 0x72, 0x99, 0xcd, 0xcc, 0x81, 0x50, 0xbb, 0x0c, + 0xb8, 0xb6, 0xfe, 0x8a, 0xa1, 0x03, 0xee, 0x7d, 0xe8, 0xe2, 0xc4, 0xf8, 0xfa, 0x3c, 0x0f, 0x17, + 0x74, 0x02, 0x3d, 0x0e, 0xc8, 0x3a, 0x21, 0x0e, 0x7a, 0xf8, 0x37, 0xf4, 0xba, 0xab, 0xf9, 0x74, + 0xf5, 0xfb, 0x6f, 0x4b, 0x7f, 0xff, 0xfd, 0x7e, 0x53, 0xe8, 0x9d, 0x7f, 0xb6, 0xa0, 0x85, 0xde, + 0x04, 0x1f, 0xe8, 0xbf, 0x2f, 0x45, 0x96, 0x9f, 0x49, 0x91, 0xb3, 0x9a, 0xe7, 0xd8, 0xa8, 0x51, + 0xde, 0xad, 0xc7, 0x16, 0xdb, 0xd6, 0x5f, 0x76, 0x8a, 0x0f, 0x56, 0x6b, 0x85, 0x4f, 0x22, 0x9f, + 0xb5, 0xaa, 0xbf, 0x45, 0xfa, 0x5f, 0x24, 0x61, 0xfc, 0x54, 0x7f, 0xee, 0x60, 0xab, 0x3e, 0x6c, + 0xb5, 0x07, 0xfb, 0x04, 0xec, 0x7d, 0x85, 0xce, 0xf2, 0x65, 0x55, 0x8a, 0xc5, 0x55, 0x3f, 0xea, + 0xdd, 0xda, 0xf9, 0xc7, 0x26, 0xb4, 0xbe, 0x92, 0x59, 0xc2, 0x7e, 0x0c, 0x1d, 0x53, 0xcc, 0x64, + 0x95, 0xa2, 0xe5, 0x06, 0x25, 0x63, 0x2b, 0x55, 0x4e, 0x9a, 0xa5, 0xaf, 0xc3, 0x79, 0x59, 0x43, + 0x60, 0x65, 0xad, 0xf5, 0xa5, 0x45, 0x7d, 0x0e, 0xfd, 0x51, 0x9e, 0x49, 0x31, 0xab, 0xa8, 0xd7, + 0x81, 0xba, 0xa9, 0x20, 0x41, 0x78, 0x7d, 0x0c, 0xb6, 0x8e, 0x48, 0x2b, 0x1d, 0x56, 0x6b, 0x0b, + 0xa4, 0xfc, 0x00, 0xba, 0xa3, 0x8b, 0x64, 0x1e, 0x05, 0x23, 0x99, 0x5d, 0x49, 0x56, 0xf9, 0xa0, + 0xb0, 0x51, 0x69, 0x7b, 0xb7, 0xd8, 0x16, 0x80, 0x76, 0xba, 0xa7, 0x68, 0x27, 0x1d, 0x94, 0x1d, + 0xcd, 0x67, 0x7a, 0xd0, 0x8a, 0x37, 0xd6, 0x9a, 0x95, 0xc0, 0xf4, 0x3a, 0xcd, 0xcf, 0x60, 0xed, + 0x29, 0xd9, 0xcc, 0x71, 0xb6, 0x7b, 0x96, 0x64, 0x39, 0x5b, 0xfd, 0xa8, 0xb0, 0xb1, 0xca, 0xf0, + 0x6e, 0xb1, 0xc7, 0xe0, 0x8c, 0xb3, 0x6b, 0xad, 0xff, 0x86, 0x89, 0xe7, 0xe5, 0x7c, 0x37, 0xec, + 0x72, 0xe7, 0x1f, 0x9a, 0x60, 0xff, 0x3c, 0xc9, 0x2e, 0x65, 0xc6, 0x1e, 0x82, 0x4d, 0x45, 0x20, + 0x63, 0x46, 0xcb, 0x82, 0xd0, 0x4d, 0x13, 0xbd, 0x0f, 0x2e, 0x81, 0x32, 0x16, 0xea, 0x52, 0x1f, + 0x15, 0xfd, 0xf3, 0x40, 0xe3, 0xa2, 0x33, 0x7d, 0x3a, 0xd7, 0x75, 0x7d, 0x50, 0xcb, 0x9a, 0x58, + 0xad, 0x32, 0xb3, 0xd1, 0xd1, 0x65, 0x96, 0x11, 0x9a, 0xe6, 0x63, 0x8b, 0x7d, 0x04, 0xad, 0x91, + 0xde, 0x29, 0x2a, 0x95, 0xdf, 0x61, 0x37, 0xd6, 0x0b, 0xc6, 0x72, 0xe4, 0x47, 0x60, 0xeb, 0x34, + 0x50, 0x6f, 0xb3, 0xf6, 0xb6, 0xd9, 0xe8, 0x57, 0x59, 0xa6, 0xc3, 0xa7, 0x60, 0xeb, 0x5b, 0xae, + 0x3b, 0xd4, 0xc2, 0xc9, 0x06, 0xab, 0xb2, 0x0a, 0x63, 0x66, 0x1f, 0x81, 0xad, 0xfd, 0xa8, 0xee, + 0x52, 0xf3, 0xa9, 0x7a, 0xa3, 0x3a, 0x8a, 0x69, 0x03, 0xe6, 0xd2, 0x97, 0x61, 0x25, 0x51, 0x64, + 0xc5, 0xe6, 0x6e, 0xb8, 0x85, 0x9f, 0xc3, 0x5a, 0x2d, 0xa9, 0x64, 0x03, 0x02, 0xfc, 0x86, 0x3c, + 0x73, 0xb5, 0xf3, 0x93, 0xfe, 0xbf, 0x7e, 0x73, 0xcf, 0xfa, 0xb7, 0x6f, 0xee, 0x59, 0xff, 0xf1, + 0xcd, 0x3d, 0xeb, 0x57, 0xff, 0x79, 0xef, 0xd6, 0x99, 0x4d, 0xff, 0x5c, 0xf9, 0xec, 0xff, 0x02, + 0x00, 0x00, 0xff, 0xff, 0x60, 0x38, 0xdf, 0xf7, 0xfd, 0x22, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -7852,6 +8028,138 @@ func (m *ExportRequest) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *BackupKey) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *BackupKey) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if len(m.ByteType) > 0 { + dAtA[i] = 0xa + i++ + i = encodeVarintPb(dAtA, i, uint64(len(m.ByteType))) + i += copy(dAtA[i:], m.ByteType) + } + if len(m.Attr) > 0 { + dAtA[i] = 0x12 + i++ + i = encodeVarintPb(dAtA, i, uint64(len(m.Attr))) + i += copy(dAtA[i:], m.Attr) + } + if m.Uid != 0 { + dAtA[i] = 0x18 + i++ + i = encodeVarintPb(dAtA, i, uint64(m.Uid)) + } + if m.StartUid != 0 { + dAtA[i] = 0x20 + i++ + i = encodeVarintPb(dAtA, i, uint64(m.StartUid)) + } + if len(m.Term) > 0 { + dAtA[i] = 0x2a + i++ + i = encodeVarintPb(dAtA, i, uint64(len(m.Term))) + i += copy(dAtA[i:], m.Term) + } + if m.Count != 0 { + dAtA[i] = 0x30 + i++ + i = encodeVarintPb(dAtA, i, uint64(m.Count)) + } + if len(m.BytePrefix) > 0 { + dAtA[i] = 0x3a + i++ + i = encodeVarintPb(dAtA, i, uint64(len(m.BytePrefix))) + i += copy(dAtA[i:], m.BytePrefix) + } + if m.XXX_unrecognized != nil { + i += copy(dAtA[i:], m.XXX_unrecognized) + } + return i, nil +} + +func (m *BackupPostingList) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *BackupPostingList) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if len(m.Uids) > 0 { + dAtA31 := make([]byte, len(m.Uids)*10) + var j30 int + for _, num := range m.Uids { + for num >= 1<<7 { + dAtA31[j30] = uint8(uint64(num)&0x7f | 0x80) + num >>= 7 + j30++ + } + dAtA31[j30] = uint8(num) + j30++ + } + dAtA[i] = 0xa + i++ + i = encodeVarintPb(dAtA, i, uint64(j30)) + i += copy(dAtA[i:], dAtA31[:j30]) + } + if len(m.Postings) > 0 { + for _, msg := range m.Postings { + dAtA[i] = 0x12 + i++ + i = encodeVarintPb(dAtA, i, uint64(msg.Size())) + n, err := msg.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n + } + } + if m.CommitTs != 0 { + dAtA[i] = 0x18 + i++ + i = encodeVarintPb(dAtA, i, uint64(m.CommitTs)) + } + if len(m.Splits) > 0 { + dAtA33 := make([]byte, len(m.Splits)*10) + var j32 int + for _, num := range m.Splits { + for num >= 1<<7 { + dAtA33[j32] = uint8(uint64(num)&0x7f | 0x80) + num >>= 7 + j32++ + } + dAtA33[j32] = uint8(num) + j32++ + } + dAtA[i] = 0x22 + i++ + i = encodeVarintPb(dAtA, i, uint64(j32)) + i += copy(dAtA[i:], dAtA33[:j32]) + } + if m.XXX_unrecognized != nil { + i += copy(dAtA[i:], m.XXX_unrecognized) + } + return i, nil +} + func encodeVarintPb(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) @@ -9270,22 +9578,94 @@ func (m *ExportRequest) Size() (n int) { return n } -func sovPb(x uint64) (n int) { - return (math_bits.Len64(x|1) + 6) / 7 -} -func sozPb(x uint64) (n int) { - return sovPb(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +func (m *BackupKey) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.ByteType) + if l > 0 { + n += 1 + l + sovPb(uint64(l)) + } + l = len(m.Attr) + if l > 0 { + n += 1 + l + sovPb(uint64(l)) + } + if m.Uid != 0 { + n += 1 + sovPb(uint64(m.Uid)) + } + if m.StartUid != 0 { + n += 1 + sovPb(uint64(m.StartUid)) + } + l = len(m.Term) + if l > 0 { + n += 1 + l + sovPb(uint64(l)) + } + if m.Count != 0 { + n += 1 + sovPb(uint64(m.Count)) + } + l = len(m.BytePrefix) + if l > 0 { + n += 1 + l + sovPb(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n } -func (m *List) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowPb - } + +func (m *BackupPostingList) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Uids) > 0 { + l = 0 + for _, e := range m.Uids { + l += sovPb(uint64(e)) + } + n += 1 + sovPb(uint64(l)) + l + } + if len(m.Postings) > 0 { + for _, e := range m.Postings { + l = e.Size() + n += 1 + l + sovPb(uint64(l)) + } + } + if m.CommitTs != 0 { + n += 1 + sovPb(uint64(m.CommitTs)) + } + if len(m.Splits) > 0 { + l = 0 + for _, e := range m.Splits { + l += sovPb(uint64(e)) + } + n += 1 + sovPb(uint64(l)) + l + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func sovPb(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozPb(x uint64) (n int) { + return sovPb(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *List) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } if iNdEx >= l { return io.ErrUnexpectedEOF } @@ -17747,6 +18127,508 @@ func (m *ExportRequest) Unmarshal(dAtA []byte) error { } return nil } +func (m *BackupKey) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: BackupKey: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: BackupKey: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ByteType", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthPb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthPb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ByteType = append(m.ByteType[:0], dAtA[iNdEx:postIndex]...) + if m.ByteType == nil { + m.ByteType = []byte{} + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Attr", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthPb + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthPb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Attr = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Uid", wireType) + } + m.Uid = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Uid |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StartUid", wireType) + } + m.StartUid = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.StartUid |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Term", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthPb + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthPb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Term = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 6: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Count", wireType) + } + m.Count = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Count |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field BytePrefix", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthPb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthPb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.BytePrefix = append(m.BytePrefix[:0], dAtA[iNdEx:postIndex]...) + if m.BytePrefix == nil { + m.BytePrefix = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipPb(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthPb + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthPb + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *BackupPostingList) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: BackupPostingList: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: BackupPostingList: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType == 0 { + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Uids = append(m.Uids, v) + } else if wireType == 2 { + var packedLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + packedLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if packedLen < 0 { + return ErrInvalidLengthPb + } + postIndex := iNdEx + packedLen + if postIndex < 0 { + return ErrInvalidLengthPb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + var elementCount int + var count int + for _, integer := range dAtA[iNdEx:postIndex] { + if integer < 128 { + count++ + } + } + elementCount = count + if elementCount != 0 && len(m.Uids) == 0 { + m.Uids = make([]uint64, 0, elementCount) + } + for iNdEx < postIndex { + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Uids = append(m.Uids, v) + } + } else { + return fmt.Errorf("proto: wrong wireType = %d for field Uids", wireType) + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Postings", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthPb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthPb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Postings = append(m.Postings, &Posting{}) + if err := m.Postings[len(m.Postings)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field CommitTs", wireType) + } + m.CommitTs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.CommitTs |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 4: + if wireType == 0 { + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Splits = append(m.Splits, v) + } else if wireType == 2 { + var packedLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + packedLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if packedLen < 0 { + return ErrInvalidLengthPb + } + postIndex := iNdEx + packedLen + if postIndex < 0 { + return ErrInvalidLengthPb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + var elementCount int + var count int + for _, integer := range dAtA[iNdEx:postIndex] { + if integer < 128 { + count++ + } + } + elementCount = count + if elementCount != 0 && len(m.Splits) == 0 { + m.Splits = make([]uint64, 0, elementCount) + } + for iNdEx < postIndex { + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Splits = append(m.Splits, v) + } + } else { + return fmt.Errorf("proto: wrong wireType = %d for field Splits", wireType) + } + default: + iNdEx = preIndex + skippy, err := skipPb(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthPb + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthPb + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipPb(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 diff --git a/x/keys.go b/x/keys.go index 5a3bd822344..c6d4a3dee21 100644 --- a/x/keys.go +++ b/x/keys.go @@ -22,6 +22,9 @@ import ( "strings" "github.com/golang/glog" + "github.com/pkg/errors" + + "github.com/dgraph-io/dgraph/protos/pb" ) const ( @@ -352,6 +355,47 @@ func (p ParsedKey) CountPrefix(reverse bool) []byte { return buf } +// ToBackupKey returns the key in the format used for writing backups. +func (p ParsedKey) ToBackupKey() *pb.BackupKey { + key := pb.BackupKey{} + key.ByteType = []byte{p.byteType} + key.Attr = p.Attr + key.Uid = p.Uid + key.StartUid = p.StartUid + key.Term = p.Term + key.Count = p.Count + key.BytePrefix = []byte{p.bytePrefix} + return &key +} + +// FromBackupKey takes a key in the format used for backups and converts it to a ParsedKey. +func FromBackupKey(key *pb.BackupKey) (*ParsedKey, error) { + p := ParsedKey{} + if key == nil { + return &p, nil + } + + if len(key.ByteType) != 1 { + return nil, errors.Errorf("ByteType must be of length 1 but is %d bytes long", + key.ByteType) + } + if len(key.BytePrefix) != 1 { + return nil, errors.Errorf("BytePrefix must be of length 1 but is %d bytes long", + key.BytePrefix) + } + + p.byteType = key.ByteType[0] + p.Attr = key.Attr + p.Uid = key.Uid + p.StartUid = key.StartUid + p.HasStartUid = p.StartUid > 0 + p.Term = key.Term + p.Count = key.Count + p.bytePrefix = key.BytePrefix[0] + + return &p, nil +} + // SchemaPrefix returns the prefix for Schema keys. func SchemaPrefix() []byte { var buf [1]byte From bdce5e401939bc4a9b0ac670d9e65082575cc5f7 Mon Sep 17 00:00:00 2001 From: Martin Martinez Rivera Date: Wed, 19 Jun 2019 13:00:21 -0700 Subject: [PATCH 3/4] Address review comments. --- dgraph/cmd/debug/run.go | 2 +- protos/pb.proto | 14 +- protos/pb/pb.pb.go | 616 +++++++++++++++++++--------------------- x/keys.go | 88 ++++-- x/keys_test.go | 4 +- 5 files changed, 369 insertions(+), 355 deletions(-) diff --git a/dgraph/cmd/debug/run.go b/dgraph/cmd/debug/run.go index 46bea49b093..1181ad12f97 100644 --- a/dgraph/cmd/debug/run.go +++ b/dgraph/cmd/debug/run.go @@ -503,7 +503,7 @@ func printKeys(db *badger.DB) { if pk.IsIndex() { buf.WriteString("{i}") } - if pk.IsCount() { + if pk.IsCountOrCountRev() { buf.WriteString("{c}") } if pk.IsSchema() { diff --git a/protos/pb.proto b/protos/pb.proto index 773ba92741a..e6ce89fd7a6 100644 --- a/protos/pb.proto +++ b/protos/pb.proto @@ -501,13 +501,23 @@ message ExportRequest { // A key stored in the format used for writing backups. message BackupKey { - bytes byteType = 1; + enum KeyType { + UNKNOWN = 0; + DATA = 1; + INDEX = 2; + REVERSE = 3; + COUNT = 4; + COUNT_REV = 5; + SCHEMA = 6; + TYPE = 7; + } + + KeyType type = 1; string attr = 2; uint64 uid = 3; uint64 start_uid = 4; string term = 5; uint32 count = 6; - bytes byte_prefix = 7; } // A posting list stored in the format used for writing backups. diff --git a/protos/pb/pb.pb.go b/protos/pb/pb.pb.go index 602e11e820a..599b04468e1 100644 --- a/protos/pb/pb.pb.go +++ b/protos/pb/pb.pb.go @@ -196,6 +196,49 @@ func (SchemaUpdate_Directive) EnumDescriptor() ([]byte, []int) { return fileDescriptor_f80abaa17e25ccc8, []int{34, 0} } +type BackupKey_KeyType int32 + +const ( + BackupKey_UNKNOWN BackupKey_KeyType = 0 + BackupKey_DATA BackupKey_KeyType = 1 + BackupKey_INDEX BackupKey_KeyType = 2 + BackupKey_REVERSE BackupKey_KeyType = 3 + BackupKey_COUNT BackupKey_KeyType = 4 + BackupKey_COUNT_REV BackupKey_KeyType = 5 + BackupKey_SCHEMA BackupKey_KeyType = 6 + BackupKey_TYPE BackupKey_KeyType = 7 +) + +var BackupKey_KeyType_name = map[int32]string{ + 0: "UNKNOWN", + 1: "DATA", + 2: "INDEX", + 3: "REVERSE", + 4: "COUNT", + 5: "COUNT_REV", + 6: "SCHEMA", + 7: "TYPE", +} + +var BackupKey_KeyType_value = map[string]int32{ + "UNKNOWN": 0, + "DATA": 1, + "INDEX": 2, + "REVERSE": 3, + "COUNT": 4, + "COUNT_REV": 5, + "SCHEMA": 6, + "TYPE": 7, +} + +func (x BackupKey_KeyType) String() string { + return proto.EnumName(BackupKey_KeyType_name, int32(x)) +} + +func (BackupKey_KeyType) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_f80abaa17e25ccc8, []int{50, 0} +} + type List struct { Uids []uint64 `protobuf:"fixed64,1,rep,packed,name=uids,proto3" json:"uids,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -3747,16 +3790,15 @@ func (m *ExportRequest) GetFormat() string { // A key stored in the format used for writing backups. type BackupKey struct { - ByteType []byte `protobuf:"bytes,1,opt,name=byteType,proto3" json:"byteType,omitempty"` - Attr string `protobuf:"bytes,2,opt,name=attr,proto3" json:"attr,omitempty"` - Uid uint64 `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"` - StartUid uint64 `protobuf:"varint,4,opt,name=start_uid,json=startUid,proto3" json:"start_uid,omitempty"` - Term string `protobuf:"bytes,5,opt,name=term,proto3" json:"term,omitempty"` - Count uint32 `protobuf:"varint,6,opt,name=count,proto3" json:"count,omitempty"` - BytePrefix []byte `protobuf:"bytes,7,opt,name=byte_prefix,json=bytePrefix,proto3" json:"byte_prefix,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Type BackupKey_KeyType `protobuf:"varint,1,opt,name=type,proto3,enum=pb.BackupKey_KeyType" json:"type,omitempty"` + Attr string `protobuf:"bytes,2,opt,name=attr,proto3" json:"attr,omitempty"` + Uid uint64 `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"` + StartUid uint64 `protobuf:"varint,4,opt,name=start_uid,json=startUid,proto3" json:"start_uid,omitempty"` + Term string `protobuf:"bytes,5,opt,name=term,proto3" json:"term,omitempty"` + Count uint32 `protobuf:"varint,6,opt,name=count,proto3" json:"count,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *BackupKey) Reset() { *m = BackupKey{} } @@ -3792,11 +3834,11 @@ func (m *BackupKey) XXX_DiscardUnknown() { var xxx_messageInfo_BackupKey proto.InternalMessageInfo -func (m *BackupKey) GetByteType() []byte { +func (m *BackupKey) GetType() BackupKey_KeyType { if m != nil { - return m.ByteType + return m.Type } - return nil + return BackupKey_UNKNOWN } func (m *BackupKey) GetAttr() string { @@ -3834,13 +3876,6 @@ func (m *BackupKey) GetCount() uint32 { return 0 } -func (m *BackupKey) GetBytePrefix() []byte { - if m != nil { - return m.BytePrefix - } - return nil -} - // A posting list stored in the format used for writing backups. type BackupPostingList struct { Uids []uint64 `protobuf:"varint,1,rep,packed,name=uids,proto3" json:"uids,omitempty"` @@ -3919,6 +3954,7 @@ func init() { proto.RegisterEnum("pb.Posting_ValType", Posting_ValType_name, Posting_ValType_value) proto.RegisterEnum("pb.Posting_PostingType", Posting_PostingType_name, Posting_PostingType_value) proto.RegisterEnum("pb.SchemaUpdate_Directive", SchemaUpdate_Directive_name, SchemaUpdate_Directive_value) + proto.RegisterEnum("pb.BackupKey_KeyType", BackupKey_KeyType_name, BackupKey_KeyType_value) proto.RegisterType((*List)(nil), "pb.List") proto.RegisterType((*TaskValue)(nil), "pb.TaskValue") proto.RegisterType((*SrcFunction)(nil), "pb.SrcFunction") @@ -3982,235 +4018,238 @@ func init() { func init() { proto.RegisterFile("pb.proto", fileDescriptor_f80abaa17e25ccc8) } var fileDescriptor_f80abaa17e25ccc8 = []byte{ - // 3644 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x5a, 0xcd, 0x8f, 0x24, 0x47, - 0x56, 0x9f, 0xac, 0x8f, 0xac, 0xcc, 0x57, 0xd5, 0x3d, 0xe5, 0xf0, 0xec, 0xb8, 0xdc, 0xde, 0x9d, - 0x69, 0xa7, 0x3f, 0xa6, 0x3d, 0x5e, 0xf7, 0x8c, 0xdb, 0x0b, 0xac, 0x17, 0x71, 0xe8, 0x99, 0xae, - 0x19, 0xda, 0xee, 0x2f, 0xa2, 0xaa, 0x67, 0x59, 0x1f, 0x28, 0x45, 0x67, 0x46, 0x57, 0xe7, 0x76, - 0x56, 0x66, 0x92, 0x91, 0xd5, 0x54, 0xfb, 0xc6, 0x01, 0x24, 0x24, 0x6e, 0x5c, 0x56, 0x08, 0x71, - 0xe0, 0x88, 0x84, 0x38, 0x21, 0xed, 0x19, 0x09, 0x89, 0x23, 0xe2, 0x2f, 0x40, 0x86, 0x23, 0x67, - 0x24, 0x6e, 0xe8, 0xbd, 0x88, 0xac, 0xcc, 0xac, 0xe9, 0x19, 0xaf, 0x91, 0x7c, 0xaa, 0x78, 0x1f, - 0xf1, 0xf5, 0x8b, 0x17, 0xef, 0xbd, 0x78, 0x59, 0xe0, 0xa4, 0x67, 0xdb, 0x69, 0x96, 0xe4, 0x09, - 0x6b, 0xa4, 0x67, 0x1b, 0xae, 0x48, 0x43, 0x4d, 0x6e, 0x3c, 0x98, 0x86, 0xf9, 0xc5, 0xfc, 0x6c, - 0xdb, 0x4f, 0x66, 0x8f, 0x82, 0x69, 0x26, 0xd2, 0x8b, 0x4f, 0xc2, 0xe4, 0xd1, 0x99, 0x08, 0xa6, - 0x32, 0x7b, 0x94, 0x9e, 0x3d, 0x2a, 0xfa, 0x79, 0x1b, 0xd0, 0x3a, 0x08, 0x55, 0xce, 0x18, 0xb4, - 0xe6, 0x61, 0xa0, 0x06, 0xd6, 0x66, 0x73, 0xcb, 0xe6, 0xd4, 0xf6, 0x0e, 0xc1, 0x1d, 0x0b, 0x75, - 0xf9, 0x42, 0x44, 0x73, 0xc9, 0xfa, 0xd0, 0xbc, 0x12, 0xd1, 0xc0, 0xda, 0xb4, 0xb6, 0x7a, 0x1c, - 0x9b, 0x6c, 0x1b, 0x9c, 0x2b, 0x11, 0x4d, 0xf2, 0xeb, 0x54, 0x0e, 0x1a, 0x9b, 0xd6, 0xd6, 0xfa, - 0xce, 0x9b, 0xdb, 0xe9, 0xd9, 0xf6, 0x49, 0xa2, 0xf2, 0x30, 0x9e, 0x6e, 0xbf, 0x10, 0xd1, 0xf8, - 0x3a, 0x95, 0xbc, 0x73, 0xa5, 0x1b, 0xde, 0x31, 0x74, 0x47, 0x99, 0xff, 0x6c, 0x1e, 0xfb, 0x79, - 0x98, 0xc4, 0x38, 0x63, 0x2c, 0x66, 0x92, 0x46, 0x74, 0x39, 0xb5, 0x91, 0x27, 0xb2, 0xa9, 0x1a, - 0x34, 0x37, 0x9b, 0xc8, 0xc3, 0x36, 0x1b, 0x40, 0x27, 0x54, 0x4f, 0x93, 0x79, 0x9c, 0x0f, 0x5a, - 0x9b, 0xd6, 0x96, 0xc3, 0x0b, 0xd2, 0xfb, 0x8b, 0x26, 0xb4, 0xff, 0x60, 0x2e, 0xb3, 0x6b, 0xea, - 0x97, 0xe7, 0x59, 0x31, 0x16, 0xb6, 0xd9, 0x1d, 0x68, 0x47, 0x22, 0x9e, 0xaa, 0x41, 0x83, 0x06, - 0xd3, 0x04, 0x7b, 0x07, 0x5c, 0x71, 0x9e, 0xcb, 0x6c, 0x32, 0x0f, 0x83, 0x41, 0x73, 0xd3, 0xda, - 0xb2, 0xb9, 0x43, 0x8c, 0xd3, 0x30, 0x60, 0x6f, 0x83, 0x13, 0x24, 0x13, 0xbf, 0x3a, 0x57, 0x90, - 0xd0, 0x5c, 0xec, 0x3d, 0x70, 0xe6, 0x61, 0x30, 0x89, 0x42, 0x95, 0x0f, 0xda, 0x9b, 0xd6, 0x56, - 0x77, 0xc7, 0xc1, 0xcd, 0x22, 0x76, 0xbc, 0x33, 0x0f, 0x03, 0x02, 0xf1, 0x21, 0x38, 0x2a, 0xf3, - 0x27, 0xe7, 0xf3, 0xd8, 0x1f, 0xd8, 0xa4, 0x74, 0x1b, 0x95, 0x2a, 0xbb, 0xe6, 0x1d, 0xa5, 0x09, - 0xdc, 0x56, 0x26, 0xaf, 0x64, 0xa6, 0xe4, 0xa0, 0xa3, 0xa7, 0x32, 0x24, 0x7b, 0x0c, 0xdd, 0x73, - 0xe1, 0xcb, 0x7c, 0x92, 0x8a, 0x4c, 0xcc, 0x06, 0x4e, 0x39, 0xd0, 0x33, 0x64, 0x9f, 0x20, 0x57, - 0x71, 0x38, 0x5f, 0x12, 0xec, 0x33, 0x58, 0x23, 0x4a, 0x4d, 0xce, 0xc3, 0x28, 0x97, 0xd9, 0xc0, - 0xa5, 0x3e, 0xeb, 0xd4, 0x87, 0x38, 0xe3, 0x4c, 0x4a, 0xde, 0xd3, 0x4a, 0x9a, 0xc3, 0x7e, 0x04, - 0x20, 0x17, 0xa9, 0x88, 0x83, 0x89, 0x88, 0xa2, 0x01, 0xd0, 0x1a, 0x5c, 0xcd, 0xd9, 0x8d, 0x22, - 0xf6, 0x16, 0xae, 0x4f, 0x04, 0x93, 0x5c, 0x0d, 0xd6, 0x36, 0xad, 0xad, 0x16, 0xb7, 0x91, 0x1c, - 0x2b, 0xc4, 0xd5, 0x17, 0xfe, 0x85, 0x1c, 0xac, 0x6f, 0x5a, 0x5b, 0x6d, 0xae, 0x09, 0x6f, 0x07, - 0x5c, 0xb2, 0x13, 0xc2, 0xe1, 0x03, 0xb0, 0xaf, 0x90, 0xd0, 0xe6, 0xd4, 0xdd, 0x59, 0xc3, 0x85, - 0x2c, 0x4d, 0x89, 0x1b, 0xa1, 0x77, 0x0f, 0x9c, 0x03, 0x11, 0x4f, 0x0b, 0xfb, 0xc3, 0x03, 0xa2, - 0x0e, 0x2e, 0xa7, 0xb6, 0xf7, 0xab, 0x06, 0xd8, 0x5c, 0xaa, 0x79, 0x94, 0xb3, 0x07, 0x00, 0x08, - 0xff, 0x4c, 0xe4, 0x59, 0xb8, 0x30, 0xa3, 0x96, 0x07, 0xe0, 0xce, 0xc3, 0xe0, 0x90, 0x44, 0xec, - 0x31, 0xf4, 0x68, 0xf4, 0x42, 0xb5, 0x51, 0x2e, 0x60, 0xb9, 0x3e, 0xde, 0x25, 0x15, 0xd3, 0xe3, - 0x2e, 0xd8, 0x74, 0xe2, 0xda, 0xea, 0xd6, 0xb8, 0xa1, 0xd8, 0x07, 0xb0, 0x1e, 0xc6, 0x39, 0x9e, - 0x88, 0x9f, 0x4f, 0x02, 0xa9, 0x0a, 0x93, 0x58, 0x5b, 0x72, 0xf7, 0xa4, 0xca, 0xd9, 0xa7, 0xa0, - 0x61, 0x2d, 0x26, 0x6c, 0xd3, 0x84, 0xeb, 0xcb, 0xe3, 0x52, 0x7a, 0x46, 0xd2, 0x31, 0x33, 0x7e, - 0x02, 0x5d, 0xdc, 0x5f, 0xd1, 0xc3, 0xa6, 0x1e, 0x3d, 0xda, 0x8d, 0x81, 0x83, 0x03, 0x2a, 0x18, - 0x75, 0x84, 0x06, 0xcd, 0x4e, 0x9b, 0x09, 0xb5, 0xbd, 0x21, 0xb4, 0x8f, 0xb3, 0x40, 0x66, 0x37, - 0x5a, 0x3e, 0x83, 0x56, 0x20, 0x95, 0x4f, 0x97, 0xd2, 0xe1, 0xd4, 0x2e, 0x6f, 0x43, 0xb3, 0x72, - 0x1b, 0xbc, 0xbf, 0xb5, 0xa0, 0x3b, 0x4a, 0xb2, 0xfc, 0x50, 0x2a, 0x25, 0xa6, 0x92, 0xdd, 0x87, - 0x76, 0x82, 0xc3, 0x1a, 0x84, 0x5d, 0x5c, 0x13, 0xcd, 0xc3, 0x35, 0x7f, 0xe5, 0x1c, 0x1a, 0xaf, - 0x3e, 0x07, 0xb4, 0x12, 0xba, 0x47, 0x4d, 0x63, 0x25, 0x74, 0x8b, 0xee, 0x82, 0x9d, 0x9c, 0x9f, - 0x2b, 0xa9, 0xb1, 0x6c, 0x73, 0x43, 0xbd, 0xd2, 0xd8, 0xbc, 0xdf, 0x02, 0xc0, 0xf5, 0x7d, 0x47, - 0x2b, 0xf0, 0x2e, 0xa0, 0xcb, 0xc5, 0x79, 0xfe, 0x34, 0x89, 0x73, 0xb9, 0xc8, 0xd9, 0x3a, 0x34, - 0xc2, 0x80, 0x20, 0xb2, 0x79, 0x23, 0x0c, 0x70, 0x71, 0xd3, 0x2c, 0x99, 0xa7, 0x84, 0xd0, 0x1a, - 0xd7, 0x04, 0x41, 0x19, 0x04, 0x19, 0xad, 0x18, 0xa1, 0x0c, 0x82, 0x8c, 0xdd, 0x87, 0xae, 0x8a, - 0x45, 0xaa, 0x2e, 0x92, 0x1c, 0x17, 0xd7, 0xa2, 0xc5, 0x41, 0xc1, 0x1a, 0x2b, 0xef, 0x5f, 0x2c, - 0xb0, 0x0f, 0xe5, 0xec, 0x4c, 0x66, 0x2f, 0xcd, 0xf2, 0x36, 0x38, 0x34, 0xf0, 0x24, 0x0c, 0xcc, - 0x44, 0x1d, 0xa2, 0xf7, 0x83, 0x1b, 0xa7, 0xba, 0x0b, 0x76, 0x24, 0x05, 0x82, 0xaf, 0xed, 0xcc, - 0x50, 0x88, 0x8d, 0x98, 0x4d, 0x02, 0x29, 0x02, 0x72, 0x3c, 0x0e, 0xb7, 0xc5, 0x6c, 0x4f, 0x8a, - 0x00, 0xd7, 0x16, 0x09, 0x95, 0x4f, 0xe6, 0x69, 0x20, 0x72, 0x49, 0x0e, 0xa7, 0x85, 0x86, 0xa3, - 0xf2, 0x53, 0xe2, 0xb0, 0x87, 0xf0, 0x86, 0x1f, 0xcd, 0x15, 0x7a, 0xbb, 0x30, 0x3e, 0x4f, 0x26, - 0x49, 0x1c, 0x5d, 0x13, 0xbe, 0x0e, 0xbf, 0x6d, 0x04, 0xfb, 0xf1, 0x79, 0x72, 0x1c, 0x47, 0xd7, - 0xde, 0xaf, 0x1b, 0xd0, 0x7e, 0x4e, 0x30, 0x3c, 0x86, 0xce, 0x8c, 0x36, 0x54, 0xdc, 0xde, 0xbb, - 0x88, 0x30, 0xc9, 0xb6, 0xf5, 0x4e, 0xd5, 0x30, 0xce, 0xb3, 0x6b, 0x5e, 0xa8, 0x61, 0x8f, 0x5c, - 0x9c, 0x45, 0x32, 0x57, 0xc6, 0x22, 0x2a, 0x3d, 0xc6, 0x5a, 0x60, 0x7a, 0x18, 0xb5, 0x55, 0x58, - 0x9b, 0xab, 0xb0, 0xb2, 0x0d, 0x70, 0xfc, 0x0b, 0xe9, 0x5f, 0xaa, 0xf9, 0xcc, 0x80, 0xbe, 0xa4, - 0x37, 0x9e, 0x41, 0xaf, 0xba, 0x0e, 0x8c, 0x4c, 0x97, 0xf2, 0x9a, 0x80, 0x6f, 0x71, 0x6c, 0xb2, - 0x4d, 0x68, 0xd3, 0x0d, 0x27, 0xd8, 0xbb, 0x3b, 0x80, 0xcb, 0xd1, 0x5d, 0xb8, 0x16, 0xfc, 0xac, - 0xf1, 0x53, 0x0b, 0xc7, 0xa9, 0xae, 0xae, 0x3a, 0x8e, 0xfb, 0xea, 0x71, 0x74, 0x97, 0xca, 0x38, - 0xde, 0xff, 0x36, 0xa0, 0xf7, 0x95, 0xcc, 0x92, 0x93, 0x2c, 0x49, 0x13, 0x25, 0x22, 0xb6, 0x5b, - 0xdf, 0x9d, 0x46, 0x71, 0x13, 0x3b, 0x57, 0xd5, 0xb6, 0x47, 0xcb, 0xed, 0x6a, 0x74, 0xaa, 0xfb, - 0xf7, 0xc0, 0xd6, 0xe8, 0xde, 0xb0, 0x05, 0x23, 0x41, 0x1d, 0x8d, 0x27, 0xe1, 0x57, 0x5f, 0x9e, - 0x91, 0xb0, 0x7b, 0x00, 0x33, 0xb1, 0x38, 0x90, 0x42, 0xc9, 0xfd, 0xa0, 0x30, 0xdf, 0x92, 0x83, - 0x38, 0xcf, 0xc4, 0x62, 0xbc, 0x88, 0xc7, 0x8a, 0xac, 0xab, 0xc5, 0x97, 0x34, 0xfb, 0x21, 0xb8, - 0x33, 0xb1, 0xc0, 0x7b, 0xb4, 0x1f, 0x18, 0xeb, 0x2a, 0x19, 0xec, 0x5d, 0x68, 0xe6, 0x8b, 0x98, - 0x9c, 0x12, 0x46, 0x27, 0x4c, 0x3d, 0xc6, 0x8b, 0xd8, 0xdc, 0x38, 0x8e, 0xb2, 0x02, 0x50, 0xa7, - 0x04, 0xb4, 0x0f, 0x4d, 0x3f, 0x0c, 0x28, 0x3c, 0xb9, 0x1c, 0x9b, 0x1b, 0xbf, 0x07, 0xb7, 0x57, - 0x70, 0xa8, 0x9e, 0xc3, 0x9a, 0xee, 0x76, 0xa7, 0x7a, 0x0e, 0xad, 0x2a, 0xf6, 0xbf, 0x6e, 0xc2, - 0x6d, 0x63, 0x0c, 0x17, 0x61, 0x3a, 0xca, 0xd1, 0xec, 0x07, 0xd0, 0x21, 0x6f, 0x23, 0x33, 0x63, - 0x13, 0x05, 0xc9, 0x7e, 0x07, 0x6c, 0xba, 0x81, 0x85, 0x9d, 0xde, 0x2f, 0x51, 0x5d, 0x76, 0xd7, - 0x76, 0x6b, 0x8e, 0xc4, 0xa8, 0xb3, 0x9f, 0x40, 0xfb, 0x6b, 0x99, 0x25, 0xda, 0x7b, 0x76, 0x77, - 0xee, 0xdd, 0xd4, 0x0f, 0xcf, 0xd6, 0x74, 0xd3, 0xca, 0xdf, 0x23, 0xf8, 0xef, 0xa3, 0xbf, 0x9c, - 0x25, 0x57, 0x32, 0x18, 0x74, 0x68, 0x45, 0x55, 0xfb, 0x28, 0x44, 0x05, 0xda, 0x4e, 0x89, 0xf6, - 0x1e, 0x74, 0x2b, 0xdb, 0xbb, 0x01, 0xe9, 0xfb, 0x75, 0x8b, 0x77, 0x97, 0x17, 0xb9, 0x7a, 0x71, - 0xf6, 0x00, 0xca, 0xcd, 0xfe, 0x7f, 0xaf, 0x9f, 0xf7, 0xa7, 0x16, 0xdc, 0x7e, 0x9a, 0xc4, 0xb1, - 0xa4, 0xc4, 0x48, 0x1f, 0x5d, 0x69, 0xf6, 0xd6, 0x2b, 0xcd, 0xfe, 0x23, 0x68, 0x2b, 0x54, 0x36, - 0xa3, 0xbf, 0x79, 0xc3, 0x59, 0x70, 0xad, 0x81, 0x6e, 0x66, 0x26, 0x16, 0x93, 0x54, 0xc6, 0x41, - 0x18, 0x4f, 0x0b, 0x37, 0x33, 0x13, 0x8b, 0x13, 0xcd, 0xf1, 0xfe, 0xce, 0x02, 0x5b, 0xdf, 0x98, - 0x9a, 0xb7, 0xb6, 0xea, 0xde, 0xfa, 0x87, 0xe0, 0xa6, 0x99, 0x0c, 0x42, 0xbf, 0x98, 0xd5, 0xe5, - 0x25, 0x03, 0x8d, 0xf3, 0x3c, 0xc9, 0x7c, 0x49, 0xc3, 0x3b, 0x5c, 0x13, 0xc8, 0x55, 0xa9, 0xf0, - 0x75, 0x72, 0xd7, 0xe4, 0x9a, 0x40, 0x1f, 0xaf, 0x0f, 0x87, 0x0e, 0xc5, 0xe1, 0x86, 0xc2, 0xac, - 0x94, 0xe2, 0x1f, 0x79, 0x68, 0x97, 0x44, 0x0e, 0x32, 0xc8, 0x35, 0xff, 0x7d, 0x03, 0x7a, 0x7b, - 0x61, 0x26, 0xfd, 0x5c, 0x06, 0xc3, 0x60, 0x4a, 0xa3, 0xc8, 0x38, 0x0f, 0xf3, 0x6b, 0x13, 0x6c, - 0x0c, 0xb5, 0xcc, 0x05, 0x1a, 0xf5, 0x2c, 0x58, 0x9f, 0x45, 0x93, 0x12, 0x77, 0x4d, 0xb0, 0x1d, - 0x00, 0x9d, 0x25, 0x51, 0xf2, 0xde, 0x7a, 0x75, 0xf2, 0xee, 0x92, 0x1a, 0x36, 0x11, 0x20, 0xdd, - 0x27, 0xd4, 0x81, 0xc8, 0xa6, 0xcc, 0x7e, 0x8e, 0x86, 0x4c, 0xc9, 0xc5, 0x99, 0x8c, 0xc8, 0x50, - 0x29, 0xb9, 0x38, 0x93, 0xd1, 0x32, 0xa5, 0xeb, 0xe8, 0xe5, 0x60, 0x9b, 0xbd, 0x07, 0x8d, 0x24, - 0xa5, 0xcd, 0x9b, 0x09, 0xab, 0x1b, 0xdb, 0x3e, 0x4e, 0x79, 0x23, 0x49, 0xd1, 0x0a, 0x74, 0xa6, - 0x3a, 0x70, 0x8d, 0x71, 0xa3, 0x77, 0xa1, 0x6c, 0x8a, 0x1b, 0x89, 0x77, 0x17, 0x1a, 0xc7, 0x29, - 0xeb, 0x40, 0x73, 0x34, 0x1c, 0xf7, 0x6f, 0x61, 0x63, 0x6f, 0x78, 0xd0, 0xb7, 0xbc, 0xff, 0x6e, - 0x80, 0x7b, 0x38, 0xcf, 0x05, 0xda, 0x94, 0x7a, 0xdd, 0xa1, 0xbe, 0x0d, 0x8e, 0xca, 0x45, 0x46, - 0x1e, 0x5a, 0xbb, 0x95, 0x0e, 0xd1, 0x63, 0xc5, 0x3e, 0x84, 0xb6, 0x0c, 0xa6, 0xb2, 0xb8, 0xed, - 0xfd, 0xd5, 0x75, 0x72, 0x2d, 0x66, 0x5b, 0x60, 0x2b, 0xff, 0x42, 0xce, 0xc4, 0xa0, 0x55, 0x2a, - 0x8e, 0x88, 0xa3, 0x23, 0x30, 0x37, 0x72, 0xb6, 0x03, 0x3f, 0x08, 0xa7, 0x71, 0x92, 0xc9, 0x49, - 0x18, 0x07, 0x72, 0x31, 0xf1, 0x93, 0xf8, 0x3c, 0x0a, 0xfd, 0xdc, 0x44, 0xf4, 0x37, 0xb5, 0x70, - 0x1f, 0x65, 0x4f, 0x8d, 0x88, 0xbd, 0x0f, 0x6d, 0x3c, 0x1d, 0x65, 0xf2, 0x43, 0xca, 0x28, 0xf1, - 0x20, 0xcc, 0xd0, 0x5a, 0xc8, 0x3e, 0x81, 0x4e, 0x90, 0x25, 0xe9, 0x24, 0x49, 0x09, 0xe7, 0xf5, - 0x9d, 0x3b, 0x74, 0x1f, 0x0a, 0x04, 0xb6, 0xf7, 0xb2, 0x24, 0x3d, 0x4e, 0xb9, 0x1d, 0xd0, 0x2f, - 0x26, 0xfd, 0xa4, 0xae, 0x6d, 0x42, 0x7b, 0x06, 0x17, 0x39, 0x94, 0x1c, 0x7b, 0x8f, 0xc0, 0xd6, - 0x1d, 0x98, 0x03, 0xad, 0xa3, 0xe3, 0xa3, 0xa1, 0x86, 0x76, 0xf7, 0xe0, 0xa0, 0x6f, 0x21, 0x6b, - 0x6f, 0x77, 0xbc, 0xdb, 0x6f, 0x60, 0x6b, 0xfc, 0x8b, 0x93, 0x61, 0xbf, 0xe9, 0xfd, 0x95, 0x05, - 0x4e, 0xe1, 0xbf, 0xd9, 0x47, 0xe8, 0x78, 0xc9, 0xff, 0x9b, 0xeb, 0x4b, 0x8f, 0x96, 0x4a, 0x22, - 0xc6, 0x0b, 0x39, 0x5a, 0x0c, 0x21, 0x51, 0x78, 0x74, 0x22, 0xaa, 0x69, 0x60, 0xb3, 0xf6, 0xe6, - 0xc0, 0x8c, 0x36, 0x89, 0xa5, 0xc9, 0x8c, 0xa8, 0x4d, 0x07, 0x18, 0xc6, 0xbe, 0x44, 0xed, 0xb6, - 0x39, 0x40, 0xa4, 0xc7, 0xca, 0xfb, 0x9b, 0x06, 0x38, 0xcb, 0x68, 0xfc, 0x31, 0xb8, 0xb3, 0x02, - 0x0e, 0xe3, 0x33, 0xd6, 0x6a, 0x18, 0xf1, 0x52, 0xce, 0xee, 0x42, 0xe3, 0xf2, 0xca, 0x1c, 0xa7, - 0x8d, 0x5a, 0x5f, 0xbe, 0xe0, 0x8d, 0xcb, 0xab, 0xd2, 0xe9, 0xb4, 0xbf, 0xd5, 0xe9, 0x3c, 0x80, - 0xdb, 0x7e, 0x24, 0x45, 0x3c, 0x29, 0x7d, 0x86, 0xbe, 0x16, 0xeb, 0xc4, 0x3e, 0x59, 0x3a, 0x0e, - 0xe3, 0x38, 0x3b, 0x65, 0x78, 0xfc, 0x00, 0xda, 0x81, 0x8c, 0x72, 0x51, 0x7d, 0xf3, 0x1d, 0x67, - 0xc2, 0x8f, 0xe4, 0x1e, 0xb2, 0xb9, 0x96, 0xb2, 0x2d, 0x70, 0x8a, 0x54, 0xc1, 0xbc, 0xf4, 0xe8, - 0xf1, 0x50, 0x9c, 0x03, 0x5f, 0x4a, 0x4b, 0x98, 0xa1, 0x02, 0xb3, 0xf7, 0x29, 0x34, 0xbf, 0x7c, - 0x31, 0x32, 0x7b, 0xb5, 0x5e, 0xda, 0x6b, 0x01, 0x76, 0xa3, 0x04, 0xdb, 0xfb, 0x9f, 0x26, 0x74, - 0x8c, 0x6f, 0xc0, 0x75, 0xcf, 0x97, 0x89, 0x2e, 0x36, 0xeb, 0xf1, 0x79, 0xe9, 0x64, 0xaa, 0xf5, - 0x81, 0xe6, 0xb7, 0xd7, 0x07, 0xd8, 0xcf, 0xa0, 0x97, 0x6a, 0x59, 0xd5, 0x2d, 0xbd, 0x55, 0xed, - 0x63, 0x7e, 0xa9, 0x5f, 0x37, 0x2d, 0x09, 0x34, 0x06, 0x7a, 0x52, 0xe5, 0x62, 0x4a, 0x47, 0xd4, - 0xe3, 0x1d, 0xa4, 0xc7, 0x62, 0xfa, 0x0a, 0xe7, 0xf4, 0x1b, 0xf8, 0x18, 0x4c, 0xe8, 0x93, 0x74, - 0xd0, 0x23, 0xbf, 0x81, 0x7e, 0xa9, 0xea, 0x32, 0xd6, 0xea, 0x2e, 0xe3, 0x1d, 0x70, 0xfd, 0x64, - 0x36, 0x0b, 0x49, 0xb6, 0x6e, 0x12, 0x56, 0x62, 0x8c, 0x95, 0xf7, 0xe7, 0x16, 0x74, 0xcc, 0x6e, - 0x59, 0x17, 0x3a, 0x7b, 0xc3, 0x67, 0xbb, 0xa7, 0x07, 0xe8, 0xb5, 0x00, 0xec, 0x27, 0xfb, 0x47, - 0xbb, 0xfc, 0x17, 0x7d, 0x0b, 0xaf, 0xd9, 0xfe, 0xd1, 0xb8, 0xdf, 0x60, 0x2e, 0xb4, 0x9f, 0x1d, - 0x1c, 0xef, 0x8e, 0xfb, 0x4d, 0xbc, 0x67, 0x4f, 0x8e, 0x8f, 0x0f, 0xfa, 0x2d, 0xd6, 0x03, 0x67, - 0x6f, 0x77, 0x3c, 0x1c, 0xef, 0x1f, 0x0e, 0xfb, 0x6d, 0xd4, 0x7d, 0x3e, 0x3c, 0xee, 0xdb, 0xd8, - 0x38, 0xdd, 0xdf, 0xeb, 0x77, 0x50, 0x7e, 0xb2, 0x3b, 0x1a, 0xfd, 0xfc, 0x98, 0xef, 0xf5, 0x1d, - 0x1c, 0x77, 0x34, 0xe6, 0xfb, 0x47, 0xcf, 0xfb, 0x2e, 0xb6, 0x8f, 0x9f, 0x7c, 0x31, 0x7c, 0x3a, - 0xee, 0x83, 0xf7, 0x29, 0x74, 0x2b, 0x08, 0x62, 0x6f, 0x3e, 0x7c, 0xd6, 0xbf, 0x85, 0x53, 0xbe, - 0xd8, 0x3d, 0x38, 0x1d, 0xf6, 0x2d, 0xb6, 0x0e, 0x40, 0xcd, 0xc9, 0xc1, 0xee, 0xd1, 0xf3, 0x7e, - 0xc3, 0xfb, 0x6d, 0x70, 0x4e, 0xc3, 0xe0, 0x49, 0x94, 0xf8, 0x97, 0x68, 0x18, 0x67, 0x42, 0x49, - 0x13, 0xea, 0xa9, 0x8d, 0xb1, 0x88, 0x8c, 0x52, 0x99, 0xb3, 0x37, 0x94, 0x77, 0x04, 0x9d, 0xd3, - 0x30, 0x38, 0x11, 0xfe, 0x25, 0xfa, 0x9c, 0x33, 0xec, 0x3f, 0x51, 0xe1, 0xd7, 0xd2, 0xb8, 0x61, - 0x97, 0x38, 0xa3, 0xf0, 0x6b, 0xc9, 0xde, 0x07, 0x9b, 0x88, 0x22, 0x29, 0x23, 0x5b, 0x2e, 0xe6, - 0xe4, 0x46, 0xe6, 0xfd, 0xa5, 0xb5, 0x5c, 0x3b, 0xd5, 0x0b, 0xee, 0x43, 0x2b, 0x15, 0xfe, 0xa5, - 0x71, 0x34, 0x5d, 0xd3, 0x07, 0xe7, 0xe3, 0x24, 0x60, 0x0f, 0xc0, 0x31, 0x06, 0x52, 0x0c, 0xdc, - 0xad, 0x58, 0x12, 0x5f, 0x0a, 0xeb, 0x47, 0xd7, 0xac, 0x1f, 0x1d, 0x6e, 0x4f, 0xa5, 0x51, 0x48, - 0x4f, 0xbf, 0x26, 0x3a, 0x24, 0x4d, 0x79, 0x3f, 0x01, 0x28, 0x8b, 0x31, 0x37, 0xbc, 0x1c, 0xee, - 0x40, 0x5b, 0x44, 0xa1, 0x41, 0xc5, 0xe5, 0x9a, 0xf0, 0x8e, 0xa0, 0x5b, 0x29, 0xe1, 0xa0, 0x3d, - 0x89, 0x28, 0x9a, 0x5c, 0xca, 0x6b, 0x45, 0x7d, 0x1d, 0xde, 0x11, 0x51, 0xf4, 0xa5, 0xbc, 0x56, - 0xe8, 0xfc, 0x75, 0xf5, 0xa7, 0xb1, 0x52, 0x4e, 0xa0, 0xae, 0x5c, 0x0b, 0xbd, 0x1f, 0x83, 0xad, - 0x6b, 0x0c, 0x15, 0x73, 0xb6, 0x5e, 0x19, 0x32, 0x3f, 0x37, 0x6b, 0xa6, 0x8a, 0x04, 0xfb, 0xd8, - 0x54, 0x99, 0x94, 0xae, 0x69, 0x59, 0x65, 0x1a, 0xa9, 0x95, 0x4c, 0x81, 0x89, 0x94, 0xbd, 0x3d, - 0x70, 0x5e, 0x5b, 0xb7, 0x33, 0x00, 0x34, 0x4a, 0x00, 0x6e, 0xa8, 0xe4, 0x79, 0xbf, 0x04, 0x28, - 0xab, 0x51, 0xe6, 0x76, 0xe9, 0x51, 0xf0, 0x76, 0x3d, 0xc4, 0x27, 0x5f, 0x18, 0x05, 0x99, 0x8c, - 0x6b, 0xbb, 0x2e, 0xeb, 0x57, 0x4b, 0x39, 0xdb, 0x84, 0x16, 0x15, 0xd9, 0x9a, 0xa5, 0xf7, 0x5b, - 0x56, 0xd8, 0x48, 0xe2, 0x2d, 0x60, 0x4d, 0x47, 0x62, 0x2e, 0xff, 0x78, 0x2e, 0xd5, 0x6b, 0xf3, - 0xbb, 0x7b, 0x00, 0x4b, 0x5f, 0x5d, 0x94, 0x0b, 0x2b, 0x1c, 0x34, 0x82, 0xf3, 0x50, 0x46, 0x41, - 0xb1, 0x1b, 0x43, 0xe1, 0x21, 0xeb, 0x08, 0xdd, 0xd2, 0x35, 0x15, 0x22, 0xbc, 0xdf, 0x85, 0x5e, - 0x31, 0x33, 0x15, 0x2d, 0x3e, 0x5e, 0x66, 0x09, 0x1a, 0x63, 0xfd, 0x56, 0xd2, 0x2a, 0x47, 0x49, - 0x20, 0x9f, 0x34, 0x06, 0x56, 0x91, 0x28, 0x78, 0xff, 0xde, 0x2c, 0x7a, 0x9b, 0x37, 0x7c, 0x2d, - 0xf7, 0xb4, 0x56, 0x73, 0xcf, 0x7a, 0x1e, 0xd7, 0xf8, 0x8d, 0xf2, 0xb8, 0x9f, 0x82, 0x1b, 0x50, - 0x32, 0x13, 0x5e, 0x15, 0x7e, 0x79, 0x63, 0x35, 0x71, 0x31, 0xe9, 0x4e, 0x78, 0x25, 0x79, 0xa9, - 0x8c, 0x6b, 0xc9, 0x93, 0x4b, 0x19, 0x87, 0x5f, 0x53, 0x91, 0x02, 0xf7, 0x5c, 0x32, 0xca, 0x8a, - 0x8f, 0xce, 0x69, 0x4c, 0xc5, 0xa7, 0x28, 0x5e, 0xd9, 0x65, 0xf1, 0x0a, 0xf1, 0x9c, 0xa7, 0x4a, - 0x66, 0x79, 0x91, 0x05, 0x6b, 0x6a, 0x99, 0x30, 0xba, 0x46, 0x17, 0x13, 0xc6, 0x77, 0xa1, 0x17, - 0x27, 0xf1, 0x24, 0x9e, 0x47, 0x11, 0xe6, 0xe9, 0xa6, 0x4e, 0xd9, 0x8d, 0x93, 0xf8, 0xc8, 0xb0, - 0xd8, 0x43, 0x78, 0xa3, 0xaa, 0xa2, 0xed, 0xb9, 0xab, 0xcb, 0x1c, 0x15, 0x3d, 0xb2, 0xfa, 0x2d, - 0xe8, 0x27, 0x67, 0xbf, 0x94, 0x7e, 0x4e, 0x88, 0x4d, 0xc8, 0x90, 0x7b, 0x3a, 0x3a, 0x6b, 0x3e, - 0x42, 0x74, 0x24, 0x66, 0xd2, 0xfb, 0x1c, 0xdc, 0x25, 0x08, 0x95, 0x6c, 0xc8, 0x85, 0xf6, 0xfe, - 0xd1, 0xde, 0xf0, 0x0f, 0xfb, 0x16, 0xba, 0x72, 0x3e, 0x7c, 0x31, 0xe4, 0xa3, 0x61, 0xbf, 0x81, - 0x6e, 0x76, 0x6f, 0x78, 0x30, 0x1c, 0x0f, 0xfb, 0xcd, 0x2f, 0x5a, 0x4e, 0xa7, 0xef, 0x70, 0x47, - 0x2e, 0xd2, 0x28, 0xf4, 0xc3, 0xdc, 0x1b, 0x01, 0x94, 0x89, 0x1b, 0xfa, 0x9b, 0x72, 0x6e, 0x7d, - 0xa2, 0x4e, 0x6e, 0x66, 0xc5, 0x94, 0xd2, 0x98, 0x5a, 0xe3, 0x55, 0x29, 0xa5, 0x96, 0x7b, 0xa7, - 0xe0, 0x1c, 0x8a, 0xf4, 0xa5, 0x27, 0x58, 0x6f, 0xf9, 0xd0, 0x9e, 0x9b, 0xb2, 0x93, 0x89, 0xd1, - 0x1f, 0x40, 0xc7, 0xb8, 0x3c, 0x73, 0x6b, 0x6a, 0xee, 0xb0, 0x90, 0x79, 0x7f, 0x66, 0xc1, 0x9d, - 0xc3, 0xe4, 0x4a, 0x2e, 0xd3, 0x94, 0x13, 0x71, 0x1d, 0x25, 0x22, 0xf8, 0x16, 0x43, 0xfc, 0x11, - 0x80, 0x4a, 0xe6, 0x99, 0x2f, 0x27, 0xd3, 0x65, 0xb5, 0xcb, 0xd5, 0x9c, 0xe7, 0xa6, 0xb0, 0x2e, - 0x55, 0x4e, 0xc2, 0xa6, 0xbe, 0x7c, 0x48, 0xa3, 0xe8, 0x07, 0x60, 0xe7, 0x8b, 0xb8, 0x2c, 0xae, - 0xb5, 0x73, 0x7c, 0xff, 0x7a, 0x4f, 0xc1, 0x1d, 0x2f, 0xe8, 0x55, 0x38, 0x57, 0xb5, 0xc0, 0x6b, - 0xbd, 0x26, 0xf0, 0x36, 0x56, 0x02, 0xef, 0x7f, 0x59, 0xd0, 0xad, 0xe4, 0x4f, 0xec, 0x5d, 0x68, - 0xe5, 0x8b, 0xb8, 0x5e, 0x95, 0x2e, 0x26, 0xe1, 0x24, 0x42, 0x7b, 0xc3, 0x27, 0xa3, 0x50, 0x2a, - 0x9c, 0xc6, 0x32, 0x30, 0x43, 0xe2, 0x33, 0x72, 0xd7, 0xb0, 0xd8, 0x01, 0xdc, 0xd6, 0x9e, 0xa4, - 0xa8, 0x48, 0x15, 0x0f, 0x85, 0xf7, 0x56, 0xf2, 0x35, 0xfd, 0x72, 0x7e, 0x5a, 0x68, 0xe9, 0xda, - 0xc0, 0xfa, 0xb4, 0xc6, 0xdc, 0xd8, 0x85, 0x37, 0x6f, 0x50, 0xfb, 0x4e, 0x45, 0x90, 0xfb, 0xb0, - 0x36, 0x5e, 0xc4, 0xe3, 0x70, 0x26, 0x55, 0x2e, 0x66, 0x29, 0x25, 0x2e, 0x26, 0x12, 0xb4, 0x78, - 0x23, 0x57, 0xde, 0x87, 0xd0, 0x3b, 0x91, 0x32, 0xe3, 0x52, 0xa5, 0x49, 0xac, 0x83, 0xb6, 0xa2, - 0x4d, 0x9b, 0xb0, 0x63, 0x28, 0xef, 0x8f, 0xc0, 0xc5, 0x6c, 0xfd, 0x89, 0xc8, 0xfd, 0x8b, 0xef, - 0x92, 0xcd, 0x7f, 0x08, 0x9d, 0x54, 0x9b, 0x89, 0x49, 0xb0, 0x7b, 0xe4, 0xe3, 0x8c, 0xe9, 0xf0, - 0x42, 0xe8, 0x71, 0x68, 0x1e, 0xcd, 0x67, 0xd5, 0x4f, 0x49, 0x2d, 0xfd, 0x29, 0xa9, 0xf6, 0xfe, - 0x6d, 0xd4, 0xdf, 0xbf, 0x68, 0x79, 0xe7, 0x49, 0xf6, 0x27, 0x22, 0x0b, 0x64, 0x60, 0x1e, 0xd9, - 0x25, 0xc3, 0xfb, 0x0a, 0xba, 0xc5, 0xc9, 0xec, 0x07, 0xf4, 0xb5, 0x88, 0x4c, 0x63, 0x3f, 0xa8, - 0x59, 0x8a, 0x7e, 0xa4, 0xca, 0x38, 0xd8, 0x2f, 0x8e, 0x54, 0x13, 0xf5, 0x99, 0x4d, 0x11, 0x66, - 0xf9, 0xf2, 0x7e, 0x06, 0xbd, 0x22, 0xa9, 0x3e, 0x94, 0xb9, 0x20, 0x63, 0x8b, 0x42, 0x19, 0x57, - 0x0c, 0xd1, 0xd1, 0x8c, 0xb1, 0x7a, 0x4d, 0xb9, 0xd7, 0xdb, 0x06, 0xdb, 0x58, 0x32, 0x83, 0x96, - 0x9f, 0x04, 0xfa, 0x02, 0xb5, 0x39, 0xb5, 0x11, 0x8e, 0x99, 0x9a, 0x16, 0xc1, 0x73, 0xa6, 0xa6, - 0xde, 0x5f, 0x37, 0x60, 0xed, 0x89, 0xf0, 0x2f, 0xe7, 0x69, 0x11, 0xbd, 0x2a, 0x2f, 0x23, 0xab, - 0xf6, 0x32, 0xaa, 0xbe, 0x82, 0x1a, 0xb5, 0x57, 0x50, 0x6d, 0x41, 0xcd, 0x7a, 0xc4, 0x7b, 0x0b, - 0x3a, 0xf3, 0x38, 0x5c, 0x14, 0xb7, 0xce, 0xe5, 0x36, 0x92, 0x63, 0xc5, 0x36, 0xa1, 0x8b, 0x17, - 0x33, 0x8c, 0xe9, 0x3d, 0x44, 0x80, 0xb8, 0xbc, 0xca, 0xc2, 0x9b, 0x2e, 0x7c, 0x5f, 0x2a, 0x85, - 0x79, 0x8b, 0xc9, 0xa9, 0x5d, 0xcd, 0xf9, 0x52, 0x5e, 0x93, 0x23, 0x90, 0x7e, 0x26, 0xf3, 0x49, - 0xf9, 0xb6, 0x71, 0x35, 0x07, 0xc5, 0xef, 0xc1, 0x9a, 0x92, 0x4a, 0x85, 0x49, 0x3c, 0xa1, 0xc8, - 0x61, 0x9e, 0xa0, 0x3d, 0xc3, 0x1c, 0x23, 0x0f, 0x0f, 0x5c, 0xc4, 0x49, 0x7c, 0x3d, 0x4b, 0xe6, - 0xca, 0x04, 0x83, 0x92, 0xe1, 0xf5, 0x61, 0xbd, 0xc0, 0x46, 0x9b, 0xb3, 0x97, 0xc3, 0xda, 0x70, - 0x91, 0xd2, 0x67, 0x82, 0x6f, 0x8d, 0xf5, 0x15, 0x20, 0x1b, 0x35, 0x20, 0x2b, 0x90, 0x34, 0xa9, - 0x64, 0x53, 0x40, 0x82, 0xd1, 0x3f, 0xc9, 0x66, 0x22, 0x2f, 0xa0, 0xd2, 0x94, 0xf7, 0x4f, 0x16, - 0xb8, 0x7a, 0x21, 0xb8, 0xb1, 0x0d, 0x70, 0xce, 0xae, 0x73, 0x8a, 0xb0, 0xc6, 0x0f, 0x2f, 0xe9, - 0x1b, 0xeb, 0x32, 0xc6, 0x41, 0xeb, 0x7c, 0x93, 0x1c, 0xf4, 0x3b, 0xe0, 0x6a, 0x27, 0x87, 0x7c, - 0x53, 0xf3, 0x26, 0xc6, 0x69, 0x48, 0x1f, 0x0c, 0x72, 0x99, 0xcd, 0xcc, 0x81, 0x50, 0xbb, 0x0c, - 0xb8, 0xb6, 0xfe, 0x8a, 0xa1, 0x03, 0xee, 0x7d, 0xe8, 0xe2, 0xc4, 0xf8, 0xfa, 0x3c, 0x0f, 0x17, - 0x74, 0x02, 0x3d, 0x0e, 0xc8, 0x3a, 0x21, 0x0e, 0x7a, 0xf8, 0x37, 0xf4, 0xba, 0xab, 0xf9, 0x74, - 0xf5, 0xfb, 0x6f, 0x4b, 0x7f, 0xff, 0xfd, 0x7e, 0x53, 0xe8, 0x9d, 0x7f, 0xb6, 0xa0, 0x85, 0xde, - 0x04, 0x1f, 0xe8, 0xbf, 0x2f, 0x45, 0x96, 0x9f, 0x49, 0x91, 0xb3, 0x9a, 0xe7, 0xd8, 0xa8, 0x51, - 0xde, 0xad, 0xc7, 0x16, 0xdb, 0xd6, 0x5f, 0x76, 0x8a, 0x0f, 0x56, 0x6b, 0x85, 0x4f, 0x22, 0x9f, - 0xb5, 0xaa, 0xbf, 0x45, 0xfa, 0x5f, 0x24, 0x61, 0xfc, 0x54, 0x7f, 0xee, 0x60, 0xab, 0x3e, 0x6c, - 0xb5, 0x07, 0xfb, 0x04, 0xec, 0x7d, 0x85, 0xce, 0xf2, 0x65, 0x55, 0x8a, 0xc5, 0x55, 0x3f, 0xea, - 0xdd, 0xda, 0xf9, 0xc7, 0x26, 0xb4, 0xbe, 0x92, 0x59, 0xc2, 0x7e, 0x0c, 0x1d, 0x53, 0xcc, 0x64, - 0x95, 0xa2, 0xe5, 0x06, 0x25, 0x63, 0x2b, 0x55, 0x4e, 0x9a, 0xa5, 0xaf, 0xc3, 0x79, 0x59, 0x43, - 0x60, 0x65, 0xad, 0xf5, 0xa5, 0x45, 0x7d, 0x0e, 0xfd, 0x51, 0x9e, 0x49, 0x31, 0xab, 0xa8, 0xd7, - 0x81, 0xba, 0xa9, 0x20, 0x41, 0x78, 0x7d, 0x0c, 0xb6, 0x8e, 0x48, 0x2b, 0x1d, 0x56, 0x6b, 0x0b, - 0xa4, 0xfc, 0x00, 0xba, 0xa3, 0x8b, 0x64, 0x1e, 0x05, 0x23, 0x99, 0x5d, 0x49, 0x56, 0xf9, 0xa0, - 0xb0, 0x51, 0x69, 0x7b, 0xb7, 0xd8, 0x16, 0x80, 0x76, 0xba, 0xa7, 0x68, 0x27, 0x1d, 0x94, 0x1d, - 0xcd, 0x67, 0x7a, 0xd0, 0x8a, 0x37, 0xd6, 0x9a, 0x95, 0xc0, 0xf4, 0x3a, 0xcd, 0xcf, 0x60, 0xed, - 0x29, 0xd9, 0xcc, 0x71, 0xb6, 0x7b, 0x96, 0x64, 0x39, 0x5b, 0xfd, 0xa8, 0xb0, 0xb1, 0xca, 0xf0, - 0x6e, 0xb1, 0xc7, 0xe0, 0x8c, 0xb3, 0x6b, 0xad, 0xff, 0x86, 0x89, 0xe7, 0xe5, 0x7c, 0x37, 0xec, - 0x72, 0xe7, 0x1f, 0x9a, 0x60, 0xff, 0x3c, 0xc9, 0x2e, 0x65, 0xc6, 0x1e, 0x82, 0x4d, 0x45, 0x20, - 0x63, 0x46, 0xcb, 0x82, 0xd0, 0x4d, 0x13, 0xbd, 0x0f, 0x2e, 0x81, 0x32, 0x16, 0xea, 0x52, 0x1f, - 0x15, 0xfd, 0xf3, 0x40, 0xe3, 0xa2, 0x33, 0x7d, 0x3a, 0xd7, 0x75, 0x7d, 0x50, 0xcb, 0x9a, 0x58, - 0xad, 0x32, 0xb3, 0xd1, 0xd1, 0x65, 0x96, 0x11, 0x9a, 0xe6, 0x63, 0x8b, 0x7d, 0x04, 0xad, 0x91, - 0xde, 0x29, 0x2a, 0x95, 0xdf, 0x61, 0x37, 0xd6, 0x0b, 0xc6, 0x72, 0xe4, 0x47, 0x60, 0xeb, 0x34, - 0x50, 0x6f, 0xb3, 0xf6, 0xb6, 0xd9, 0xe8, 0x57, 0x59, 0xa6, 0xc3, 0xa7, 0x60, 0xeb, 0x5b, 0xae, - 0x3b, 0xd4, 0xc2, 0xc9, 0x06, 0xab, 0xb2, 0x0a, 0x63, 0x66, 0x1f, 0x81, 0xad, 0xfd, 0xa8, 0xee, - 0x52, 0xf3, 0xa9, 0x7a, 0xa3, 0x3a, 0x8a, 0x69, 0x03, 0xe6, 0xd2, 0x97, 0x61, 0x25, 0x51, 0x64, - 0xc5, 0xe6, 0x6e, 0xb8, 0x85, 0x9f, 0xc3, 0x5a, 0x2d, 0xa9, 0x64, 0x03, 0x02, 0xfc, 0x86, 0x3c, - 0x73, 0xb5, 0xf3, 0x93, 0xfe, 0xbf, 0x7e, 0x73, 0xcf, 0xfa, 0xb7, 0x6f, 0xee, 0x59, 0xff, 0xf1, - 0xcd, 0x3d, 0xeb, 0x57, 0xff, 0x79, 0xef, 0xd6, 0x99, 0x4d, 0xff, 0x5c, 0xf9, 0xec, 0xff, 0x02, - 0x00, 0x00, 0xff, 0xff, 0x60, 0x38, 0xdf, 0xf7, 0xfd, 0x22, 0x00, 0x00, + // 3691 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x5a, 0xcd, 0x6f, 0x23, 0x47, + 0x76, 0x9f, 0x6e, 0x92, 0xcd, 0xee, 0x47, 0x4a, 0x43, 0x97, 0xc7, 0x63, 0x5a, 0xde, 0x9d, 0x91, + 0xdb, 0x1f, 0x23, 0x8f, 0xd7, 0x9a, 0xb1, 0xbc, 0x49, 0xd6, 0x1b, 0xe4, 0xa0, 0x91, 0x38, 0xb3, + 0xf2, 0x48, 0x94, 0x52, 0xa4, 0xc6, 0x59, 0x1f, 0x42, 0xb4, 0xba, 0x4b, 0x54, 0xaf, 0x9a, 0xdd, + 0x9d, 0xae, 0xa6, 0x42, 0xf9, 0x96, 0x43, 0x02, 0x04, 0x48, 0x4e, 0xb9, 0x2c, 0x82, 0x20, 0x87, + 0x1c, 0x03, 0x04, 0xb9, 0xee, 0x39, 0x40, 0x80, 0x1c, 0x83, 0xfc, 0x05, 0x81, 0x93, 0x63, 0xce, + 0x01, 0x72, 0x0b, 0xde, 0xab, 0x6a, 0x76, 0x37, 0x47, 0x33, 0x5e, 0x2f, 0xb0, 0x27, 0xd6, 0xfb, + 0xa8, 0xaf, 0x5f, 0xbd, 0x7a, 0xef, 0xd5, 0x6b, 0x82, 0x9d, 0x9e, 0x6d, 0xa7, 0x59, 0x92, 0x27, + 0xcc, 0x4c, 0xcf, 0x36, 0x1c, 0x2f, 0x0d, 0x15, 0xb9, 0xf1, 0x60, 0x1a, 0xe6, 0x17, 0xf3, 0xb3, + 0x6d, 0x3f, 0x99, 0x3d, 0x0a, 0xa6, 0x99, 0x97, 0x5e, 0x7c, 0x1a, 0x26, 0x8f, 0xce, 0xbc, 0x60, + 0x2a, 0xb2, 0x47, 0xe9, 0xd9, 0xa3, 0xa2, 0x9f, 0xbb, 0x01, 0xcd, 0xc3, 0x50, 0xe6, 0x8c, 0x41, + 0x73, 0x1e, 0x06, 0xb2, 0x6f, 0x6c, 0x36, 0xb6, 0x2c, 0x4e, 0x6d, 0xf7, 0x08, 0x9c, 0xb1, 0x27, + 0x2f, 0x5f, 0x78, 0xd1, 0x5c, 0xb0, 0x1e, 0x34, 0xae, 0xbc, 0xa8, 0x6f, 0x6c, 0x1a, 0x5b, 0x5d, + 0x8e, 0x4d, 0xb6, 0x0d, 0xf6, 0x95, 0x17, 0x4d, 0xf2, 0xeb, 0x54, 0xf4, 0xcd, 0x4d, 0x63, 0x6b, + 0x7d, 0xe7, 0xcd, 0xed, 0xf4, 0x6c, 0xfb, 0x24, 0x91, 0x79, 0x18, 0x4f, 0xb7, 0x5f, 0x78, 0xd1, + 0xf8, 0x3a, 0x15, 0xbc, 0x7d, 0xa5, 0x1a, 0xee, 0x31, 0x74, 0x46, 0x99, 0xff, 0x74, 0x1e, 0xfb, + 0x79, 0x98, 0xc4, 0x38, 0x63, 0xec, 0xcd, 0x04, 0x8d, 0xe8, 0x70, 0x6a, 0x23, 0xcf, 0xcb, 0xa6, + 0xb2, 0xdf, 0xd8, 0x6c, 0x20, 0x0f, 0xdb, 0xac, 0x0f, 0xed, 0x50, 0xee, 0x25, 0xf3, 0x38, 0xef, + 0x37, 0x37, 0x8d, 0x2d, 0x9b, 0x17, 0xa4, 0xfb, 0x97, 0x0d, 0x68, 0xfd, 0xe1, 0x5c, 0x64, 0xd7, + 0xd4, 0x2f, 0xcf, 0xb3, 0x62, 0x2c, 0x6c, 0xb3, 0x3b, 0xd0, 0x8a, 0xbc, 0x78, 0x2a, 0xfb, 0x26, + 0x0d, 0xa6, 0x08, 0xf6, 0x2e, 0x38, 0xde, 0x79, 0x2e, 0xb2, 0xc9, 0x3c, 0x0c, 0xfa, 0x8d, 0x4d, + 0x63, 0xcb, 0xe2, 0x36, 0x31, 0x4e, 0xc3, 0x80, 0xbd, 0x03, 0x76, 0x90, 0x4c, 0xfc, 0xea, 0x5c, + 0x41, 0x42, 0x73, 0xb1, 0xf7, 0xc1, 0x9e, 0x87, 0xc1, 0x24, 0x0a, 0x65, 0xde, 0x6f, 0x6d, 0x1a, + 0x5b, 0x9d, 0x1d, 0x1b, 0x37, 0x8b, 0xd8, 0xf1, 0xf6, 0x3c, 0x0c, 0x08, 0xc4, 0x87, 0x60, 0xcb, + 0xcc, 0x9f, 0x9c, 0xcf, 0x63, 0xbf, 0x6f, 0x91, 0xd2, 0x6d, 0x54, 0xaa, 0xec, 0x9a, 0xb7, 0xa5, + 0x22, 0x70, 0x5b, 0x99, 0xb8, 0x12, 0x99, 0x14, 0xfd, 0xb6, 0x9a, 0x4a, 0x93, 0xec, 0x31, 0x74, + 0xce, 0x3d, 0x5f, 0xe4, 0x93, 0xd4, 0xcb, 0xbc, 0x59, 0xdf, 0x2e, 0x07, 0x7a, 0x8a, 0xec, 0x13, + 0xe4, 0x4a, 0x0e, 0xe7, 0x4b, 0x82, 0x7d, 0x0e, 0x6b, 0x44, 0xc9, 0xc9, 0x79, 0x18, 0xe5, 0x22, + 0xeb, 0x3b, 0xd4, 0x67, 0x9d, 0xfa, 0x10, 0x67, 0x9c, 0x09, 0xc1, 0xbb, 0x4a, 0x49, 0x71, 0xd8, + 0x0f, 0x01, 0xc4, 0x22, 0xf5, 0xe2, 0x60, 0xe2, 0x45, 0x51, 0x1f, 0x68, 0x0d, 0x8e, 0xe2, 0xec, + 0x46, 0x11, 0x7b, 0x1b, 0xd7, 0xe7, 0x05, 0x93, 0x5c, 0xf6, 0xd7, 0x36, 0x8d, 0xad, 0x26, 0xb7, + 0x90, 0x1c, 0x4b, 0xc4, 0xd5, 0xf7, 0xfc, 0x0b, 0xd1, 0x5f, 0xdf, 0x34, 0xb6, 0x5a, 0x5c, 0x11, + 0xee, 0x0e, 0x38, 0x64, 0x27, 0x84, 0xc3, 0x87, 0x60, 0x5d, 0x21, 0xa1, 0xcc, 0xa9, 0xb3, 0xb3, + 0x86, 0x0b, 0x59, 0x9a, 0x12, 0xd7, 0x42, 0xf7, 0x1e, 0xd8, 0x87, 0x5e, 0x3c, 0x2d, 0xec, 0x0f, + 0x0f, 0x88, 0x3a, 0x38, 0x9c, 0xda, 0xee, 0x2f, 0x4d, 0xb0, 0xb8, 0x90, 0xf3, 0x28, 0x67, 0x0f, + 0x00, 0x10, 0xfe, 0x99, 0x97, 0x67, 0xe1, 0x42, 0x8f, 0x5a, 0x1e, 0x80, 0x33, 0x0f, 0x83, 0x23, + 0x12, 0xb1, 0xc7, 0xd0, 0xa5, 0xd1, 0x0b, 0x55, 0xb3, 0x5c, 0xc0, 0x72, 0x7d, 0xbc, 0x43, 0x2a, + 0xba, 0xc7, 0x5d, 0xb0, 0xe8, 0xc4, 0x95, 0xd5, 0xad, 0x71, 0x4d, 0xb1, 0x0f, 0x61, 0x3d, 0x8c, + 0x73, 0x3c, 0x11, 0x3f, 0x9f, 0x04, 0x42, 0x16, 0x26, 0xb1, 0xb6, 0xe4, 0xee, 0x0b, 0x99, 0xb3, + 0xcf, 0x40, 0xc1, 0x5a, 0x4c, 0xd8, 0xa2, 0x09, 0xd7, 0x97, 0xc7, 0x25, 0xd5, 0x8c, 0xa4, 0xa3, + 0x67, 0xfc, 0x14, 0x3a, 0xb8, 0xbf, 0xa2, 0x87, 0x45, 0x3d, 0xba, 0xb4, 0x1b, 0x0d, 0x07, 0x07, + 0x54, 0xd0, 0xea, 0x08, 0x0d, 0x9a, 0x9d, 0x32, 0x13, 0x6a, 0xbb, 0x03, 0x68, 0x1d, 0x67, 0x81, + 0xc8, 0x6e, 0xb4, 0x7c, 0x06, 0xcd, 0x40, 0x48, 0x9f, 0x2e, 0xa5, 0xcd, 0xa9, 0x5d, 0xde, 0x86, + 0x46, 0xe5, 0x36, 0xb8, 0x7f, 0x6f, 0x40, 0x67, 0x94, 0x64, 0xf9, 0x91, 0x90, 0xd2, 0x9b, 0x0a, + 0x76, 0x1f, 0x5a, 0x09, 0x0e, 0xab, 0x11, 0x76, 0x70, 0x4d, 0x34, 0x0f, 0x57, 0xfc, 0x95, 0x73, + 0x30, 0x5f, 0x7d, 0x0e, 0x68, 0x25, 0x74, 0x8f, 0x1a, 0xda, 0x4a, 0xe8, 0x16, 0xdd, 0x05, 0x2b, + 0x39, 0x3f, 0x97, 0x42, 0x61, 0xd9, 0xe2, 0x9a, 0x7a, 0xa5, 0xb1, 0xb9, 0xbf, 0x03, 0x80, 0xeb, + 0xfb, 0x9e, 0x56, 0xe0, 0x5e, 0x40, 0x87, 0x7b, 0xe7, 0xf9, 0x5e, 0x12, 0xe7, 0x62, 0x91, 0xb3, + 0x75, 0x30, 0xc3, 0x80, 0x20, 0xb2, 0xb8, 0x19, 0x06, 0xb8, 0xb8, 0x69, 0x96, 0xcc, 0x53, 0x42, + 0x68, 0x8d, 0x2b, 0x82, 0xa0, 0x0c, 0x82, 0x8c, 0x56, 0x8c, 0x50, 0x06, 0x41, 0xc6, 0xee, 0x43, + 0x47, 0xc6, 0x5e, 0x2a, 0x2f, 0x92, 0x1c, 0x17, 0xd7, 0xa4, 0xc5, 0x41, 0xc1, 0x1a, 0x4b, 0xf7, + 0x5f, 0x0d, 0xb0, 0x8e, 0xc4, 0xec, 0x4c, 0x64, 0x2f, 0xcd, 0xf2, 0x0e, 0xd8, 0x34, 0xf0, 0x24, + 0x0c, 0xf4, 0x44, 0x6d, 0xa2, 0x0f, 0x82, 0x1b, 0xa7, 0xba, 0x0b, 0x56, 0x24, 0x3c, 0x04, 0x5f, + 0xd9, 0x99, 0xa6, 0x10, 0x1b, 0x6f, 0x36, 0x09, 0x84, 0x17, 0x90, 0xe3, 0xb1, 0xb9, 0xe5, 0xcd, + 0xf6, 0x85, 0x17, 0xe0, 0xda, 0x22, 0x4f, 0xe6, 0x93, 0x79, 0x1a, 0x78, 0xb9, 0x20, 0x87, 0xd3, + 0x44, 0xc3, 0x91, 0xf9, 0x29, 0x71, 0xd8, 0x43, 0x78, 0xc3, 0x8f, 0xe6, 0x12, 0xbd, 0x5d, 0x18, + 0x9f, 0x27, 0x93, 0x24, 0x8e, 0xae, 0x09, 0x5f, 0x9b, 0xdf, 0xd6, 0x82, 0x83, 0xf8, 0x3c, 0x39, + 0x8e, 0xa3, 0x6b, 0xf7, 0x57, 0x26, 0xb4, 0x9e, 0x11, 0x0c, 0x8f, 0xa1, 0x3d, 0xa3, 0x0d, 0x15, + 0xb7, 0xf7, 0x2e, 0x22, 0x4c, 0xb2, 0x6d, 0xb5, 0x53, 0x39, 0x88, 0xf3, 0xec, 0x9a, 0x17, 0x6a, + 0xd8, 0x23, 0xf7, 0xce, 0x22, 0x91, 0x4b, 0x6d, 0x11, 0x95, 0x1e, 0x63, 0x25, 0xd0, 0x3d, 0xb4, + 0xda, 0x2a, 0xac, 0x8d, 0x55, 0x58, 0xd9, 0x06, 0xd8, 0xfe, 0x85, 0xf0, 0x2f, 0xe5, 0x7c, 0xa6, + 0x41, 0x5f, 0xd2, 0x1b, 0x4f, 0xa1, 0x5b, 0x5d, 0x07, 0x46, 0xa6, 0x4b, 0x71, 0x4d, 0xc0, 0x37, + 0x39, 0x36, 0xd9, 0x26, 0xb4, 0xe8, 0x86, 0x13, 0xec, 0x9d, 0x1d, 0xc0, 0xe5, 0xa8, 0x2e, 0x5c, + 0x09, 0x7e, 0x6a, 0xfe, 0xc4, 0xc0, 0x71, 0xaa, 0xab, 0xab, 0x8e, 0xe3, 0xbc, 0x7a, 0x1c, 0xd5, + 0xa5, 0x32, 0x8e, 0xfb, 0x7f, 0x26, 0x74, 0xbf, 0x16, 0x59, 0x72, 0x92, 0x25, 0x69, 0x22, 0xbd, + 0x88, 0xed, 0xd6, 0x77, 0xa7, 0x50, 0xdc, 0xc4, 0xce, 0x55, 0xb5, 0xed, 0xd1, 0x72, 0xbb, 0x0a, + 0x9d, 0xea, 0xfe, 0x5d, 0xb0, 0x14, 0xba, 0x37, 0x6c, 0x41, 0x4b, 0x50, 0x47, 0xe1, 0x49, 0xf8, + 0xd5, 0x97, 0xa7, 0x25, 0xec, 0x1e, 0xc0, 0xcc, 0x5b, 0x1c, 0x0a, 0x4f, 0x8a, 0x83, 0xa0, 0x30, + 0xdf, 0x92, 0x83, 0x38, 0xcf, 0xbc, 0xc5, 0x78, 0x11, 0x8f, 0x25, 0x59, 0x57, 0x93, 0x2f, 0x69, + 0xf6, 0x03, 0x70, 0x66, 0xde, 0x02, 0xef, 0xd1, 0x41, 0xa0, 0xad, 0xab, 0x64, 0xb0, 0xf7, 0xa0, + 0x91, 0x2f, 0x62, 0x72, 0x4a, 0x18, 0x9d, 0x30, 0xf5, 0x18, 0x2f, 0x62, 0x7d, 0xe3, 0x38, 0xca, + 0x0a, 0x40, 0xed, 0x12, 0xd0, 0x1e, 0x34, 0xfc, 0x30, 0xa0, 0xf0, 0xe4, 0x70, 0x6c, 0x6e, 0xfc, + 0x01, 0xdc, 0x5e, 0xc1, 0xa1, 0x7a, 0x0e, 0x6b, 0xaa, 0xdb, 0x9d, 0xea, 0x39, 0x34, 0xab, 0xd8, + 0xff, 0xaa, 0x01, 0xb7, 0xb5, 0x31, 0x5c, 0x84, 0xe9, 0x28, 0x47, 0xb3, 0xef, 0x43, 0x9b, 0xbc, + 0x8d, 0xc8, 0xb4, 0x4d, 0x14, 0x24, 0xfb, 0x3d, 0xb0, 0xe8, 0x06, 0x16, 0x76, 0x7a, 0xbf, 0x44, + 0x75, 0xd9, 0x5d, 0xd9, 0xad, 0x3e, 0x12, 0xad, 0xce, 0x7e, 0x0c, 0xad, 0x6f, 0x44, 0x96, 0x28, + 0xef, 0xd9, 0xd9, 0xb9, 0x77, 0x53, 0x3f, 0x3c, 0x5b, 0xdd, 0x4d, 0x29, 0xff, 0x16, 0xc1, 0xff, + 0x00, 0xfd, 0xe5, 0x2c, 0xb9, 0x12, 0x41, 0xbf, 0x4d, 0x2b, 0xaa, 0xda, 0x47, 0x21, 0x2a, 0xd0, + 0xb6, 0x4b, 0xb4, 0xf7, 0xa1, 0x53, 0xd9, 0xde, 0x0d, 0x48, 0xdf, 0xaf, 0x5b, 0xbc, 0xb3, 0xbc, + 0xc8, 0xd5, 0x8b, 0xb3, 0x0f, 0x50, 0x6e, 0xf6, 0x37, 0xbd, 0x7e, 0xee, 0x9f, 0x19, 0x70, 0x7b, + 0x2f, 0x89, 0x63, 0x41, 0x89, 0x91, 0x3a, 0xba, 0xd2, 0xec, 0x8d, 0x57, 0x9a, 0xfd, 0xc7, 0xd0, + 0x92, 0xa8, 0xac, 0x47, 0x7f, 0xf3, 0x86, 0xb3, 0xe0, 0x4a, 0x03, 0xdd, 0xcc, 0xcc, 0x5b, 0x4c, + 0x52, 0x11, 0x07, 0x61, 0x3c, 0x2d, 0xdc, 0xcc, 0xcc, 0x5b, 0x9c, 0x28, 0x8e, 0xfb, 0x0f, 0x06, + 0x58, 0xea, 0xc6, 0xd4, 0xbc, 0xb5, 0x51, 0xf7, 0xd6, 0x3f, 0x00, 0x27, 0xcd, 0x44, 0x10, 0xfa, + 0xc5, 0xac, 0x0e, 0x2f, 0x19, 0x68, 0x9c, 0xe7, 0x49, 0xe6, 0x0b, 0x1a, 0xde, 0xe6, 0x8a, 0x40, + 0xae, 0x4c, 0x3d, 0x5f, 0x25, 0x77, 0x0d, 0xae, 0x08, 0xf4, 0xf1, 0xea, 0x70, 0xe8, 0x50, 0x6c, + 0xae, 0x29, 0xcc, 0x4a, 0x29, 0xfe, 0x91, 0x87, 0x76, 0x48, 0x64, 0x23, 0x83, 0x5c, 0xf3, 0x3f, + 0x9a, 0xd0, 0xdd, 0x0f, 0x33, 0xe1, 0xe7, 0x22, 0x18, 0x04, 0x53, 0x1a, 0x45, 0xc4, 0x79, 0x98, + 0x5f, 0xeb, 0x60, 0xa3, 0xa9, 0x65, 0x2e, 0x60, 0xd6, 0xb3, 0x60, 0x75, 0x16, 0x0d, 0x4a, 0xdc, + 0x15, 0xc1, 0x76, 0x00, 0x54, 0x96, 0x44, 0xc9, 0x7b, 0xf3, 0xd5, 0xc9, 0xbb, 0x43, 0x6a, 0xd8, + 0x44, 0x80, 0x54, 0x9f, 0x50, 0x05, 0x22, 0x8b, 0x32, 0xfb, 0x39, 0x1a, 0x32, 0x25, 0x17, 0x67, + 0x22, 0x22, 0x43, 0xa5, 0xe4, 0xe2, 0x4c, 0x44, 0xcb, 0x94, 0xae, 0xad, 0x96, 0x83, 0x6d, 0xf6, + 0x3e, 0x98, 0x49, 0x4a, 0x9b, 0xd7, 0x13, 0x56, 0x37, 0xb6, 0x7d, 0x9c, 0x72, 0x33, 0x49, 0xd1, + 0x0a, 0x54, 0xa6, 0xda, 0x77, 0xb4, 0x71, 0xa3, 0x77, 0xa1, 0x6c, 0x8a, 0x6b, 0x89, 0x7b, 0x17, + 0xcc, 0xe3, 0x94, 0xb5, 0xa1, 0x31, 0x1a, 0x8c, 0x7b, 0xb7, 0xb0, 0xb1, 0x3f, 0x38, 0xec, 0x19, + 0xee, 0xff, 0x98, 0xe0, 0x1c, 0xcd, 0x73, 0x0f, 0x6d, 0x4a, 0xbe, 0xee, 0x50, 0xdf, 0x01, 0x5b, + 0xe6, 0x5e, 0x46, 0x1e, 0x5a, 0xb9, 0x95, 0x36, 0xd1, 0x63, 0xc9, 0x3e, 0x82, 0x96, 0x08, 0xa6, + 0xa2, 0xb8, 0xed, 0xbd, 0xd5, 0x75, 0x72, 0x25, 0x66, 0x5b, 0x60, 0x49, 0xff, 0x42, 0xcc, 0xbc, + 0x7e, 0xb3, 0x54, 0x1c, 0x11, 0x47, 0x45, 0x60, 0xae, 0xe5, 0x6c, 0x07, 0xde, 0x0a, 0xa7, 0x71, + 0x92, 0x89, 0x49, 0x18, 0x07, 0x62, 0x31, 0xf1, 0x93, 0xf8, 0x3c, 0x0a, 0xfd, 0x5c, 0x47, 0xf4, + 0x37, 0x95, 0xf0, 0x00, 0x65, 0x7b, 0x5a, 0xc4, 0x3e, 0x80, 0x16, 0x9e, 0x8e, 0xd4, 0xf9, 0x21, + 0x65, 0x94, 0x78, 0x10, 0x7a, 0x68, 0x25, 0x64, 0x9f, 0x42, 0x3b, 0xc8, 0x92, 0x74, 0x92, 0xa4, + 0x84, 0xf3, 0xfa, 0xce, 0x1d, 0xba, 0x0f, 0x05, 0x02, 0xdb, 0xfb, 0x59, 0x92, 0x1e, 0xa7, 0xdc, + 0x0a, 0xe8, 0x17, 0x93, 0x7e, 0x52, 0x57, 0x36, 0xa1, 0x3c, 0x83, 0x83, 0x1c, 0x4a, 0x8e, 0xdd, + 0x47, 0x60, 0xa9, 0x0e, 0xcc, 0x86, 0xe6, 0xf0, 0x78, 0x38, 0x50, 0xd0, 0xee, 0x1e, 0x1e, 0xf6, + 0x0c, 0x64, 0xed, 0xef, 0x8e, 0x77, 0x7b, 0x26, 0xb6, 0xc6, 0x3f, 0x3f, 0x19, 0xf4, 0x1a, 0xee, + 0xdf, 0x18, 0x60, 0x17, 0xfe, 0x9b, 0x7d, 0x8c, 0x8e, 0x97, 0xfc, 0xbf, 0xbe, 0xbe, 0xf4, 0x68, + 0xa9, 0x24, 0x62, 0xbc, 0x90, 0xa3, 0xc5, 0x10, 0x12, 0x85, 0x47, 0x27, 0xa2, 0x9a, 0x06, 0x36, + 0x6a, 0x6f, 0x0e, 0xcc, 0x68, 0x93, 0x58, 0xe8, 0xcc, 0x88, 0xda, 0x74, 0x80, 0x61, 0xec, 0x0b, + 0xd4, 0x6e, 0xe9, 0x03, 0x44, 0x7a, 0x2c, 0xdd, 0xbf, 0x33, 0xc1, 0x5e, 0x46, 0xe3, 0x4f, 0xc0, + 0x99, 0x15, 0x70, 0x68, 0x9f, 0xb1, 0x56, 0xc3, 0x88, 0x97, 0x72, 0x76, 0x17, 0xcc, 0xcb, 0x2b, + 0x7d, 0x9c, 0x16, 0x6a, 0x3d, 0x7f, 0xc1, 0xcd, 0xcb, 0xab, 0xd2, 0xe9, 0xb4, 0xbe, 0xd3, 0xe9, + 0x3c, 0x80, 0xdb, 0x7e, 0x24, 0xbc, 0x78, 0x52, 0xfa, 0x0c, 0x75, 0x2d, 0xd6, 0x89, 0x7d, 0xb2, + 0x74, 0x1c, 0xda, 0x71, 0xb6, 0xcb, 0xf0, 0xf8, 0x21, 0xb4, 0x02, 0x11, 0xe5, 0x5e, 0xf5, 0xcd, + 0x77, 0x9c, 0x79, 0x7e, 0x24, 0xf6, 0x91, 0xcd, 0x95, 0x94, 0x6d, 0x81, 0x5d, 0xa4, 0x0a, 0xfa, + 0xa5, 0x47, 0x8f, 0x87, 0xe2, 0x1c, 0xf8, 0x52, 0x5a, 0xc2, 0x0c, 0x15, 0x98, 0xdd, 0xcf, 0xa0, + 0xf1, 0xfc, 0xc5, 0x48, 0xef, 0xd5, 0x78, 0x69, 0xaf, 0x05, 0xd8, 0x66, 0x09, 0xb6, 0xfb, 0xbf, + 0x0d, 0x68, 0x6b, 0xdf, 0x80, 0xeb, 0x9e, 0x2f, 0x13, 0x5d, 0x6c, 0xd6, 0xe3, 0xf3, 0xd2, 0xc9, + 0x54, 0xeb, 0x03, 0x8d, 0xef, 0xae, 0x0f, 0xb0, 0x9f, 0x42, 0x37, 0x55, 0xb2, 0xaa, 0x5b, 0x7a, + 0xbb, 0xda, 0x47, 0xff, 0x52, 0xbf, 0x4e, 0x5a, 0x12, 0x68, 0x0c, 0xf4, 0xa4, 0xca, 0xbd, 0x29, + 0x1d, 0x51, 0x97, 0xb7, 0x91, 0x1e, 0x7b, 0xd3, 0x57, 0x38, 0xa7, 0x5f, 0xc3, 0xc7, 0x60, 0x42, + 0x9f, 0xa4, 0xfd, 0x2e, 0xf9, 0x0d, 0xf4, 0x4b, 0x55, 0x97, 0xb1, 0x56, 0x77, 0x19, 0xef, 0x82, + 0xe3, 0x27, 0xb3, 0x59, 0x48, 0xb2, 0x75, 0x9d, 0xb0, 0x12, 0x63, 0x2c, 0xdd, 0xbf, 0x30, 0xa0, + 0xad, 0x77, 0xcb, 0x3a, 0xd0, 0xde, 0x1f, 0x3c, 0xdd, 0x3d, 0x3d, 0x44, 0xaf, 0x05, 0x60, 0x3d, + 0x39, 0x18, 0xee, 0xf2, 0x9f, 0xf7, 0x0c, 0xbc, 0x66, 0x07, 0xc3, 0x71, 0xcf, 0x64, 0x0e, 0xb4, + 0x9e, 0x1e, 0x1e, 0xef, 0x8e, 0x7b, 0x0d, 0xbc, 0x67, 0x4f, 0x8e, 0x8f, 0x0f, 0x7b, 0x4d, 0xd6, + 0x05, 0x7b, 0x7f, 0x77, 0x3c, 0x18, 0x1f, 0x1c, 0x0d, 0x7a, 0x2d, 0xd4, 0x7d, 0x36, 0x38, 0xee, + 0x59, 0xd8, 0x38, 0x3d, 0xd8, 0xef, 0xb5, 0x51, 0x7e, 0xb2, 0x3b, 0x1a, 0x7d, 0x75, 0xcc, 0xf7, + 0x7b, 0x36, 0x8e, 0x3b, 0x1a, 0xf3, 0x83, 0xe1, 0xb3, 0x9e, 0x83, 0xed, 0xe3, 0x27, 0x5f, 0x0e, + 0xf6, 0xc6, 0x3d, 0x70, 0x3f, 0x83, 0x4e, 0x05, 0x41, 0xec, 0xcd, 0x07, 0x4f, 0x7b, 0xb7, 0x70, + 0xca, 0x17, 0xbb, 0x87, 0xa7, 0x83, 0x9e, 0xc1, 0xd6, 0x01, 0xa8, 0x39, 0x39, 0xdc, 0x1d, 0x3e, + 0xeb, 0x99, 0xee, 0xef, 0x82, 0x7d, 0x1a, 0x06, 0x4f, 0xa2, 0xc4, 0xbf, 0x44, 0xc3, 0x38, 0xf3, + 0xa4, 0xd0, 0xa1, 0x9e, 0xda, 0x18, 0x8b, 0xc8, 0x28, 0xa5, 0x3e, 0x7b, 0x4d, 0xb9, 0x43, 0x68, + 0x9f, 0x86, 0xc1, 0x89, 0xe7, 0x5f, 0xa2, 0xcf, 0x39, 0xc3, 0xfe, 0x13, 0x19, 0x7e, 0x23, 0xb4, + 0x1b, 0x76, 0x88, 0x33, 0x0a, 0xbf, 0x11, 0xec, 0x03, 0xb0, 0x88, 0x28, 0x92, 0x32, 0xb2, 0xe5, + 0x62, 0x4e, 0xae, 0x65, 0xee, 0x5f, 0x19, 0xcb, 0xb5, 0x53, 0xbd, 0xe0, 0x3e, 0x34, 0x53, 0xcf, + 0xbf, 0xd4, 0x8e, 0xa6, 0xa3, 0xfb, 0xe0, 0x7c, 0x9c, 0x04, 0xec, 0x01, 0xd8, 0xda, 0x40, 0x8a, + 0x81, 0x3b, 0x15, 0x4b, 0xe2, 0x4b, 0x61, 0xfd, 0xe8, 0x1a, 0xf5, 0xa3, 0xc3, 0xed, 0xc9, 0x34, + 0x0a, 0xe9, 0xe9, 0xd7, 0x40, 0x87, 0xa4, 0x28, 0xf7, 0xc7, 0x00, 0x65, 0x31, 0xe6, 0x86, 0x97, + 0xc3, 0x1d, 0x68, 0x79, 0x51, 0xa8, 0x51, 0x71, 0xb8, 0x22, 0xdc, 0x21, 0x74, 0x2a, 0x25, 0x1c, + 0xb4, 0x27, 0x2f, 0x8a, 0x26, 0x97, 0xe2, 0x5a, 0x52, 0x5f, 0x9b, 0xb7, 0xbd, 0x28, 0x7a, 0x2e, + 0xae, 0x25, 0x3a, 0x7f, 0x55, 0xfd, 0x31, 0x57, 0xca, 0x09, 0xd4, 0x95, 0x2b, 0xa1, 0xfb, 0x23, + 0xb0, 0x54, 0x8d, 0xa1, 0x62, 0xce, 0xc6, 0x2b, 0x43, 0xe6, 0x17, 0x7a, 0xcd, 0x54, 0x91, 0x60, + 0x9f, 0xe8, 0x2a, 0x93, 0x54, 0x35, 0x2d, 0xa3, 0x4c, 0x23, 0x95, 0x92, 0x2e, 0x30, 0x91, 0xb2, + 0xbb, 0x0f, 0xf6, 0x6b, 0xeb, 0x76, 0x1a, 0x00, 0xb3, 0x04, 0xe0, 0x86, 0x4a, 0x9e, 0xfb, 0x0b, + 0x80, 0xb2, 0x1a, 0xa5, 0x6f, 0x97, 0x1a, 0x05, 0x6f, 0xd7, 0x43, 0x7c, 0xf2, 0x85, 0x51, 0x90, + 0x89, 0xb8, 0xb6, 0xeb, 0xb2, 0x7e, 0xb5, 0x94, 0xb3, 0x4d, 0x68, 0x52, 0x91, 0xad, 0x51, 0x7a, + 0xbf, 0x65, 0x85, 0x8d, 0x24, 0xee, 0x02, 0xd6, 0x54, 0x24, 0xe6, 0xe2, 0x4f, 0xe6, 0x42, 0xbe, + 0x36, 0xbf, 0xbb, 0x07, 0xb0, 0xf4, 0xd5, 0x45, 0xb9, 0xb0, 0xc2, 0x41, 0x23, 0x38, 0x0f, 0x45, + 0x14, 0x14, 0xbb, 0xd1, 0x14, 0x1e, 0xb2, 0x8a, 0xd0, 0x4d, 0x55, 0x53, 0x21, 0xc2, 0xfd, 0x7d, + 0xe8, 0x16, 0x33, 0x53, 0xd1, 0xe2, 0x93, 0x65, 0x96, 0xa0, 0x30, 0x56, 0x6f, 0x25, 0xa5, 0x32, + 0x4c, 0x02, 0xf1, 0xc4, 0xec, 0x1b, 0x45, 0xa2, 0xe0, 0xfe, 0x47, 0xa3, 0xe8, 0xad, 0xdf, 0xf0, + 0xb5, 0xdc, 0xd3, 0x58, 0xcd, 0x3d, 0xeb, 0x79, 0x9c, 0xf9, 0x6b, 0xe5, 0x71, 0x3f, 0x01, 0x27, + 0xa0, 0x64, 0x26, 0xbc, 0x2a, 0xfc, 0xf2, 0xc6, 0x6a, 0xe2, 0xa2, 0xd3, 0x9d, 0xf0, 0x4a, 0xf0, + 0x52, 0x19, 0xd7, 0x92, 0x27, 0x97, 0x22, 0x0e, 0xbf, 0xa1, 0x22, 0x05, 0xee, 0xb9, 0x64, 0x94, + 0x15, 0x1f, 0x95, 0xd3, 0xe8, 0x8a, 0x4f, 0x51, 0xbc, 0xb2, 0xca, 0xe2, 0x15, 0xe2, 0x39, 0x4f, + 0xa5, 0xc8, 0xf2, 0x22, 0x0b, 0x56, 0xd4, 0x32, 0x61, 0x74, 0xb4, 0x2e, 0x26, 0x8c, 0xef, 0x41, + 0x37, 0x4e, 0xe2, 0x49, 0x3c, 0x8f, 0x22, 0xcc, 0xd3, 0x75, 0x9d, 0xb2, 0x13, 0x27, 0xf1, 0x50, + 0xb3, 0xd8, 0x43, 0x78, 0xa3, 0xaa, 0xa2, 0xec, 0xb9, 0xa3, 0xca, 0x1c, 0x15, 0x3d, 0xb2, 0xfa, + 0x2d, 0xe8, 0x25, 0x67, 0xbf, 0x10, 0x7e, 0x4e, 0x88, 0x4d, 0xc8, 0x90, 0xbb, 0x2a, 0x3a, 0x2b, + 0x3e, 0x42, 0x34, 0xf4, 0x66, 0xc2, 0xfd, 0x02, 0x9c, 0x25, 0x08, 0x95, 0x6c, 0xc8, 0x81, 0xd6, + 0xc1, 0x70, 0x7f, 0xf0, 0x47, 0x3d, 0x03, 0x5d, 0x39, 0x1f, 0xbc, 0x18, 0xf0, 0xd1, 0xa0, 0x67, + 0xa2, 0x9b, 0xdd, 0x1f, 0x1c, 0x0e, 0xc6, 0x83, 0x5e, 0xe3, 0xcb, 0xa6, 0xdd, 0xee, 0xd9, 0xdc, + 0x16, 0x8b, 0x34, 0x0a, 0xfd, 0x30, 0x77, 0x47, 0x00, 0x65, 0xe2, 0x86, 0xfe, 0xa6, 0x9c, 0x5b, + 0x9d, 0xa8, 0x9d, 0xeb, 0x59, 0x31, 0xa5, 0xd4, 0xa6, 0x66, 0xbe, 0x2a, 0xa5, 0x54, 0x72, 0xf7, + 0x14, 0xec, 0x23, 0x2f, 0x7d, 0xe9, 0x09, 0xd6, 0x5d, 0x3e, 0xb4, 0xe7, 0xba, 0xec, 0xa4, 0x63, + 0xf4, 0x87, 0xd0, 0xd6, 0x2e, 0x4f, 0xdf, 0x9a, 0x9a, 0x3b, 0x2c, 0x64, 0xee, 0x9f, 0x1b, 0x70, + 0xe7, 0x28, 0xb9, 0x12, 0xcb, 0x34, 0xe5, 0xc4, 0xbb, 0x8e, 0x12, 0x2f, 0xf8, 0x0e, 0x43, 0xfc, + 0x21, 0x80, 0x4c, 0xe6, 0x99, 0x2f, 0x26, 0xd3, 0x65, 0xb5, 0xcb, 0x51, 0x9c, 0x67, 0xba, 0xb0, + 0x2e, 0x64, 0x4e, 0xc2, 0x86, 0xba, 0x7c, 0x48, 0xa3, 0xe8, 0x2d, 0xb0, 0xf2, 0x45, 0x5c, 0x16, + 0xd7, 0x5a, 0x39, 0xbe, 0x7f, 0xdd, 0x3d, 0x70, 0xc6, 0x0b, 0x7a, 0x15, 0xce, 0x65, 0x2d, 0xf0, + 0x1a, 0xaf, 0x09, 0xbc, 0xe6, 0x4a, 0xe0, 0xfd, 0x6f, 0x03, 0x3a, 0x95, 0xfc, 0x89, 0xbd, 0x07, + 0xcd, 0x7c, 0x11, 0xd7, 0xab, 0xd2, 0xc5, 0x24, 0x9c, 0x44, 0x68, 0x6f, 0xf8, 0x64, 0xf4, 0xa4, + 0x0c, 0xa7, 0xb1, 0x08, 0xf4, 0x90, 0xf8, 0x8c, 0xdc, 0xd5, 0x2c, 0x76, 0x08, 0xb7, 0x95, 0x27, + 0x29, 0x2a, 0x52, 0xc5, 0x43, 0xe1, 0xfd, 0x95, 0x7c, 0x4d, 0xbd, 0x9c, 0xf7, 0x0a, 0x2d, 0x55, + 0x1b, 0x58, 0x9f, 0xd6, 0x98, 0x1b, 0xbb, 0xf0, 0xe6, 0x0d, 0x6a, 0xdf, 0xab, 0x08, 0x72, 0x1f, + 0xd6, 0xc6, 0x8b, 0x78, 0x1c, 0xce, 0x84, 0xcc, 0xbd, 0x59, 0x4a, 0x89, 0x8b, 0x8e, 0x04, 0x4d, + 0x6e, 0xe6, 0xd2, 0xfd, 0x08, 0xba, 0x27, 0x42, 0x64, 0x5c, 0xc8, 0x34, 0x89, 0x55, 0xd0, 0x96, + 0xb4, 0x69, 0x1d, 0x76, 0x34, 0xe5, 0xfe, 0x31, 0x38, 0x98, 0xad, 0x3f, 0xf1, 0x72, 0xff, 0xe2, + 0xfb, 0x64, 0xf3, 0x1f, 0x41, 0x3b, 0x55, 0x66, 0xa2, 0x13, 0xec, 0x2e, 0xf9, 0x38, 0x6d, 0x3a, + 0xbc, 0x10, 0xba, 0x1c, 0x1a, 0xc3, 0xf9, 0xac, 0xfa, 0x29, 0xa9, 0xa9, 0x3e, 0x25, 0xd5, 0xde, + 0xbf, 0x66, 0xfd, 0xfd, 0x8b, 0x96, 0x77, 0x9e, 0x64, 0x7f, 0xea, 0x65, 0x81, 0x08, 0xf4, 0x23, + 0xbb, 0x64, 0xb8, 0x5f, 0x43, 0xa7, 0x38, 0x99, 0x83, 0x80, 0xbe, 0x16, 0x91, 0x69, 0x1c, 0x04, + 0x35, 0x4b, 0x51, 0x8f, 0x54, 0x11, 0x07, 0x07, 0xc5, 0x91, 0x2a, 0xa2, 0x3e, 0xb3, 0x2e, 0xc2, + 0x2c, 0x5f, 0xde, 0x4f, 0xa1, 0x5b, 0x24, 0xd5, 0x47, 0x22, 0xf7, 0xc8, 0xd8, 0xa2, 0x50, 0xc4, + 0x15, 0x43, 0xb4, 0x15, 0x63, 0x2c, 0x5f, 0x53, 0xee, 0x75, 0xb7, 0xc1, 0xd2, 0x96, 0xcc, 0xa0, + 0xe9, 0x27, 0x81, 0xba, 0x40, 0x2d, 0x4e, 0x6d, 0x84, 0x63, 0x26, 0xa7, 0x45, 0xf0, 0x9c, 0xc9, + 0xa9, 0xfb, 0xb7, 0x26, 0xac, 0x3d, 0xf1, 0xfc, 0xcb, 0x79, 0x5a, 0x44, 0xaf, 0xca, 0xcb, 0xc8, + 0xa8, 0xbd, 0x8c, 0xaa, 0xaf, 0x20, 0xb3, 0xf6, 0x0a, 0xaa, 0x2d, 0xa8, 0x51, 0x8f, 0x78, 0x6f, + 0x43, 0x7b, 0x1e, 0x87, 0x8b, 0xe2, 0xd6, 0x39, 0xdc, 0x42, 0x72, 0x2c, 0xd9, 0x26, 0x74, 0xf0, + 0x62, 0x86, 0x31, 0xbd, 0x87, 0x08, 0x10, 0x87, 0x57, 0x59, 0x78, 0xd3, 0x3d, 0xdf, 0x17, 0x52, + 0x62, 0xde, 0xa2, 0x73, 0x6a, 0x47, 0x71, 0x9e, 0x8b, 0x6b, 0x72, 0x04, 0xc2, 0xcf, 0x44, 0x3e, + 0x29, 0xdf, 0x36, 0x8e, 0xe2, 0xa0, 0xf8, 0x7d, 0x58, 0x93, 0x42, 0xca, 0x30, 0x89, 0x27, 0x14, + 0x39, 0xf4, 0x13, 0xb4, 0xab, 0x99, 0x63, 0xe4, 0xe1, 0x81, 0x7b, 0x71, 0x12, 0x5f, 0xcf, 0x92, + 0xb9, 0xd4, 0xc1, 0xa0, 0x64, 0xb8, 0x3d, 0x58, 0x2f, 0xb0, 0x51, 0xe6, 0xec, 0xe6, 0xb0, 0x36, + 0x58, 0xa4, 0xf4, 0x99, 0xe0, 0x3b, 0x63, 0x7d, 0x05, 0x48, 0xb3, 0x06, 0x64, 0x05, 0x92, 0x06, + 0x95, 0x6c, 0x0a, 0x48, 0x30, 0xfa, 0x27, 0xd9, 0xcc, 0xcb, 0x0b, 0xa8, 0x14, 0xe5, 0xfe, 0xb5, + 0x09, 0x8e, 0x5a, 0x08, 0x6e, 0xec, 0x63, 0x68, 0x52, 0x0c, 0x36, 0x28, 0xa0, 0xbe, 0x85, 0x57, + 0x65, 0x29, 0xdc, 0x7e, 0x2e, 0xae, 0x29, 0x0a, 0x93, 0xca, 0x8d, 0x65, 0x1a, 0xed, 0xaf, 0x55, + 0xfa, 0x49, 0xfe, 0xfa, 0x5d, 0x70, 0x94, 0xcf, 0x43, 0xbe, 0x2e, 0x81, 0x13, 0xe3, 0x34, 0xa4, + 0xef, 0x07, 0xb9, 0xc8, 0x66, 0xfa, 0x7c, 0xa8, 0x5d, 0xc6, 0x5f, 0x4b, 0x7d, 0xd4, 0x20, 0xc2, + 0xbd, 0x80, 0xb6, 0x9e, 0x1d, 0xe3, 0xd5, 0xe9, 0xf0, 0xf9, 0xf0, 0xf8, 0xab, 0x61, 0xef, 0xd6, + 0xf2, 0x31, 0x6f, 0x94, 0x11, 0xcd, 0xac, 0x46, 0xb4, 0x06, 0xf2, 0xf7, 0x8e, 0x4f, 0x87, 0xe3, + 0x5e, 0x93, 0xad, 0x81, 0x43, 0xcd, 0x09, 0x1f, 0xbc, 0xe8, 0xb5, 0xe8, 0x79, 0xb1, 0xf7, 0xb3, + 0xc1, 0xd1, 0x6e, 0xcf, 0x5a, 0x96, 0x02, 0xda, 0x18, 0x39, 0xde, 0x50, 0x5b, 0xae, 0xe6, 0xe9, + 0xd5, 0xef, 0xca, 0x4d, 0xf5, 0x5d, 0xf9, 0xb7, 0x9b, 0x9a, 0xef, 0xfc, 0x8b, 0x01, 0x4d, 0xf4, + 0x52, 0xf8, 0xf0, 0xff, 0x99, 0xf0, 0xb2, 0xfc, 0x4c, 0x78, 0x39, 0xab, 0x79, 0xa4, 0x8d, 0x1a, + 0xe5, 0xde, 0x7a, 0x6c, 0xb0, 0x6d, 0xf5, 0xc5, 0xa8, 0xf8, 0x10, 0xb6, 0x56, 0xf8, 0x3a, 0xf2, + 0x85, 0xab, 0xfa, 0x5b, 0xa4, 0xff, 0x65, 0x12, 0xc6, 0x7b, 0xea, 0x33, 0x0a, 0x5b, 0xf5, 0x8d, + 0xab, 0x3d, 0xd8, 0xa7, 0x60, 0x1d, 0x48, 0x74, 0xc2, 0x2f, 0xab, 0x52, 0x8c, 0xaf, 0xfa, 0x67, + 0xf7, 0xd6, 0xce, 0x3f, 0x37, 0xa0, 0xf9, 0xb5, 0xc8, 0x12, 0xf6, 0x23, 0x68, 0xeb, 0x22, 0x29, + 0xab, 0x14, 0x43, 0x37, 0x28, 0xc9, 0x5b, 0xa9, 0x9e, 0xd2, 0x2c, 0x3d, 0x95, 0x26, 0x94, 0xb5, + 0x09, 0x56, 0xd6, 0x70, 0x5f, 0x5a, 0xd4, 0x17, 0xd0, 0x1b, 0xe5, 0x99, 0xf0, 0x66, 0x15, 0xf5, + 0x3a, 0x50, 0x37, 0x15, 0x3a, 0x08, 0xaf, 0x4f, 0xc0, 0x52, 0x91, 0x6e, 0xa5, 0xc3, 0x6a, 0xcd, + 0x82, 0x94, 0x1f, 0x40, 0x67, 0x74, 0x91, 0xcc, 0xa3, 0x60, 0x24, 0xb2, 0x2b, 0xc1, 0x2a, 0x1f, + 0x2a, 0x36, 0x2a, 0x6d, 0xf7, 0x16, 0xdb, 0x02, 0x50, 0xce, 0xfc, 0x14, 0xed, 0xa4, 0x8d, 0xb2, + 0xe1, 0x7c, 0xa6, 0x06, 0xad, 0x78, 0x79, 0xa5, 0x59, 0x09, 0x78, 0xaf, 0xd3, 0xfc, 0x1c, 0xd6, + 0xf6, 0xc8, 0x66, 0x8e, 0xb3, 0xdd, 0xb3, 0x24, 0xcb, 0xd9, 0xea, 0xc7, 0x8a, 0x8d, 0x55, 0x86, + 0x7b, 0x8b, 0x3d, 0x06, 0x7b, 0x9c, 0x5d, 0x2b, 0xfd, 0x37, 0x74, 0x9e, 0x50, 0xce, 0x77, 0xc3, + 0x2e, 0x77, 0xfe, 0xa9, 0x01, 0xd6, 0x57, 0x49, 0x76, 0x29, 0x32, 0xf6, 0x10, 0x2c, 0x2a, 0x2e, + 0x69, 0x33, 0x5a, 0x16, 0x9a, 0x6e, 0x9a, 0xe8, 0x03, 0x70, 0x08, 0x94, 0xb1, 0x27, 0x2f, 0xd5, + 0x51, 0xd1, 0x3f, 0x1a, 0x14, 0x2e, 0xea, 0x05, 0x41, 0xe7, 0xba, 0xae, 0x0e, 0x6a, 0x59, 0x6b, + 0xab, 0x55, 0x7c, 0x36, 0xda, 0xaa, 0x7c, 0x33, 0x42, 0xd3, 0x7c, 0x6c, 0xa0, 0x33, 0x1a, 0xa9, + 0x9d, 0xa2, 0x52, 0xf9, 0x7d, 0x77, 0x63, 0xbd, 0x60, 0x2c, 0x47, 0x7e, 0x04, 0x96, 0x4a, 0x2f, + 0xd5, 0x36, 0x6b, 0x6f, 0xa6, 0x8d, 0x5e, 0x95, 0xa5, 0x3b, 0x7c, 0x06, 0x96, 0xba, 0xe5, 0xaa, + 0x43, 0x2d, 0x4c, 0x6d, 0xb0, 0x2a, 0xab, 0x30, 0x66, 0xf6, 0x31, 0x58, 0xca, 0x3f, 0xab, 0x2e, + 0x35, 0x5f, 0xad, 0x36, 0xaa, 0xa2, 0xa3, 0x32, 0x60, 0x2e, 0x7c, 0x11, 0x56, 0x12, 0x50, 0x56, + 0x6c, 0xee, 0x86, 0x5b, 0xf8, 0x05, 0xac, 0xd5, 0x92, 0x55, 0xd6, 0x27, 0xc0, 0x6f, 0xc8, 0x5f, + 0x57, 0x3b, 0x3f, 0xe9, 0xfd, 0xdb, 0xb7, 0xf7, 0x8c, 0x7f, 0xff, 0xf6, 0x9e, 0xf1, 0x9f, 0xdf, + 0xde, 0x33, 0x7e, 0xf9, 0x5f, 0xf7, 0x6e, 0x9d, 0x59, 0xf4, 0x8f, 0x98, 0xcf, 0xff, 0x3f, 0x00, + 0x00, 0xff, 0xff, 0x3c, 0x04, 0xbc, 0xca, 0x55, 0x23, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -8043,11 +8082,10 @@ func (m *BackupKey) MarshalTo(dAtA []byte) (int, error) { _ = i var l int _ = l - if len(m.ByteType) > 0 { - dAtA[i] = 0xa + if m.Type != 0 { + dAtA[i] = 0x8 i++ - i = encodeVarintPb(dAtA, i, uint64(len(m.ByteType))) - i += copy(dAtA[i:], m.ByteType) + i = encodeVarintPb(dAtA, i, uint64(m.Type)) } if len(m.Attr) > 0 { dAtA[i] = 0x12 @@ -8076,12 +8114,6 @@ func (m *BackupKey) MarshalTo(dAtA []byte) (int, error) { i++ i = encodeVarintPb(dAtA, i, uint64(m.Count)) } - if len(m.BytePrefix) > 0 { - dAtA[i] = 0x3a - i++ - i = encodeVarintPb(dAtA, i, uint64(len(m.BytePrefix))) - i += copy(dAtA[i:], m.BytePrefix) - } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } @@ -9584,9 +9616,8 @@ func (m *BackupKey) Size() (n int) { } var l int _ = l - l = len(m.ByteType) - if l > 0 { - n += 1 + l + sovPb(uint64(l)) + if m.Type != 0 { + n += 1 + sovPb(uint64(m.Type)) } l = len(m.Attr) if l > 0 { @@ -9605,10 +9636,6 @@ func (m *BackupKey) Size() (n int) { if m.Count != 0 { n += 1 + sovPb(uint64(m.Count)) } - l = len(m.BytePrefix) - if l > 0 { - n += 1 + l + sovPb(uint64(l)) - } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -18157,10 +18184,10 @@ func (m *BackupKey) Unmarshal(dAtA []byte) error { } switch fieldNum { case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ByteType", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) } - var byteLen int + m.Type = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPb @@ -18170,26 +18197,11 @@ func (m *BackupKey) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + m.Type |= BackupKey_KeyType(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { - return ErrInvalidLengthPb - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthPb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.ByteType = append(m.ByteType[:0], dAtA[iNdEx:postIndex]...) - if m.ByteType == nil { - m.ByteType = []byte{} - } - iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Attr", wireType) @@ -18311,40 +18323,6 @@ func (m *BackupKey) Unmarshal(dAtA []byte) error { break } } - case 7: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field BytePrefix", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowPb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthPb - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthPb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.BytePrefix = append(m.BytePrefix[:0], dAtA[iNdEx:postIndex]...) - if m.BytePrefix == nil { - m.BytePrefix = []byte{} - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipPb(dAtA[iNdEx:]) diff --git a/x/keys.go b/x/keys.go index c6d4a3dee21..4f823094c78 100644 --- a/x/keys.go +++ b/x/keys.go @@ -22,7 +22,6 @@ import ( "strings" "github.com/golang/glog" - "github.com/pkg/errors" "github.com/dgraph-io/dgraph/protos/pb" ) @@ -94,9 +93,9 @@ func SchemaKey(attr string) []byte { // // byte 0: key type prefix (set to byteType) // byte 1-2: length of typeName -// next len(attr) bytes: value of typeName -func TypeKey(typeName string) []byte { - return generateKey(byteType, typeName, 1+2+len(typeName)) +// next len(attr) bytes: value of attr (the type name) +func TypeKey(attr string) []byte { + return generateKey(byteType, attr, 1+2+len(attr)) } // DataKey generates a data key with the given attribute and UID. @@ -240,12 +239,22 @@ func (p ParsedKey) IsReverse() bool { return p.bytePrefix == DefaultPrefix && p.byteType == ByteReverse } -// IsCount returns whether the key is a count key. -func (p ParsedKey) IsCount() bool { +// IsCountOrCountRev returns whether the key is a count or a count rev key. +func (p ParsedKey) IsCountOrCountRev() bool { return p.bytePrefix == DefaultPrefix && (p.byteType == ByteCount || p.byteType == ByteCountRev) } +// IsCount returns whether the key is a count key. +func (p ParsedKey) IsCount() bool { + return p.bytePrefix == DefaultPrefix && p.byteType == ByteCount +} + +// IsCountRev returns whether the key is a count rev key. +func (p ParsedKey) IsCountRev() bool { + return p.bytePrefix == DefaultPrefix && p.byteType == ByteCountRev +} + // IsIndex returns whether the key is an index key. func (p ParsedKey) IsIndex() bool { return p.bytePrefix == DefaultPrefix && p.byteType == ByteIndex @@ -265,7 +274,7 @@ func (p ParsedKey) IsType() bool { func (p ParsedKey) IsOfType(typ byte) bool { switch typ { case ByteCount, ByteCountRev: - return p.IsCount() + return p.IsCountOrCountRev() case ByteReverse: return p.IsReverse() case ByteIndex: @@ -358,42 +367,59 @@ func (p ParsedKey) CountPrefix(reverse bool) []byte { // ToBackupKey returns the key in the format used for writing backups. func (p ParsedKey) ToBackupKey() *pb.BackupKey { key := pb.BackupKey{} - key.ByteType = []byte{p.byteType} key.Attr = p.Attr key.Uid = p.Uid key.StartUid = p.StartUid key.Term = p.Term key.Count = p.Count - key.BytePrefix = []byte{p.bytePrefix} + + switch { + case p.IsData(): + key.Type = pb.BackupKey_DATA + case p.IsIndex(): + key.Type = pb.BackupKey_INDEX + case p.IsReverse(): + key.Type = pb.BackupKey_REVERSE + case p.IsCount(): + key.Type = pb.BackupKey_COUNT + case p.IsCountRev(): + key.Type = pb.BackupKey_COUNT_REV + case p.IsSchema(): + key.Type = pb.BackupKey_SCHEMA + case p.IsType(): + key.Type = pb.BackupKey_TYPE + } return &key } -// FromBackupKey takes a key in the format used for backups and converts it to a ParsedKey. -func FromBackupKey(key *pb.BackupKey) (*ParsedKey, error) { - p := ParsedKey{} - if key == nil { - return &p, nil +// FromBackupKey takes a key in the format used for backups and converts it to a key. +func FromBackupKey(backupKey *pb.BackupKey) []byte { + if backupKey == nil { + return nil } - if len(key.ByteType) != 1 { - return nil, errors.Errorf("ByteType must be of length 1 but is %d bytes long", - key.ByteType) + var key []byte + switch backupKey.Type { + case pb.BackupKey_DATA: + key = DataKey(backupKey.Attr, backupKey.Uid) + case pb.BackupKey_INDEX: + key = IndexKey(backupKey.Attr, backupKey.Term) + case pb.BackupKey_REVERSE: + key = ReverseKey(backupKey.Attr, backupKey.Uid) + case pb.BackupKey_COUNT: + key = CountKey(backupKey.Attr, backupKey.Count, false) + case pb.BackupKey_COUNT_REV: + key = CountKey(backupKey.Attr, backupKey.Count, true) + case pb.BackupKey_SCHEMA: + key = SchemaKey(backupKey.Attr) + case pb.BackupKey_TYPE: + key = TypeKey(backupKey.Attr) } - if len(key.BytePrefix) != 1 { - return nil, errors.Errorf("BytePrefix must be of length 1 but is %d bytes long", - key.BytePrefix) - } - - p.byteType = key.ByteType[0] - p.Attr = key.Attr - p.Uid = key.Uid - p.StartUid = key.StartUid - p.HasStartUid = p.StartUid > 0 - p.Term = key.Term - p.Count = key.Count - p.bytePrefix = key.BytePrefix[0] - return &p, nil + if backupKey.StartUid > 0 { + key = GetSplitKey(key, backupKey.StartUid) + } + return key } // SchemaPrefix returns the prefix for Schema keys. diff --git a/x/keys_test.go b/x/keys_test.go index 8ffc61e4a19..906eaa365c8 100644 --- a/x/keys_test.go +++ b/x/keys_test.go @@ -145,7 +145,7 @@ func TestCountKey(t *testing.T) { key := CountKey(sattr, count, true) pk := Parse(key) - require.True(t, pk.IsCount()) + require.True(t, pk.IsCountOrCountRev()) require.Equal(t, sattr, pk.Attr) require.Equal(t, count, pk.Count) } @@ -161,7 +161,7 @@ func TestCountKeyWithStartUid(t *testing.T) { key = GetSplitKey(key, startUid) pk := Parse(key) - require.True(t, pk.IsCount()) + require.True(t, pk.IsCountOrCountRev()) require.Equal(t, sattr, pk.Attr) require.Equal(t, count, pk.Count) require.Equal(t, pk.HasStartUid, true) From 51dc98853d1c4fc2e5bf3cabd56e43c79db84463 Mon Sep 17 00:00:00 2001 From: Martin Martinez Rivera Date: Mon, 24 Jun 2019 14:15:35 -0700 Subject: [PATCH 4/4] Address review comment. --- x/keys.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x/keys.go b/x/keys.go index 4f823094c78..eeaf6c1c778 100644 --- a/x/keys.go +++ b/x/keys.go @@ -241,8 +241,7 @@ func (p ParsedKey) IsReverse() bool { // IsCountOrCountRev returns whether the key is a count or a count rev key. func (p ParsedKey) IsCountOrCountRev() bool { - return p.bytePrefix == DefaultPrefix && (p.byteType == ByteCount || - p.byteType == ByteCountRev) + return p.IsCount() || p.IsCountRev() } // IsCount returns whether the key is a count key.