diff --git a/pkg/brpb/brpb.pb.go b/pkg/brpb/brpb.pb.go index 1c2a29489..c6bb8ac8c 100644 --- a/pkg/brpb/brpb.pb.go +++ b/pkg/brpb/brpb.pb.go @@ -3952,14 +3952,19 @@ type DataFileInfo struct { Crc64Xor uint64 `protobuf:"varint,19,opt,name=crc64xor,proto3" json:"crc64xor,omitempty"` // The original region range the log file belongs to. // In older versions, this might be empty. + // This may not be accurative: file may contain keys less than this. RegionStartKey []byte `protobuf:"bytes,20,opt,name=region_start_key,json=regionStartKey,proto3" json:"region_start_key,omitempty"` // The original region range the log file belongs to. // In older versions, this might be empty. + // This may not be accurative: file may contain keys greater than this. RegionEndKey []byte `protobuf:"bytes,21,opt,name=region_end_key,json=regionEndKey,proto3" json:"region_end_key,omitempty"` // The region epoch that the log file belongs to. // In older versions, this might be empty. - // If a region get split or merged during observing, - // the file may contain multi epoches. + // If a region get split or merged during observing, the file may contain multi epoches. + // This may not be complete: file may contain records from other versions. + // + // If there is exactly one epoch, + // `region_start_key` and `region_end_key` must match this epoch. RegionEpoch []*metapb.RegionEpoch `protobuf:"bytes,22,rep,name=region_epoch,json=regionEpoch,proto3" json:"region_epoch,omitempty"` // Encryption information of this data file, not set if plaintext. FileEncryptionInfo *encryptionpb.FileEncryptionInfo `protobuf:"bytes,23,opt,name=file_encryption_info,json=fileEncryptionInfo,proto3" json:"file_encryption_info,omitempty"` @@ -4497,10 +4502,13 @@ type LogFileSubcompaction struct { // The metadata of the subcompaction. Meta *LogFileSubcompactionMeta `protobuf:"bytes,1,opt,name=meta,proto3" json:"meta,omitempty"` // The generated SSTs. - SstOutputs []*File `protobuf:"bytes,2,rep,name=sst_outputs,json=sstOutputs,proto3" json:"sst_outputs,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + SstOutputs []*File `protobuf:"bytes,2,rep,name=sst_outputs,json=sstOutputs,proto3" json:"sst_outputs,omitempty"` + // The hint for the history of the region that contains the keys being compacted. + // This may be helpful for splitting, but it does not guarantee completeness and accuracy. + RegionMetaHints []*RegionMetaHint `protobuf:"bytes,3,rep,name=region_meta_hints,json=regionMetaHints,proto3" json:"region_meta_hints,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *LogFileSubcompaction) Reset() { *m = LogFileSubcompaction{} } @@ -4550,6 +4558,80 @@ func (m *LogFileSubcompaction) GetSstOutputs() []*File { return nil } +func (m *LogFileSubcompaction) GetRegionMetaHints() []*RegionMetaHint { + if m != nil { + return m.RegionMetaHints + } + return nil +} + +type RegionMetaHint struct { + // The left boundary of the region of this epoch. + // It is an byte-comparable encoded key without TS. + StartKey []byte `protobuf:"bytes,1,opt,name=start_key,json=startKey,proto3" json:"start_key,omitempty"` + // The right boundary of the region of the epoch. + EndKey []byte `protobuf:"bytes,2,opt,name=end_key,json=endKey,proto3" json:"end_key,omitempty"` + // The region epoch. + RegionEpoch *metapb.RegionEpoch `protobuf:"bytes,3,opt,name=region_epoch,json=regionEpoch,proto3" json:"region_epoch,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RegionMetaHint) Reset() { *m = RegionMetaHint{} } +func (m *RegionMetaHint) String() string { return proto.CompactTextString(m) } +func (*RegionMetaHint) ProtoMessage() {} +func (*RegionMetaHint) Descriptor() ([]byte, []int) { + return fileDescriptor_483d1f48d58a4885, []int{51} +} +func (m *RegionMetaHint) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RegionMetaHint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RegionMetaHint.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RegionMetaHint) XXX_Merge(src proto.Message) { + xxx_messageInfo_RegionMetaHint.Merge(m, src) +} +func (m *RegionMetaHint) XXX_Size() int { + return m.Size() +} +func (m *RegionMetaHint) XXX_DiscardUnknown() { + xxx_messageInfo_RegionMetaHint.DiscardUnknown(m) +} + +var xxx_messageInfo_RegionMetaHint proto.InternalMessageInfo + +func (m *RegionMetaHint) GetStartKey() []byte { + if m != nil { + return m.StartKey + } + return nil +} + +func (m *RegionMetaHint) GetEndKey() []byte { + if m != nil { + return m.EndKey + } + return nil +} + +func (m *RegionMetaHint) GetRegionEpoch() *metapb.RegionEpoch { + if m != nil { + return m.RegionEpoch + } + return nil +} + // Batched version of `LogFileSubcompaction`. // So we can store many subcompactions to one file, to reduce the number of file. type LogFileSubcompactions struct { @@ -4563,7 +4645,7 @@ func (m *LogFileSubcompactions) Reset() { *m = LogFileSubcompactions{} } func (m *LogFileSubcompactions) String() string { return proto.CompactTextString(m) } func (*LogFileSubcompactions) ProtoMessage() {} func (*LogFileSubcompactions) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{51} + return fileDescriptor_483d1f48d58a4885, []int{52} } func (m *LogFileSubcompactions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4623,7 +4705,7 @@ func (m *LogFileCompaction) Reset() { *m = LogFileCompaction{} } func (m *LogFileCompaction) String() string { return proto.CompactTextString(m) } func (*LogFileCompaction) ProtoMessage() {} func (*LogFileCompaction) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{52} + return fileDescriptor_483d1f48d58a4885, []int{53} } func (m *LogFileCompaction) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4723,7 +4805,7 @@ func (m *MetaEdit) Reset() { *m = MetaEdit{} } func (m *MetaEdit) String() string { return proto.CompactTextString(m) } func (*MetaEdit) ProtoMessage() {} func (*MetaEdit) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{53} + return fileDescriptor_483d1f48d58a4885, []int{54} } func (m *MetaEdit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4797,7 +4879,7 @@ func (m *DeleteSpansOfFile) Reset() { *m = DeleteSpansOfFile{} } func (m *DeleteSpansOfFile) String() string { return proto.CompactTextString(m) } func (*DeleteSpansOfFile) ProtoMessage() {} func (*DeleteSpansOfFile) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{54} + return fileDescriptor_483d1f48d58a4885, []int{55} } func (m *DeleteSpansOfFile) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4862,7 +4944,7 @@ func (m *Migration) Reset() { *m = Migration{} } func (m *Migration) String() string { return proto.CompactTextString(m) } func (*Migration) ProtoMessage() {} func (*Migration) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{55} + return fileDescriptor_483d1f48d58a4885, []int{56} } func (m *Migration) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4978,6 +5060,7 @@ func init() { proto.RegisterType((*SpansOfFile)(nil), "backup.SpansOfFile") proto.RegisterType((*LogFileSubcompactionMeta)(nil), "backup.LogFileSubcompactionMeta") proto.RegisterType((*LogFileSubcompaction)(nil), "backup.LogFileSubcompaction") + proto.RegisterType((*RegionMetaHint)(nil), "backup.RegionMetaHint") proto.RegisterType((*LogFileSubcompactions)(nil), "backup.LogFileSubcompactions") proto.RegisterType((*LogFileCompaction)(nil), "backup.LogFileCompaction") proto.RegisterType((*MetaEdit)(nil), "backup.MetaEdit") @@ -4988,287 +5071,290 @@ func init() { func init() { proto.RegisterFile("brpb.proto", fileDescriptor_483d1f48d58a4885) } var fileDescriptor_483d1f48d58a4885 = []byte{ - // 4478 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x7a, 0x5b, 0x6f, 0x1c, 0x47, - 0x76, 0x3f, 0x7b, 0xee, 0x73, 0xe6, 0xca, 0x22, 0x25, 0x8d, 0x69, 0x4b, 0xa2, 0x5b, 0xb6, 0x96, - 0x7f, 0xee, 0x8a, 0xeb, 0x95, 0xbc, 0x5a, 0xfd, 0xe3, 0x0d, 0x16, 0xbc, 0xc9, 0xa4, 0x75, 0x63, - 0x9a, 0xb4, 0x17, 0x31, 0x10, 0x34, 0x7a, 0xba, 0x6b, 0x38, 0xbd, 0xec, 0xe9, 0xee, 0xed, 0xea, - 0x19, 0x89, 0xce, 0x5b, 0xde, 0x0d, 0x27, 0x41, 0x1e, 0xf2, 0x05, 0x02, 0xe4, 0x21, 0x01, 0xf2, - 0x9a, 0xb7, 0x00, 0x49, 0x90, 0x0d, 0x12, 0x20, 0xfb, 0x90, 0x87, 0x3c, 0x06, 0x0e, 0x92, 0x6f, - 0x11, 0x20, 0x38, 0xa7, 0xaa, 0x7a, 0x7a, 0x86, 0x43, 0x4a, 0x72, 0x82, 0x7d, 0x9a, 0xa9, 0xdf, - 0x39, 0x55, 0x75, 0xaa, 0xce, 0xa5, 0xce, 0xa9, 0x6a, 0x80, 0x7e, 0x12, 0xf7, 0xb7, 0xe2, 0x24, - 0x4a, 0x23, 0x56, 0xe9, 0x3b, 0xee, 0xd9, 0x38, 0x5e, 0x6b, 0x9d, 0x4d, 0x92, 0xd8, 0xd5, 0xf0, - 0x5a, 0x8b, 0x27, 0x49, 0x94, 0x71, 0xad, 0x35, 0x47, 0x3c, 0x75, 0xb2, 0x16, 0xe3, 0xa1, 0x9b, - 0x9c, 0xc7, 0xa9, 0x1f, 0x85, 0x19, 0xb6, 0x7a, 0x1a, 0x9d, 0x46, 0xf4, 0xf7, 0x87, 0xf8, 0x4f, - 0xa1, 0x9d, 0x64, 0x2c, 0x52, 0xfa, 0x2b, 0x01, 0xf3, 0x2f, 0x0c, 0x78, 0xef, 0x28, 0xe1, 0xb1, - 0x93, 0xf0, 0xe3, 0xd0, 0x89, 0xc5, 0x30, 0x4a, 0x77, 0x48, 0x00, 0x8b, 0xff, 0x72, 0xcc, 0x45, - 0xca, 0x1e, 0x41, 0x21, 0x3d, 0xef, 0x19, 0xeb, 0xc6, 0x46, 0xfb, 0xfe, 0xc6, 0x96, 0x14, 0x6e, - 0xeb, 0xaa, 0x1e, 0x27, 0xe7, 0x31, 0xb7, 0x0a, 0xe9, 0x39, 0xdb, 0x80, 0x6a, 0xc2, 0x4f, 0xfd, - 0x28, 0x14, 0xbd, 0xc2, 0x7a, 0x71, 0xa3, 0x71, 0xbf, 0xbd, 0xa5, 0xa4, 0xb6, 0x08, 0xb6, 0x34, - 0x99, 0x6d, 0x40, 0x37, 0xe0, 0x8e, 0xe0, 0xb6, 0x1f, 0xda, 0x82, 0xbb, 0x51, 0xe8, 0x89, 0x5e, - 0x71, 0xdd, 0xd8, 0x28, 0x59, 0x6d, 0xc2, 0x0f, 0xc3, 0x63, 0x89, 0x9a, 0xff, 0x6a, 0xc0, 0xcd, - 0x4b, 0x26, 0x17, 0x71, 0x14, 0x0a, 0xce, 0x1e, 0xe6, 0xe4, 0xbd, 0x7b, 0xa5, 0xbc, 0xfb, 0x13, - 0x1e, 0x4e, 0xa5, 0xbd, 0x0b, 0x15, 0x29, 0x4e, 0xaf, 0xb0, 0x6e, 0x2c, 0x10, 0x56, 0x51, 0xd9, - 0x07, 0x50, 0x26, 0x55, 0x90, 0x80, 0xc8, 0xa6, 0x15, 0xb3, 0x8f, 0xbf, 0x96, 0x24, 0xb2, 0x7b, - 0xb0, 0x12, 0x38, 0x22, 0xb5, 0xd5, 0xb2, 0x84, 0x3d, 0x71, 0x02, 0xdf, 0xeb, 0x95, 0xd6, 0x8d, - 0x8d, 0x9a, 0xd5, 0x45, 0xd2, 0x53, 0x5a, 0x98, 0xf8, 0x02, 0x71, 0xf3, 0x3f, 0xab, 0x00, 0x52, - 0xa8, 0x67, 0x3c, 0x75, 0xd8, 0x4d, 0x00, 0x37, 0x18, 0x8b, 0x94, 0x27, 0xb6, 0xef, 0xd1, 0x5a, - 0x4a, 0x56, 0x5d, 0x21, 0x87, 0x1e, 0xfb, 0x1e, 0x74, 0x34, 0x79, 0xc2, 0x13, 0xa1, 0x65, 0xae, - 0x5b, 0x6d, 0x05, 0x7f, 0x21, 0x51, 0x1c, 0xa7, 0x3f, 0xe5, 0x69, 0x10, 0x4f, 0xbd, 0x9f, 0x91, - 0x7b, 0x50, 0xd5, 0xb4, 0xe6, 0xba, 0xb1, 0x51, 0xb6, 0x74, 0x93, 0x99, 0x50, 0x1e, 0xf8, 0x01, - 0x17, 0xbd, 0x12, 0x29, 0xae, 0xa9, 0xf7, 0xf1, 0xb1, 0x1f, 0x70, 0x4b, 0x92, 0xd8, 0x0f, 0x01, - 0xf0, 0x8f, 0xed, 0x87, 0x1e, 0x7f, 0xd5, 0x6b, 0xd1, 0x6e, 0x74, 0x35, 0x23, 0x2e, 0x83, 0x98, - 0xeb, 0xc8, 0x73, 0x88, 0x2c, 0xec, 0x0e, 0xb4, 0x44, 0xea, 0x24, 0x69, 0x26, 0x50, 0x99, 0x16, - 0xd6, 0x24, 0x50, 0xcb, 0x74, 0x1b, 0x1a, 0x3c, 0xf4, 0x32, 0x96, 0x0a, 0xb1, 0x00, 0x0f, 0x3d, - 0xcd, 0xb0, 0x01, 0x55, 0xe1, 0x0e, 0xf9, 0xc8, 0x11, 0xbd, 0xaa, 0xb2, 0x2a, 0x35, 0xe7, 0x31, - 0xc1, 0x96, 0x26, 0xb3, 0x07, 0xd0, 0x94, 0x7f, 0x95, 0x88, 0xed, 0x4b, 0x44, 0x6c, 0x48, 0x2e, - 0x29, 0xe4, 0x1a, 0xd4, 0x7d, 0x61, 0x27, 0xce, 0x4b, 0xfb, 0x6c, 0xd2, 0xab, 0x91, 0xba, 0xaa, - 0xbe, 0xb0, 0x9c, 0x97, 0x4f, 0x26, 0xb8, 0x62, 0x24, 0x24, 0x4e, 0x78, 0xca, 0x45, 0xaf, 0x4e, - 0xb3, 0x67, 0xc3, 0x59, 0xce, 0x4b, 0x0b, 0x09, 0x56, 0x3d, 0x51, 0xff, 0x04, 0x7b, 0x04, 0x9d, - 0xac, 0x83, 0x12, 0xa2, 0x73, 0x89, 0x10, 0x2d, 0xdd, 0x4b, 0x8a, 0xc1, 0xa0, 0xe4, 0x79, 0x81, - 0xe8, 0xc1, 0xba, 0xb1, 0xd1, 0xb4, 0xe8, 0x3f, 0xfb, 0x11, 0x34, 0x3c, 0x2f, 0x90, 0xe3, 0x70, - 0xd1, 0xeb, 0x5e, 0x32, 0x12, 0x78, 0x5e, 0x70, 0x28, 0x79, 0x70, 0xcb, 0x25, 0xd9, 0x4e, 0xb8, - 0x18, 0x07, 0x69, 0x6f, 0x99, 0x6c, 0xa0, 0xd9, 0xd7, 0x3e, 0x33, 0x0e, 0x52, 0xf6, 0x31, 0x34, - 0x9c, 0xd8, 0xcf, 0xb6, 0x9c, 0x91, 0xeb, 0xac, 0x6c, 0xe9, 0xf8, 0xb3, 0x7d, 0x74, 0xa8, 0xf6, - 0xde, 0x02, 0x27, 0xf6, 0xb5, 0x1e, 0x1e, 0x40, 0x2d, 0x8e, 0x02, 0xdf, 0xf5, 0xb9, 0xe8, 0xad, - 0xd0, 0x56, 0xdc, 0xc8, 0xbc, 0x2d, 0x70, 0x5c, 0x3e, 0xe2, 0x61, 0x7a, 0x84, 0x0c, 0xe7, 0x56, - 0xc6, 0xc8, 0x3e, 0x86, 0xeb, 0x21, 0x7f, 0x69, 0xbb, 0x51, 0x10, 0x38, 0x18, 0xad, 0x84, 0xcd, - 0x43, 0xa7, 0x1f, 0x70, 0xaf, 0xb7, 0x4a, 0x82, 0xad, 0x86, 0xfc, 0xe5, 0x6e, 0x46, 0xdc, 0x97, - 0x34, 0xa5, 0x93, 0xf4, 0x55, 0x88, 0x3a, 0xb9, 0xa6, 0x75, 0x72, 0xf2, 0x2a, 0x7c, 0x32, 0x61, - 0x9b, 0x50, 0xf5, 0xfa, 0xf6, 0xc8, 0x89, 0x45, 0xef, 0x3a, 0x49, 0xb1, 0x9c, 0x49, 0xe1, 0xa7, - 0xc9, 0xde, 0xce, 0x33, 0x27, 0xb6, 0x2a, 0x5e, 0xff, 0x99, 0x13, 0x0b, 0x76, 0x17, 0x4a, 0xa3, - 0xc8, 0xe3, 0xbd, 0x1b, 0xb4, 0x42, 0xa6, 0x19, 0x95, 0xe3, 0x45, 0x1e, 0xb7, 0x88, 0xce, 0xbe, - 0x0f, 0x15, 0xa5, 0xe3, 0x1e, 0x0d, 0xb9, 0x32, 0xcb, 0x29, 0xd5, 0xac, 0x58, 0xd0, 0x60, 0xd5, - 0x16, 0x0b, 0xff, 0x2b, 0xde, 0x7b, 0x47, 0x1a, 0xac, 0x84, 0x8e, 0xfd, 0xaf, 0xf8, 0x67, 0xa5, - 0x5a, 0xb1, 0x5b, 0xb2, 0x4a, 0xb1, 0x93, 0x0e, 0xcd, 0x53, 0x68, 0xe4, 0xc6, 0x60, 0xef, 0x42, - 0x5d, 0x7a, 0xc4, 0x19, 0x97, 0x21, 0xab, 0x69, 0xd5, 0x08, 0x78, 0xc2, 0xcf, 0xd9, 0x0d, 0xa8, - 0xa2, 0x27, 0x20, 0xa9, 0x40, 0xa4, 0x0a, 0x0f, 0x3d, 0x24, 0x64, 0xce, 0x59, 0xbc, 0xd4, 0x39, - 0xcd, 0x7f, 0x2c, 0x40, 0x09, 0xdb, 0x68, 0x48, 0xa1, 0x33, 0xe2, 0x34, 0x7a, 0xdd, 0xa2, 0xff, - 0xec, 0x3a, 0x54, 0xc4, 0xd0, 0xb9, 0xff, 0xe3, 0x87, 0x7a, 0x60, 0xd9, 0x9a, 0x15, 0xa7, 0x78, - 0xb9, 0x38, 0xa5, 0x19, 0x71, 0xfe, 0x6f, 0xdc, 0x7a, 0x0d, 0x6a, 0x6e, 0xe2, 0x3e, 0xfc, 0xf8, - 0x55, 0x94, 0xf4, 0xaa, 0x44, 0xcd, 0xda, 0x28, 0x57, 0x1a, 0xa5, 0x4e, 0x60, 0x9f, 0x4d, 0x04, - 0xf9, 0x64, 0xc9, 0xaa, 0x11, 0xf0, 0x64, 0x42, 0xfb, 0x2f, 0x89, 0xfd, 0xf3, 0x94, 0xbc, 0x92, - 0x46, 0x26, 0x68, 0x07, 0x11, 0xd6, 0x86, 0x82, 0x3b, 0x20, 0x47, 0xaa, 0x5b, 0x05, 0x77, 0x80, - 0x3b, 0x42, 0x9a, 0x6a, 0x10, 0x27, 0xfd, 0xc7, 0x19, 0x5c, 0x3f, 0x1e, 0x62, 0xbc, 0x9d, 0x50, - 0x2c, 0x6c, 0x5a, 0x35, 0x09, 0x1c, 0x4e, 0xcc, 0xaf, 0x0b, 0x50, 0xd3, 0xde, 0xc5, 0xbe, 0x0f, - 0x80, 0xe7, 0x82, 0x2d, 0x35, 0x60, 0x2c, 0xd0, 0x40, 0x7d, 0xa4, 0x78, 0x05, 0x32, 0x7b, 0x4e, - 0xc6, 0x5c, 0x58, 0xc4, 0x8c, 0x74, 0xc9, 0x9c, 0x0b, 0x6c, 0xc5, 0xab, 0x03, 0xdb, 0x6c, 0x1c, - 0x2a, 0xbd, 0x49, 0x1c, 0xca, 0xc2, 0x80, 0xec, 0x53, 0xb9, 0xdc, 0xae, 0x75, 0x6c, 0x90, 0x3d, - 0x75, 0x1c, 0x2a, 0xaf, 0x17, 0x75, 0x1c, 0x32, 0x3f, 0x84, 0xce, 0x9c, 0x87, 0x23, 0x9b, 0x1f, - 0x0e, 0x22, 0x65, 0xc3, 0xf4, 0xdf, 0x7c, 0x0a, 0x70, 0x9c, 0x3a, 0xa9, 0xd8, 0x09, 0x22, 0xf7, - 0x0c, 0xd5, 0x14, 0x0f, 0xcf, 0x85, 0xef, 0x3a, 0x81, 0x3e, 0xd3, 0x8a, 0x16, 0x68, 0xe8, 0xd0, - 0xc3, 0xb3, 0xea, 0x17, 0x22, 0x0a, 0xed, 0x14, 0x7d, 0x5e, 0x19, 0x66, 0x1d, 0x91, 0x13, 0x04, - 0xcc, 0x9f, 0x40, 0x9d, 0x46, 0x23, 0x25, 0x6c, 0x42, 0xa5, 0x8f, 0xa3, 0x6a, 0x05, 0x64, 0xae, - 0x3c, 0x9d, 0xd0, 0x52, 0x1c, 0xe6, 0x5f, 0x19, 0xd0, 0xce, 0x7a, 0x66, 0xc1, 0xf5, 0x8d, 0x7d, - 0xe2, 0x1d, 0xa8, 0xa1, 0x85, 0xd8, 0x3c, 0x74, 0x55, 0x4a, 0x52, 0xc5, 0xf6, 0x7e, 0xe8, 0x66, - 0xa4, 0x28, 0xf1, 0xc9, 0x25, 0x14, 0xe9, 0x45, 0xe2, 0xcf, 0xda, 0x53, 0x79, 0xd6, 0x9e, 0x70, - 0x2b, 0xfc, 0x30, 0xf0, 0x43, 0x6e, 0xa3, 0xf2, 0xc9, 0x17, 0x9a, 0x16, 0x48, 0x68, 0xcf, 0x49, - 0x1d, 0xf3, 0x0f, 0x0a, 0x50, 0x91, 0x3a, 0x47, 0xe3, 0xf5, 0xfa, 0x6a, 0x5b, 0x0b, 0x5e, 0x9f, - 0xad, 0x42, 0x39, 0xbf, 0x41, 0xb2, 0x31, 0xe3, 0x3c, 0xc5, 0xab, 0x9c, 0xa7, 0x74, 0xb5, 0xf3, - 0x94, 0x2f, 0x38, 0xcf, 0xff, 0x83, 0x6e, 0xea, 0x0f, 0x02, 0x47, 0x0c, 0xed, 0x84, 0xc7, 0x81, - 0xef, 0x3a, 0x82, 0x04, 0x6e, 0x59, 0x1d, 0x85, 0x5b, 0x0a, 0x46, 0xd1, 0x04, 0xee, 0x33, 0xb9, - 0x6f, 0xd3, 0x92, 0x0d, 0xf6, 0x13, 0x68, 0xd0, 0x1f, 0x75, 0xfc, 0xd5, 0x48, 0x5f, 0xd7, 0x67, - 0xf4, 0x95, 0x29, 0xc6, 0x02, 0x62, 0xa5, 0xff, 0xe6, 0x33, 0x28, 0x1f, 0xee, 0x3d, 0x73, 0x62, - 0x94, 0x71, 0x1c, 0x8b, 0x34, 0xe1, 0xce, 0x28, 0x67, 0x39, 0x1a, 0x3a, 0xf4, 0x30, 0x00, 0x79, - 0xd1, 0xcb, 0x70, 0xca, 0x52, 0x20, 0x96, 0xe6, 0x14, 0x3c, 0xf4, 0xcc, 0x97, 0xd0, 0xc4, 0x03, - 0x81, 0x8c, 0x09, 0x47, 0x5d, 0x64, 0x03, 0x1f, 0x40, 0xc5, 0xf7, 0xf0, 0x2c, 0x51, 0x29, 0x60, - 0x4b, 0x8b, 0x49, 0x82, 0x58, 0x65, 0xdf, 0xc3, 0x9e, 0xf7, 0x00, 0x62, 0x27, 0x49, 0x7d, 0x3a, - 0xa2, 0x94, 0xab, 0xce, 0x71, 0xe6, 0x18, 0x4c, 0x01, 0xf5, 0xec, 0x24, 0xfa, 0x5f, 0xcc, 0xfa, - 0x03, 0xa8, 0x90, 0xae, 0xf5, 0x8c, 0xab, 0xf9, 0x63, 0x4e, 0xaf, 0xca, 0x52, 0x3c, 0xe6, 0x11, - 0xd4, 0x74, 0x1c, 0xf8, 0x8e, 0x87, 0x8c, 0x8c, 0x9a, 0x45, 0x1d, 0x35, 0xcd, 0x3d, 0x68, 0xef, - 0xaa, 0x04, 0x74, 0x8f, 0x32, 0x5d, 0xcc, 0x1e, 0xdd, 0x71, 0x92, 0xf0, 0x30, 0x55, 0x19, 0xaa, - 0x6e, 0x22, 0x25, 0x91, 0xb5, 0x00, 0x0d, 0x5a, 0xb2, 0x74, 0xd3, 0xfc, 0x67, 0x03, 0xca, 0xb2, - 0x77, 0x17, 0x8a, 0x23, 0x71, 0xaa, 0x36, 0x02, 0xff, 0xb2, 0x1d, 0xe8, 0x4e, 0x93, 0x5e, 0x3b, - 0x9f, 0x63, 0x67, 0xe6, 0x32, 0x2b, 0xc1, 0xc1, 0x52, 0x96, 0xf0, 0x1e, 0x7a, 0x72, 0xd4, 0x2d, - 0xa8, 0x9d, 0x4d, 0x54, 0xdf, 0x12, 0xf5, 0x5d, 0xce, 0xf2, 0x98, 0x27, 0xfc, 0x5c, 0x77, 0xab, - 0x9e, 0x4d, 0x24, 0xff, 0x03, 0x68, 0xca, 0xb4, 0x5e, 0xf5, 0x29, 0x2f, 0xca, 0xe9, 0x0f, 0x96, - 0xac, 0x86, 0xe4, 0xa2, 0xe6, 0x4e, 0x0d, 0x2a, 0x1e, 0x4f, 0x1d, 0x3f, 0x30, 0xff, 0xda, 0x80, - 0x5b, 0xc7, 0x64, 0x61, 0x32, 0x82, 0x9e, 0x38, 0xe2, 0xec, 0x98, 0xbb, 0xe3, 0xc4, 0x4f, 0xcf, - 0x77, 0xa3, 0x70, 0xe0, 0xe3, 0xaa, 0x58, 0x1c, 0x38, 0x7e, 0x98, 0xf2, 0x57, 0x29, 0xf9, 0x7b, - 0xa6, 0x86, 0x5c, 0xd8, 0xda, 0x95, 0xa1, 0x21, 0x1c, 0x44, 0x07, 0x4b, 0x56, 0x37, 0xe3, 0xc7, - 0x60, 0x80, 0xba, 0xd8, 0x87, 0xe5, 0x91, 0x43, 0x1b, 0x73, 0xc6, 0xcf, 0x6d, 0x97, 0x06, 0x56, - 0xc6, 0x92, 0xe5, 0x5c, 0xcf, 0x88, 0xe1, 0x09, 0x57, 0xf3, 0x1e, 0x2c, 0x59, 0x9d, 0xd1, 0x2c, - 0xb4, 0xd3, 0x04, 0x98, 0xd6, 0x89, 0x66, 0x00, 0x30, 0x9d, 0x96, 0xfd, 0x0c, 0x1a, 0x2a, 0x60, - 0xa5, 0xe7, 0x31, 0x57, 0xe5, 0xd3, 0xad, 0xad, 0x99, 0xba, 0x72, 0x3f, 0x6b, 0x3c, 0xe3, 0xe9, - 0x30, 0xf2, 0x2c, 0x90, 0x5d, 0xb0, 0x84, 0xa2, 0x92, 0x45, 0x0e, 0x30, 0xb5, 0x25, 0x15, 0x03, - 0x9f, 0xf0, 0x73, 0xf3, 0x4f, 0x0c, 0xe8, 0xcc, 0x89, 0xc8, 0x3e, 0x85, 0xce, 0x74, 0xfc, 0xb7, - 0x99, 0xb7, 0x3d, 0x25, 0xd3, 0xdc, 0x8f, 0xa0, 0x31, 0xdd, 0x1f, 0x7d, 0xce, 0xde, 0x98, 0x1d, - 0x24, 0x9b, 0xdc, 0x82, 0x6c, 0x5f, 0x84, 0xf9, 0x75, 0x05, 0x5a, 0xb3, 0xe5, 0xee, 0x6b, 0x4a, - 0xaf, 0x19, 0x67, 0x2a, 0x5c, 0xee, 0x4c, 0xc5, 0xab, 0x53, 0xa4, 0xd2, 0xeb, 0x53, 0xa4, 0xf2, - 0x85, 0x14, 0xe9, 0x26, 0x1e, 0xfb, 0x29, 0xb7, 0x03, 0x7f, 0xe4, 0xa7, 0x2a, 0x49, 0xaa, 0x23, - 0xf2, 0x14, 0x01, 0xb6, 0x0e, 0x0d, 0x37, 0x0a, 0xa5, 0x0f, 0xba, 0xe7, 0x94, 0x27, 0xb5, 0xac, - 0x3c, 0xc4, 0x7e, 0x06, 0x1d, 0x91, 0x46, 0x89, 0x73, 0xca, 0x6d, 0xb4, 0x1a, 0x1e, 0x7a, 0x94, - 0x2e, 0xcd, 0xc4, 0x63, 0x22, 0xef, 0x48, 0xaa, 0xd5, 0x16, 0x33, 0xed, 0xd9, 0xe2, 0x08, 0x66, - 0x8b, 0x23, 0x19, 0x30, 0x1a, 0x59, 0x9a, 0x85, 0xee, 0x1c, 0x8d, 0xe2, 0x84, 0x0b, 0x91, 0xa9, - 0xb7, 0x49, 0xea, 0xcd, 0x6c, 0x76, 0x77, 0x4a, 0xa7, 0x32, 0xbc, 0xe3, 0xce, 0x02, 0xec, 0xfb, - 0xb0, 0x9c, 0x1f, 0x23, 0xe0, 0x13, 0x1e, 0x50, 0xa5, 0x59, 0xb6, 0xf2, 0x83, 0x3f, 0x45, 0x9c, - 0x3d, 0xc8, 0x4c, 0x98, 0x52, 0x91, 0xf6, 0x65, 0x2e, 0xa6, 0xcd, 0x96, 0xec, 0xfe, 0x13, 0xe8, - 0x78, 0x22, 0xb5, 0xf3, 0xf5, 0x4f, 0xe7, 0xf2, 0xfa, 0xa7, 0xe5, 0x89, 0x74, 0x7b, 0x5a, 0x02, - 0x7d, 0x04, 0x20, 0xc6, 0x7d, 0x9d, 0x53, 0x75, 0x55, 0xf9, 0x91, 0x8b, 0x37, 0x2a, 0x11, 0x13, - 0xe3, 0xbe, 0x4a, 0xa7, 0xde, 0xc7, 0x78, 0x43, 0xe7, 0xa5, 0x9d, 0x70, 0xc7, 0xa3, 0x72, 0xac, - 0x86, 0xd1, 0x85, 0x30, 0x8b, 0x3b, 0x5e, 0x56, 0xa4, 0xb0, 0xd7, 0x14, 0x29, 0xef, 0x42, 0x7d, - 0x1c, 0xfa, 0xbf, 0x1c, 0x73, 0xb4, 0xd3, 0x15, 0xda, 0xf6, 0x9a, 0x04, 0x0e, 0x3d, 0xac, 0x8a, - 0xdc, 0x88, 0x62, 0x08, 0x15, 0x56, 0x98, 0x1e, 0x6a, 0xb1, 0x76, 0x25, 0x6e, 0x69, 0x86, 0xcf, - 0x4a, 0xb5, 0x4a, 0xb7, 0xaa, 0xea, 0x93, 0xff, 0x2a, 0xc0, 0xea, 0x7c, 0x40, 0xa3, 0x7d, 0xfa, - 0x08, 0xaa, 0xca, 0x16, 0x54, 0xec, 0xba, 0xcc, 0x64, 0x34, 0x1b, 0x65, 0x47, 0x64, 0xf3, 0xa9, - 0xd0, 0xa7, 0x00, 0xb5, 0x4f, 0x04, 0xbb, 0x06, 0xe8, 0x18, 0x48, 0x90, 0xc9, 0x4a, 0x99, 0x87, - 0xde, 0x89, 0xc8, 0x0e, 0xc7, 0x52, 0xee, 0x70, 0x7c, 0x1f, 0x9a, 0x74, 0xa4, 0x61, 0x0a, 0x9d, - 0xf2, 0x84, 0xf2, 0xd0, 0xba, 0xd5, 0x20, 0xec, 0x31, 0x41, 0x0b, 0x0d, 0xad, 0xf2, 0x96, 0x86, - 0xf6, 0x02, 0x3a, 0x42, 0xc5, 0x6d, 0x1d, 0x5f, 0xab, 0xb4, 0xcc, 0xbb, 0xd3, 0x65, 0x5e, 0x15, - 0xe6, 0xad, 0xb6, 0x98, 0x6b, 0xd3, 0xed, 0xcf, 0x38, 0xf6, 0xd0, 0x61, 0x53, 0xa1, 0xab, 0x45, - 0xab, 0x82, 0x19, 0xce, 0x58, 0x98, 0xbf, 0x2e, 0x60, 0x56, 0x3a, 0xe3, 0x5c, 0x26, 0x94, 0xc2, - 0x28, 0x8a, 0xd5, 0xfe, 0x66, 0x65, 0xc2, 0xf3, 0x28, 0x8a, 0x0f, 0x96, 0x2c, 0xa2, 0xb1, 0x0f, - 0xa1, 0x1c, 0x44, 0xae, 0x13, 0xcc, 0xa7, 0x0a, 0x4f, 0x11, 0x3c, 0x58, 0xb2, 0x24, 0x95, 0xbd, - 0x07, 0x05, 0xf1, 0x40, 0x1d, 0x9e, 0x90, 0xad, 0xe0, 0xc1, 0xc1, 0x92, 0x55, 0x10, 0x0f, 0xd8, - 0x6d, 0x28, 0x9e, 0xba, 0x42, 0x9d, 0x8f, 0x0d, 0x4d, 0xfe, 0x74, 0xf7, 0xf8, 0x60, 0xc9, 0x42, - 0x0a, 0xfb, 0x04, 0x5a, 0x6e, 0x10, 0x8d, 0x3d, 0xdb, 0x3b, 0x0f, 0x9d, 0x91, 0xef, 0xaa, 0x63, - 0x71, 0x75, 0x7a, 0x0c, 0x47, 0x63, 0x6f, 0x4f, 0xd2, 0x0e, 0x96, 0xac, 0xa6, 0x9b, 0x6b, 0xe3, - 0x32, 0x86, 0xde, 0x40, 0x66, 0x89, 0xb9, 0x65, 0x1c, 0xec, 0x3d, 0xc6, 0xf1, 0x89, 0xc6, 0x0e, - 0x80, 0x39, 0x5f, 0x8d, 0x13, 0x6e, 0xf7, 0x83, 0xa8, 0x6f, 0x6b, 0xc3, 0x92, 0x3b, 0xde, 0xd3, - 0x3d, 0xb6, 0x91, 0x63, 0x27, 0x88, 0xfa, 0x6a, 0x9f, 0xf0, 0x68, 0x74, 0xe6, 0xb0, 0x9d, 0x3a, - 0x54, 0x55, 0x28, 0x33, 0x2b, 0x50, 0xc2, 0xbd, 0x32, 0xdf, 0x85, 0x32, 0x6d, 0x07, 0xda, 0x13, - 0x1a, 0xb5, 0x4e, 0xb6, 0xc8, 0xc0, 0xff, 0xb8, 0x04, 0x85, 0xe3, 0x07, 0x98, 0x30, 0xf3, 0xd0, - 0x8b, 0x23, 0x5f, 0x25, 0x2f, 0x75, 0x2b, 0x6b, 0x63, 0x25, 0x90, 0xbb, 0x08, 0xac, 0x67, 0x17, - 0x7f, 0xd7, 0xa1, 0xd2, 0x1f, 0xbb, 0x67, 0x3c, 0x55, 0x59, 0x91, 0x6a, 0x21, 0x1e, 0x27, 0x7c, - 0xe0, 0xbf, 0x52, 0x86, 0xab, 0x5a, 0x32, 0xe8, 0xcb, 0x68, 0xeb, 0x06, 0x8e, 0x90, 0xd9, 0x75, - 0x1d, 0x83, 0x3e, 0x81, 0xbb, 0x88, 0x61, 0x1a, 0x24, 0x84, 0xb4, 0xd7, 0xba, 0x85, 0x7f, 0x11, - 0x71, 0xdc, 0x80, 0x36, 0xa3, 0x6e, 0xe1, 0x5f, 0x8c, 0xfb, 0x8e, 0xeb, 0x72, 0x21, 0xe8, 0x64, - 0xa9, 0xc9, 0x5b, 0x3c, 0x89, 0xe0, 0xe1, 0xb2, 0x09, 0xcb, 0x82, 0xbb, 0x09, 0x4f, 0xed, 0x1c, - 0x57, 0x9d, 0xb8, 0x3a, 0x92, 0xb0, 0x9d, 0xf1, 0x6e, 0x40, 0x77, 0x10, 0x25, 0x2e, 0xb7, 0x71, - 0x33, 0x6c, 0x91, 0x9e, 0x07, 0x5c, 0xc5, 0xf1, 0x36, 0xe1, 0x47, 0x4e, 0x3a, 0x3c, 0x46, 0x94, - 0xdd, 0x81, 0xb6, 0x10, 0xdc, 0x3e, 0x1b, 0xd1, 0x78, 0x18, 0x63, 0x64, 0x68, 0x6f, 0x08, 0xc1, - 0x9f, 0x8c, 0x70, 0xb0, 0x43, 0x0f, 0x7d, 0x3c, 0x89, 0x02, 0x6e, 0x3b, 0x89, 0xbc, 0x41, 0xac, - 0x5b, 0x55, 0x6c, 0x6f, 0x27, 0xf2, 0x34, 0x7b, 0x95, 0xf2, 0x24, 0x94, 0xf5, 0x5e, 0x8b, 0xa8, - 0xa0, 0xa1, 0x43, 0x8f, 0x6d, 0xc1, 0x4a, 0xd4, 0xff, 0x05, 0x77, 0x53, 0x1b, 0xeb, 0xb4, 0xec, - 0x1e, 0xa8, 0x4d, 0xd2, 0x2c, 0x4b, 0xd2, 0xd3, 0xc8, 0x3d, 0xd3, 0x97, 0x40, 0xb8, 0x9d, 0xda, - 0xc5, 0xa3, 0x33, 0x2e, 0xe3, 0x34, 0x6e, 0xa7, 0x72, 0x63, 0xc4, 0x50, 0xaf, 0x71, 0x12, 0x4d, - 0x7c, 0x8f, 0x27, 0x74, 0x3f, 0x56, 0xb7, 0xb2, 0x36, 0x66, 0xa5, 0x71, 0x12, 0x61, 0x29, 0xae, - 0x6e, 0xc1, 0x74, 0xd3, 0xfc, 0x95, 0x01, 0xc5, 0x4f, 0x77, 0x8f, 0x5f, 0x67, 0x15, 0x4a, 0xfb, - 0x85, 0x4b, 0xb4, 0x5f, 0xbc, 0x5a, 0xfb, 0xa5, 0x05, 0xda, 0xff, 0x10, 0xda, 0x71, 0xc2, 0x3d, - 0x3e, 0xf0, 0x43, 0xee, 0xd9, 0xa8, 0x76, 0x69, 0x23, 0xad, 0x29, 0xba, 0xed, 0x06, 0x58, 0x84, - 0xb9, 0x08, 0x84, 0xa9, 0xef, 0x04, 0x82, 0x9c, 0x46, 0x59, 0x4c, 0x27, 0x87, 0xa3, 0x5b, 0x98, - 0x23, 0xe8, 0x92, 0xdf, 0xec, 0x8e, 0x45, 0x1a, 0x8d, 0x28, 0xcb, 0xc1, 0x59, 0x72, 0x79, 0x96, - 0x4e, 0x3f, 0xeb, 0x56, 0x6b, 0x8a, 0x22, 0xdb, 0x7d, 0xb8, 0x36, 0xcb, 0x66, 0xe7, 0x0a, 0xe2, - 0xba, 0xb5, 0x32, 0xc3, 0x7d, 0x4c, 0x24, 0x0c, 0x63, 0xdd, 0x79, 0x3f, 0xfd, 0xcd, 0x6f, 0xe3, - 0xfb, 0xd0, 0x74, 0x5c, 0x37, 0x1a, 0x87, 0xa9, 0x4d, 0x07, 0x88, 0xdc, 0xc4, 0x86, 0xc2, 0x9e, - 0xe3, 0x39, 0x72, 0x13, 0x40, 0x0c, 0x9d, 0x84, 0xcb, 0xec, 0x4c, 0x6e, 0x5e, 0x5d, 0x22, 0xb8, - 0xf6, 0xa9, 0x8b, 0x09, 0xff, 0x74, 0xd6, 0xc5, 0x8e, 0xfd, 0x53, 0x54, 0x40, 0x6e, 0x6b, 0x84, - 0x1b, 0xc5, 0x5c, 0x7b, 0xd8, 0x14, 0x3f, 0x46, 0x98, 0xfd, 0xec, 0xc2, 0x66, 0xc3, 0x82, 0xb0, - 0x96, 0x53, 0xcf, 0x9c, 0x1a, 0xcc, 0x3f, 0x32, 0xa0, 0xb2, 0x23, 0x37, 0xe5, 0xcd, 0xa2, 0x54, - 0xf1, 0x92, 0x28, 0x55, 0xba, 0x64, 0x83, 0xcb, 0x57, 0x6f, 0x70, 0xe5, 0xe2, 0x06, 0x63, 0xd9, - 0xd6, 0xcc, 0x07, 0x7d, 0x76, 0x37, 0x9b, 0xc5, 0x50, 0x15, 0x93, 0x4e, 0x53, 0x08, 0xcd, 0x66, - 0xbd, 0x03, 0x2d, 0xed, 0x7f, 0x52, 0x35, 0x52, 0xeb, 0x4d, 0x0d, 0x92, 0x6e, 0x7e, 0x0c, 0x65, - 0x27, 0x4d, 0x13, 0x5d, 0xd9, 0xde, 0x5e, 0x74, 0xcc, 0x6c, 0x6d, 0x23, 0xc7, 0x7e, 0x98, 0x26, - 0xe7, 0x96, 0xe4, 0x5e, 0x7b, 0x04, 0x30, 0x05, 0x31, 0x6c, 0x4e, 0x2d, 0x1b, 0xff, 0xb2, 0x55, - 0x28, 0x4f, 0x9c, 0x60, 0xac, 0xe7, 0x94, 0x8d, 0xdf, 0x2a, 0x3c, 0x32, 0xcc, 0x5b, 0x50, 0xc2, - 0xe3, 0x48, 0xee, 0xe1, 0x28, 0x4a, 0x75, 0x3d, 0xae, 0x5a, 0xe6, 0xdf, 0x1b, 0xd0, 0x9e, 0x7b, - 0x55, 0xba, 0xa3, 0x5f, 0x7d, 0x8c, 0xd9, 0x83, 0x77, 0xe6, 0xd1, 0xe7, 0xbb, 0x15, 0x07, 0x6f, - 0xf2, 0xd6, 0x32, 0x77, 0x45, 0x5f, 0x7e, 0xa3, 0x2b, 0x7a, 0xf3, 0x1e, 0xd6, 0xec, 0xdc, 0x09, - 0xa7, 0xd5, 0xcd, 0x4c, 0xd2, 0x68, 0xcc, 0x26, 0x8d, 0xe6, 0x11, 0x74, 0x32, 0xf6, 0xb7, 0x59, - 0x76, 0x0f, 0xaa, 0x62, 0x4c, 0xbe, 0x42, 0x8b, 0xae, 0x59, 0xba, 0x69, 0x3e, 0x82, 0xb6, 0x7a, - 0x79, 0xd3, 0x02, 0xdc, 0x85, 0x8e, 0x70, 0x26, 0xdc, 0x4e, 0x23, 0x3b, 0x9f, 0x4f, 0xd6, 0xac, - 0x16, 0xc2, 0x27, 0x91, 0x8a, 0x21, 0xe6, 0x5f, 0x1a, 0xd0, 0xc9, 0xba, 0xbe, 0xa5, 0x0e, 0xa6, - 0x2b, 0x2c, 0xcc, 0xa5, 0xc5, 0x3f, 0x00, 0xe6, 0x46, 0x41, 0x80, 0x87, 0x0e, 0x3d, 0x5d, 0x51, - 0x7c, 0x50, 0x49, 0x68, 0x57, 0x51, 0x70, 0xdb, 0x77, 0x11, 0xc7, 0x83, 0x75, 0x86, 0x9b, 0x6e, - 0x8d, 0x65, 0xe5, 0xd6, 0xc9, 0x31, 0x1f, 0xfb, 0x5f, 0x71, 0x73, 0x05, 0x96, 0x77, 0x87, 0xdc, - 0x3d, 0xdb, 0xf6, 0x46, 0x7e, 0xa8, 0x16, 0x6b, 0x7e, 0x6d, 0x00, 0xcb, 0xa3, 0x6f, 0xb3, 0x8e, - 0x37, 0x7d, 0x8e, 0xdc, 0x84, 0xe5, 0xa1, 0x23, 0xec, 0x98, 0x87, 0x9e, 0x1f, 0x9e, 0xda, 0x0e, - 0xce, 0x44, 0x2b, 0xaa, 0x59, 0x9d, 0xa1, 0x23, 0x8e, 0x24, 0x4e, 0x02, 0x98, 0xff, 0x64, 0xc0, - 0xcd, 0x7d, 0x75, 0x02, 0xab, 0x8d, 0xb6, 0x38, 0xaa, 0x21, 0x53, 0xcf, 0x82, 0x0a, 0xd1, 0x78, - 0xab, 0x0a, 0xf1, 0x36, 0x34, 0xd4, 0xa9, 0x9e, 0x73, 0x77, 0x90, 0xd0, 0x73, 0x95, 0xd0, 0x27, - 0x72, 0x4e, 0xc9, 0x21, 0xa3, 0x57, 0x43, 0x61, 0xc4, 0xf2, 0x21, 0xb4, 0xa9, 0x36, 0x09, 0x53, - 0x3b, 0xe0, 0xe1, 0x69, 0x3a, 0x54, 0x9b, 0xde, 0x52, 0xe8, 0x53, 0x02, 0xcd, 0x75, 0xb8, 0x75, - 0xd9, 0x62, 0xe4, 0x46, 0x9b, 0x7f, 0x66, 0xc0, 0xda, 0x1c, 0xcb, 0xb1, 0x33, 0xf9, 0x0d, 0x2e, - 0xf6, 0xe2, 0x4a, 0x8a, 0x8b, 0x56, 0x72, 0x13, 0xde, 0x5d, 0x28, 0xa6, 0x5a, 0xc6, 0x1f, 0xaa, - 0xf7, 0x07, 0xcf, 0x49, 0x1d, 0xb6, 0xa9, 0xa3, 0x85, 0x31, 0x7b, 0x0d, 0xb8, 0xa7, 0xde, 0x11, - 0xa8, 0xc2, 0x55, 0x51, 0xe3, 0x21, 0x34, 0xc8, 0x70, 0x4f, 0x93, 0x68, 0x1c, 0xeb, 0x4b, 0xff, - 0x6b, 0xf3, 0x3d, 0x3e, 0x45, 0xaa, 0x45, 0x6f, 0xb9, 0xf4, 0x57, 0xc8, 0xd2, 0x0d, 0x35, 0x94, - 0xdd, 0xa5, 0x52, 0x55, 0x87, 0x1e, 0x74, 0x1b, 0x50, 0x55, 0x51, 0x30, 0xe1, 0xb9, 0xfa, 0x0d, - 0x34, 0x24, 0x6b, 0xbb, 0x91, 0xf3, 0x0a, 0x69, 0x52, 0x69, 0xe5, 0x91, 0xf3, 0x4a, 0xc1, 0x7e, - 0x88, 0x70, 0x59, 0xc1, 0x7e, 0x78, 0x82, 0x12, 0xd2, 0x87, 0x0c, 0x59, 0x60, 0xab, 0xaa, 0xc0, - 0x96, 0x7b, 0xd3, 0xd4, 0x81, 0xad, 0x31, 0x9a, 0x36, 0xcc, 0x7f, 0x31, 0xa0, 0x35, 0x23, 0xff, - 0xa2, 0x64, 0x9f, 0xfd, 0x14, 0x3a, 0xd3, 0xe7, 0x17, 0x79, 0x2b, 0x50, 0xb8, 0x62, 0xd7, 0x5a, - 0xd9, 0x5b, 0x0c, 0x95, 0xbc, 0x53, 0x91, 0x8b, 0x79, 0x91, 0x2f, 0x59, 0xe0, 0x5d, 0xe8, 0x20, - 0x77, 0x7e, 0x73, 0xe4, 0x4a, 0x5b, 0xd2, 0xf5, 0xf5, 0xfe, 0x5c, 0x87, 0x8a, 0x32, 0x05, 0xf9, - 0x06, 0xa6, 0x5a, 0xe6, 0x3f, 0x54, 0xa0, 0x99, 0x97, 0x26, 0xf7, 0x20, 0x61, 0xcc, 0x3c, 0x48, - 0xe8, 0x85, 0x16, 0x72, 0x0b, 0xdd, 0x84, 0xe5, 0x70, 0x3c, 0xea, 0xf3, 0xc4, 0x8e, 0x06, 0x36, - 0x0f, 0xd3, 0xc4, 0xe7, 0x52, 0xea, 0xa2, 0xd5, 0x91, 0x84, 0x17, 0x83, 0x7d, 0x09, 0xe7, 0x96, - 0x55, 0x5a, 0xbc, 0xac, 0x72, 0x7e, 0x59, 0x73, 0xfa, 0xae, 0x5c, 0xd0, 0xf7, 0xbb, 0x50, 0x57, - 0x37, 0xa8, 0xbe, 0x47, 0xea, 0x2b, 0x5a, 0x35, 0x09, 0xcc, 0xdf, 0x96, 0xd5, 0x2e, 0x3f, 0x10, - 0xeb, 0x0b, 0xae, 0x9e, 0xa7, 0x0f, 0x76, 0x1f, 0x40, 0x89, 0x8a, 0xfa, 0x06, 0x19, 0x47, 0x37, - 0x7f, 0x3e, 0x52, 0x35, 0x4f, 0x54, 0x1c, 0xce, 0x17, 0x36, 0x1a, 0x09, 0x95, 0x22, 0x35, 0xab, - 0xe2, 0x0b, 0xfa, 0x98, 0xe2, 0x1d, 0xa8, 0xc9, 0x2b, 0x04, 0x55, 0x86, 0x14, 0xad, 0x2a, 0xb5, - 0x0f, 0xbd, 0x9c, 0x32, 0xda, 0x79, 0x65, 0xb0, 0xff, 0x0f, 0x6b, 0xb8, 0x47, 0x7d, 0x7e, 0x4a, - 0x3b, 0x65, 0xfb, 0xa1, 0xed, 0xf1, 0x81, 0x33, 0x0e, 0x52, 0xdb, 0x1d, 0x50, 0xe1, 0x51, 0xb2, - 0xae, 0x8d, 0xfc, 0x70, 0x07, 0x19, 0x4e, 0xc4, 0x61, 0xb8, 0x27, 0xa9, 0xbb, 0x03, 0x8a, 0x6f, - 0xf4, 0xdc, 0x1f, 0x0d, 0x06, 0x82, 0xa7, 0x54, 0x85, 0x94, 0xac, 0x06, 0x61, 0x2f, 0x08, 0x9a, - 0xb2, 0xa8, 0xb9, 0x97, 0x73, 0x2c, 0x32, 0x22, 0x2c, 0xbc, 0xd3, 0x60, 0x6f, 0x79, 0xa7, 0x91, - 0x7f, 0x14, 0x5a, 0x99, 0x7b, 0x14, 0xda, 0x80, 0xae, 0xd2, 0xda, 0x54, 0x3f, 0xab, 0xa4, 0x84, - 0xb6, 0xc4, 0x8f, 0xb5, 0x96, 0x3e, 0x80, 0xb6, 0xbe, 0x21, 0x57, 0xca, 0xba, 0x46, 0x7c, 0xea, - 0xde, 0x7c, 0x5f, 0xaa, 0xec, 0xe1, 0xf4, 0x1e, 0x3d, 0x8e, 0xdc, 0xa1, 0x7a, 0x8a, 0x5f, 0x99, - 0x3d, 0xb3, 0xf6, 0x91, 0x94, 0x5d, 0xa5, 0x63, 0x83, 0x59, 0xb0, 0x4a, 0x11, 0x2a, 0x97, 0x32, - 0x93, 0x9b, 0xde, 0xa0, 0x38, 0xbc, 0x3e, 0x7b, 0x85, 0x8b, 0x0a, 0x9f, 0xde, 0x05, 0x93, 0xcb, - 0xb2, 0xc1, 0x05, 0xcc, 0xfc, 0xc6, 0x80, 0xe5, 0xfc, 0x6d, 0xcd, 0xbe, 0xce, 0x0b, 0x86, 0x4e, - 0x1c, 0xf3, 0xd0, 0x76, 0xf4, 0x7b, 0x45, 0x4d, 0x02, 0xdb, 0x74, 0xe9, 0x4b, 0xa7, 0xae, 0xed, - 0x46, 0x9e, 0x8e, 0xe3, 0x75, 0x42, 0x76, 0x23, 0x0f, 0x0f, 0x6c, 0xf9, 0xf5, 0x95, 0x3d, 0xe2, - 0x42, 0x60, 0xca, 0x22, 0x0f, 0xad, 0x26, 0x81, 0xcf, 0x24, 0x36, 0x13, 0x34, 0xf5, 0x6b, 0xa0, - 0x0c, 0x9a, 0xe6, 0x43, 0x28, 0x1d, 0xc7, 0x0e, 0xe5, 0xe6, 0xca, 0x2a, 0xa4, 0x00, 0xaa, 0x95, - 0x33, 0xc3, 0xc2, 0x4c, 0x4c, 0xd8, 0x87, 0x06, 0xf6, 0x13, 0x2f, 0x06, 0xfa, 0x29, 0xff, 0x42, - 0x88, 0x33, 0xa1, 0x2c, 0x90, 0x65, 0xfe, 0x71, 0x19, 0xfb, 0x59, 0x92, 0x64, 0x7e, 0x53, 0x84, - 0xde, 0xd3, 0xe8, 0x94, 0x72, 0x95, 0x71, 0x1f, 0xcd, 0xc4, 0x71, 0xd5, 0x6d, 0xba, 0x93, 0xbd, - 0x86, 0x1b, 0xb3, 0xaf, 0xe1, 0x53, 0x9f, 0x96, 0x22, 0x4d, 0x7d, 0x7a, 0xee, 0x61, 0x88, 0xad, - 0x43, 0xd3, 0x0f, 0xe3, 0x71, 0x6a, 0xcf, 0x44, 0x45, 0x20, 0xec, 0x19, 0xc5, 0x90, 0x29, 0x47, - 0xfe, 0x04, 0x50, 0x1c, 0x14, 0x7c, 0xee, 0x42, 0x47, 0x89, 0x65, 0x0f, 0x92, 0x68, 0x34, 0x8d, - 0x34, 0x2d, 0x05, 0x3f, 0x4e, 0xa2, 0xd1, 0x09, 0x7d, 0x27, 0xa6, 0xf9, 0xc6, 0x61, 0xea, 0x07, - 0xb6, 0x7a, 0x6d, 0x2c, 0x59, 0x6d, 0x85, 0x7f, 0x8e, 0xf0, 0x89, 0xc0, 0x68, 0x80, 0xb3, 0x4d, - 0xe3, 0x0e, 0x06, 0x3d, 0x15, 0x75, 0x50, 0xd0, 0x5c, 0xd4, 0x19, 0x39, 0xaf, 0x90, 0xb0, 0x4e, - 0xdf, 0x8d, 0xc1, 0x25, 0x31, 0xa6, 0x90, 0x9e, 0xcf, 0x04, 0x92, 0xc6, 0x6c, 0x20, 0xb9, 0x07, - 0x55, 0x11, 0x8d, 0x13, 0x97, 0x8b, 0x5e, 0x73, 0xf6, 0x69, 0x3d, 0xa7, 0x40, 0x4b, 0xf3, 0x98, - 0xbf, 0x0f, 0xab, 0x8b, 0x14, 0xc2, 0x3e, 0x86, 0x12, 0x05, 0x30, 0x43, 0x99, 0x7f, 0x76, 0xbb, - 0xb7, 0x58, 0x79, 0x16, 0x71, 0xb3, 0x7b, 0xd0, 0x10, 0x22, 0xb5, 0xa3, 0x71, 0x1a, 0x8f, 0xd3, - 0xc5, 0x9f, 0x19, 0x80, 0x10, 0xe9, 0x0b, 0x49, 0x37, 0x7f, 0x0f, 0xae, 0x2d, 0x1a, 0x50, 0xb0, - 0x3d, 0x68, 0x8b, 0x19, 0x44, 0xe5, 0x18, 0xef, 0x5d, 0x25, 0x87, 0x35, 0xd7, 0xc7, 0xfc, 0xa6, - 0x00, 0xcb, 0x8a, 0x71, 0x77, 0xba, 0x32, 0xca, 0xbc, 0x75, 0x2b, 0x53, 0xb2, 0xa1, 0x33, 0x6f, - 0x4d, 0x51, 0x7a, 0xde, 0x82, 0x95, 0x1c, 0x77, 0xa6, 0x6a, 0x69, 0x8a, 0xcb, 0x53, 0x92, 0xd6, - 0xb6, 0xbe, 0x39, 0x2e, 0xe6, 0x6e, 0x8e, 0x31, 0xfc, 0x45, 0xa3, 0x11, 0x0f, 0x53, 0x7d, 0x69, - 0x90, 0xb5, 0xd9, 0x7b, 0x50, 0x77, 0x92, 0xd4, 0x1f, 0x38, 0x6e, 0xaa, 0xaf, 0xe5, 0xa6, 0x00, - 0x66, 0x6d, 0x59, 0xc3, 0x1e, 0x3a, 0x42, 0x1f, 0xd5, 0xad, 0x0c, 0x3d, 0x70, 0xc4, 0x90, 0x7d, - 0x0f, 0x3a, 0xa7, 0x3c, 0xe4, 0x89, 0x93, 0x72, 0x4f, 0x7d, 0xe1, 0x21, 0x2f, 0xed, 0xda, 0x19, - 0x4c, 0xc9, 0x84, 0xf9, 0x77, 0x86, 0xcc, 0xdf, 0xf6, 0x3d, 0x3f, 0x5d, 0xe8, 0xc4, 0xf7, 0xe1, - 0x9a, 0xc7, 0x03, 0x9e, 0x72, 0x3b, 0xfb, 0x44, 0x62, 0xfa, 0xc5, 0x48, 0xdd, 0x5a, 0x91, 0xc4, - 0x23, 0x45, 0x93, 0x5f, 0x8b, 0x3c, 0x81, 0x55, 0xd5, 0x27, 0x88, 0x4e, 0x73, 0x5d, 0x64, 0x0d, - 0xfd, 0x4e, 0x96, 0xe0, 0x10, 0x4f, 0xde, 0x08, 0x99, 0xec, 0xf6, 0x54, 0xf6, 0x92, 0x83, 0xdd, - 0x81, 0x96, 0xc7, 0x45, 0x9a, 0x8c, 0xdd, 0xd4, 0x16, 0x3c, 0x18, 0xa8, 0xef, 0x14, 0x9b, 0x1a, - 0x3c, 0xe6, 0xc1, 0xc0, 0x7c, 0x09, 0xcb, 0x17, 0x46, 0xfb, 0xae, 0x31, 0x09, 0x33, 0x96, 0x97, - 0xc3, 0x48, 0xde, 0xeb, 0xf3, 0xd9, 0xe4, 0xb8, 0x43, 0x04, 0x1c, 0x5d, 0xa5, 0xc7, 0x7f, 0x6b, - 0x40, 0xfd, 0x99, 0x7f, 0x9a, 0xd0, 0x47, 0x61, 0xec, 0x1e, 0xd4, 0xb9, 0xe7, 0xa7, 0xb6, 0x72, - 0x94, 0xe2, 0xfc, 0x37, 0x70, 0xb8, 0xcb, 0x56, 0x0d, 0x59, 0x28, 0xbe, 0xbd, 0x0f, 0xcd, 0x34, - 0x19, 0x87, 0x2e, 0x69, 0x29, 0x8d, 0x94, 0x0d, 0x35, 0x32, 0xec, 0x24, 0x62, 0x9f, 0x40, 0x23, - 0x6f, 0xf4, 0x73, 0x3b, 0x78, 0xc1, 0x96, 0xad, 0x3c, 0x37, 0x5a, 0x41, 0xb6, 0x75, 0xd9, 0x35, - 0x30, 0x6a, 0xad, 0xad, 0xe1, 0x23, 0x42, 0x37, 0x9f, 0xc3, 0xfa, 0xeb, 0xbe, 0x9a, 0x65, 0x1d, - 0x68, 0x7c, 0x4e, 0x4f, 0x06, 0xf4, 0x71, 0x68, 0x77, 0x89, 0xb5, 0xa0, 0xfe, 0x73, 0xc7, 0x4f, - 0xb7, 0xe3, 0x38, 0x38, 0xef, 0x1a, 0x0c, 0xa0, 0xf2, 0xd8, 0x0f, 0x7d, 0x31, 0xec, 0x16, 0x36, - 0x3f, 0x83, 0x5b, 0x57, 0x7f, 0xd5, 0xca, 0x96, 0xa1, 0x95, 0x75, 0xde, 0x8b, 0x42, 0x1c, 0xef, - 0x1a, 0x2c, 0xe7, 0x26, 0x90, 0xdf, 0xff, 0x75, 0x8d, 0xcd, 0xdf, 0x86, 0xce, 0x5c, 0x3a, 0xc1, - 0x1a, 0x50, 0xfd, 0xfc, 0xf9, 0x93, 0xe7, 0x2f, 0x7e, 0xfe, 0xbc, 0xbb, 0xc4, 0xaa, 0x50, 0x7c, - 0xfa, 0xe5, 0xc7, 0x52, 0x80, 0xe3, 0xe7, 0xdb, 0x47, 0x47, 0xbf, 0xdb, 0x2d, 0xb0, 0x1a, 0x94, - 0xbe, 0x3c, 0x3e, 0xd9, 0xeb, 0x16, 0x37, 0xd7, 0xb3, 0x8f, 0x57, 0xf1, 0xb4, 0xac, 0x41, 0xe9, - 0x78, 0x77, 0x1b, 0xbb, 0xd5, 0xa0, 0xf4, 0xf8, 0xf0, 0xe9, 0x7e, 0xd7, 0xd8, 0xbc, 0x09, 0x8d, - 0x5c, 0x2e, 0xcf, 0x2a, 0x50, 0xf8, 0xe2, 0x47, 0xdd, 0x25, 0xfa, 0xbd, 0xdf, 0x35, 0x36, 0x6f, - 0x43, 0x4d, 0x47, 0x5a, 0x9c, 0x42, 0x9a, 0x99, 0x9c, 0xf7, 0x68, 0x9c, 0x76, 0x8d, 0xfb, 0xff, - 0x5d, 0x80, 0x8a, 0x9c, 0x82, 0x7d, 0x02, 0xea, 0x0b, 0x69, 0x76, 0x6d, 0xee, 0xf3, 0x25, 0xb9, - 0x91, 0x6b, 0xd7, 0xe7, 0x61, 0x55, 0x46, 0x2d, 0x7d, 0x64, 0xb0, 0x23, 0x58, 0xa1, 0x82, 0x3c, - 0x5f, 0x16, 0xbf, 0x88, 0x59, 0xa6, 0xec, 0x0b, 0x35, 0xfc, 0xda, 0xda, 0x22, 0x52, 0x6e, 0xc4, - 0x21, 0x5c, 0x5b, 0xa8, 0x06, 0xf6, 0xc1, 0x9b, 0x7c, 0x2b, 0xbd, 0xf6, 0xe1, 0x6b, 0xb8, 0xe4, - 0x4c, 0x1b, 0xc6, 0x47, 0x06, 0xfb, 0x29, 0x54, 0x63, 0xc9, 0xc4, 0xae, 0xcf, 0xf5, 0xd2, 0xa3, - 0xdd, 0xb8, 0x80, 0x6b, 0x49, 0xb1, 0xb7, 0x2b, 0x2f, 0x77, 0x58, 0xee, 0x73, 0x8a, 0xfc, 0xe5, - 0xd0, 0xb4, 0xf7, 0xdc, 0x2d, 0x90, 0xb9, 0x74, 0xff, 0x6f, 0x0c, 0xe8, 0xcc, 0x95, 0xa8, 0xec, - 0x4b, 0xa8, 0xaa, 0xaa, 0x9d, 0x65, 0xab, 0xb8, 0xf2, 0x76, 0x61, 0xed, 0xee, 0xeb, 0xd8, 0x32, - 0x69, 0x7f, 0x07, 0x4a, 0xc2, 0x99, 0x70, 0x66, 0x5e, 0xd2, 0x23, 0x57, 0xc6, 0xaf, 0xdd, 0xb9, - 0x92, 0x47, 0x0f, 0xb9, 0x73, 0xf7, 0xdf, 0xfe, 0xbc, 0x66, 0xfc, 0xea, 0xdb, 0x5b, 0xc6, 0xaf, - 0xbf, 0xbd, 0x65, 0xfc, 0xfb, 0xb7, 0xb7, 0x8c, 0x3f, 0xfd, 0x8f, 0x5b, 0x4b, 0xd0, 0x8d, 0x92, - 0xd3, 0xad, 0xd4, 0x3f, 0x9b, 0x6c, 0x9d, 0x4d, 0xe8, 0x83, 0xf8, 0x7e, 0x85, 0x7e, 0x1e, 0xfc, - 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb6, 0xaf, 0x80, 0x9a, 0x94, 0x2f, 0x00, 0x00, + // 4523 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x3a, 0x4d, 0x8f, 0x1c, 0x49, + 0x56, 0x9d, 0xf5, 0x5d, 0xaf, 0x3e, 0x3b, 0xba, 0xdb, 0xae, 0xe9, 0x19, 0xdb, 0x3d, 0xe9, 0x19, + 0x6f, 0xd3, 0xbb, 0xee, 0x9d, 0xb5, 0x67, 0xbd, 0x86, 0x59, 0xb4, 0xea, 0x2f, 0x4f, 0xf7, 0xba, + 0x6d, 0x37, 0x59, 0x3d, 0xb3, 0x62, 0x24, 0x94, 0xca, 0xca, 0x8c, 0xea, 0xca, 0xed, 0xac, 0xcc, + 0xdc, 0x8c, 0xa8, 0xb2, 0x7b, 0x0e, 0x1c, 0xb8, 0x8f, 0x06, 0x10, 0x07, 0xfe, 0x00, 0x12, 0x07, + 0x90, 0xb8, 0x72, 0x02, 0x09, 0x10, 0x8b, 0x40, 0x62, 0x0f, 0x1c, 0x38, 0xa2, 0x41, 0xf0, 0x2f, + 0x90, 0x50, 0xbc, 0x88, 0xc8, 0xca, 0xac, 0xae, 0x6e, 0xdb, 0x03, 0xda, 0x53, 0x55, 0xbc, 0xf7, + 0x22, 0xe2, 0xc5, 0xfb, 0x8a, 0xf7, 0x5e, 0x24, 0xc0, 0x20, 0x89, 0x07, 0xdb, 0x71, 0x12, 0xf1, + 0x88, 0x54, 0x06, 0x8e, 0x7b, 0x3e, 0x89, 0xd7, 0x5b, 0xe7, 0xd3, 0x24, 0x76, 0x35, 0x78, 0xbd, + 0x45, 0x93, 0x24, 0x4a, 0xa9, 0xd6, 0x9b, 0x63, 0xca, 0x9d, 0x74, 0x44, 0x68, 0xe8, 0x26, 0x17, + 0x31, 0xf7, 0xa3, 0x30, 0x85, 0xad, 0x9e, 0x45, 0x67, 0x11, 0xfe, 0xfd, 0xbe, 0xf8, 0xa7, 0xa0, + 0x9d, 0x64, 0xc2, 0x38, 0xfe, 0x95, 0x00, 0xf3, 0x2f, 0x0c, 0x78, 0xef, 0x24, 0xa1, 0xb1, 0x93, + 0xd0, 0x7e, 0xe8, 0xc4, 0x6c, 0x14, 0xf1, 0x5d, 0x64, 0xc0, 0xa2, 0xbf, 0x98, 0x50, 0xc6, 0xc9, + 0x63, 0x28, 0xf0, 0x8b, 0x9e, 0xb1, 0x61, 0x6c, 0xb6, 0x1f, 0x6c, 0x6e, 0x4b, 0xe6, 0xb6, 0xaf, + 0x9b, 0x71, 0x7a, 0x11, 0x53, 0xab, 0xc0, 0x2f, 0xc8, 0x26, 0x54, 0x13, 0x7a, 0xe6, 0x47, 0x21, + 0xeb, 0x15, 0x36, 0x8a, 0x9b, 0x8d, 0x07, 0xed, 0x6d, 0xc5, 0xb5, 0x85, 0x60, 0x4b, 0xa3, 0xc9, + 0x26, 0x74, 0x03, 0xea, 0x30, 0x6a, 0xfb, 0xa1, 0xcd, 0xa8, 0x1b, 0x85, 0x1e, 0xeb, 0x15, 0x37, + 0x8c, 0xcd, 0x92, 0xd5, 0x46, 0xf8, 0x51, 0xd8, 0x97, 0x50, 0xf3, 0xdf, 0x0c, 0xb8, 0x75, 0xc5, + 0xe6, 0x2c, 0x8e, 0x42, 0x46, 0xc9, 0xa3, 0x0c, 0xbf, 0xf7, 0xae, 0xe5, 0xf7, 0x60, 0x4a, 0xc3, + 0x19, 0xb7, 0xf7, 0xa0, 0x22, 0xd9, 0xe9, 0x15, 0x36, 0x8c, 0x05, 0xcc, 0x2a, 0x2c, 0xf9, 0x00, + 0xca, 0xa8, 0x0a, 0x64, 0x50, 0x90, 0x69, 0xc5, 0x1c, 0x88, 0x5f, 0x4b, 0x22, 0xc9, 0x7d, 0x58, + 0x09, 0x1c, 0xc6, 0x6d, 0x75, 0x2c, 0x66, 0x4f, 0x9d, 0xc0, 0xf7, 0x7a, 0xa5, 0x0d, 0x63, 0xb3, + 0x66, 0x75, 0x05, 0xea, 0x18, 0x0f, 0xc6, 0x3e, 0x17, 0x70, 0xf3, 0xbf, 0xaa, 0x00, 0x92, 0xa9, + 0x67, 0x94, 0x3b, 0xe4, 0x16, 0x80, 0x1b, 0x4c, 0x18, 0xa7, 0x89, 0xed, 0x7b, 0x78, 0x96, 0x92, + 0x55, 0x57, 0x90, 0x23, 0x8f, 0x7c, 0x07, 0x3a, 0x1a, 0x3d, 0xa5, 0x09, 0xd3, 0x3c, 0xd7, 0xad, + 0xb6, 0x02, 0x7f, 0x2e, 0xa1, 0x62, 0x9d, 0xc1, 0x8c, 0xa6, 0x81, 0x34, 0xf5, 0x41, 0x8a, 0xee, + 0x41, 0x55, 0xe3, 0x9a, 0x1b, 0xc6, 0x66, 0xd9, 0xd2, 0x43, 0x62, 0x42, 0x79, 0xe8, 0x07, 0x94, + 0xf5, 0x4a, 0xa8, 0xb8, 0xa6, 0x96, 0xe3, 0x13, 0x3f, 0xa0, 0x96, 0x44, 0x91, 0xef, 0x03, 0x88, + 0x3f, 0xb6, 0x1f, 0x7a, 0xf4, 0x55, 0xaf, 0x85, 0xd2, 0xe8, 0x6a, 0x42, 0x71, 0x0c, 0x24, 0xae, + 0x0b, 0x9a, 0x23, 0x41, 0x42, 0xee, 0x42, 0x8b, 0x71, 0x27, 0xe1, 0x29, 0x43, 0x65, 0x3c, 0x58, + 0x13, 0x81, 0x9a, 0xa7, 0x3b, 0xd0, 0xa0, 0xa1, 0x97, 0x92, 0x54, 0x90, 0x04, 0x68, 0xe8, 0x69, + 0x82, 0x4d, 0xa8, 0x32, 0x77, 0x44, 0xc7, 0x0e, 0xeb, 0x55, 0x95, 0x55, 0xa9, 0x3d, 0xfb, 0x08, + 0xb6, 0x34, 0x9a, 0x3c, 0x84, 0xa6, 0xfc, 0xab, 0x58, 0x6c, 0x5f, 0xc1, 0x62, 0x43, 0x52, 0x49, + 0x26, 0xd7, 0xa1, 0xee, 0x33, 0x3b, 0x71, 0x5e, 0xda, 0xe7, 0xd3, 0x5e, 0x0d, 0xd5, 0x55, 0xf5, + 0x99, 0xe5, 0xbc, 0x7c, 0x3a, 0x15, 0x27, 0x16, 0x88, 0xc4, 0x09, 0xcf, 0x28, 0xeb, 0xd5, 0x71, + 0xf7, 0x74, 0x39, 0xcb, 0x79, 0x69, 0x09, 0x84, 0x55, 0x4f, 0xd4, 0x3f, 0x46, 0x1e, 0x43, 0x27, + 0x9d, 0xa0, 0x98, 0xe8, 0x5c, 0xc1, 0x44, 0x4b, 0xcf, 0x92, 0x6c, 0x10, 0x28, 0x79, 0x5e, 0xc0, + 0x7a, 0xb0, 0x61, 0x6c, 0x36, 0x2d, 0xfc, 0x4f, 0x7e, 0x00, 0x0d, 0xcf, 0x0b, 0xe4, 0x3a, 0x94, + 0xf5, 0xba, 0x57, 0xac, 0x04, 0x9e, 0x17, 0x1c, 0x49, 0x1a, 0x21, 0x72, 0x89, 0xb6, 0x13, 0xca, + 0x26, 0x01, 0xef, 0x2d, 0xa3, 0x0d, 0x34, 0x07, 0xda, 0x67, 0x26, 0x01, 0x27, 0x1f, 0x43, 0xc3, + 0x89, 0xfd, 0x54, 0xe4, 0x04, 0x5d, 0x67, 0x65, 0x5b, 0xc7, 0x9f, 0x9d, 0x93, 0x23, 0x25, 0x7b, + 0x0b, 0x9c, 0xd8, 0xd7, 0x7a, 0x78, 0x08, 0xb5, 0x38, 0x0a, 0x7c, 0xd7, 0xa7, 0xac, 0xb7, 0x82, + 0xa2, 0xb8, 0x99, 0x7a, 0x5b, 0xe0, 0xb8, 0x74, 0x4c, 0x43, 0x7e, 0x22, 0x08, 0x2e, 0xac, 0x94, + 0x90, 0x7c, 0x0c, 0x37, 0x42, 0xfa, 0xd2, 0x76, 0xa3, 0x20, 0x70, 0x44, 0xb4, 0x62, 0x36, 0x0d, + 0x9d, 0x41, 0x40, 0xbd, 0xde, 0x2a, 0x32, 0xb6, 0x1a, 0xd2, 0x97, 0x7b, 0x29, 0xf2, 0x40, 0xe2, + 0x94, 0x4e, 0xf8, 0xab, 0x50, 0xe8, 0x64, 0x4d, 0xeb, 0xe4, 0xf4, 0x55, 0xf8, 0x74, 0x4a, 0xb6, + 0xa0, 0xea, 0x0d, 0xec, 0xb1, 0x13, 0xb3, 0xde, 0x0d, 0xe4, 0x62, 0x39, 0xe5, 0xc2, 0xe7, 0xc9, + 0xfe, 0xee, 0x33, 0x27, 0xb6, 0x2a, 0xde, 0xe0, 0x99, 0x13, 0x33, 0x72, 0x0f, 0x4a, 0xe3, 0xc8, + 0xa3, 0xbd, 0x9b, 0x78, 0x42, 0xa2, 0x09, 0x95, 0xe3, 0x45, 0x1e, 0xb5, 0x10, 0x4f, 0xbe, 0x0b, + 0x15, 0xa5, 0xe3, 0x1e, 0x2e, 0xb9, 0x92, 0xa7, 0x94, 0x6a, 0x56, 0x24, 0xc2, 0x60, 0x95, 0x88, + 0x99, 0xff, 0x25, 0xed, 0xbd, 0x23, 0x0d, 0x56, 0x82, 0xfa, 0xfe, 0x97, 0xf4, 0xa7, 0xa5, 0x5a, + 0xb1, 0x5b, 0xb2, 0x4a, 0xb1, 0xc3, 0x47, 0xe6, 0x19, 0x34, 0x32, 0x6b, 0x90, 0x77, 0xa1, 0x2e, + 0x3d, 0xe2, 0x9c, 0xca, 0x90, 0xd5, 0xb4, 0x6a, 0x08, 0x78, 0x4a, 0x2f, 0xc8, 0x4d, 0xa8, 0x0a, + 0x4f, 0x10, 0xa8, 0x02, 0xa2, 0x2a, 0x34, 0xf4, 0x04, 0x22, 0x75, 0xce, 0xe2, 0x95, 0xce, 0x69, + 0xfe, 0x53, 0x01, 0x4a, 0x62, 0x2c, 0x0c, 0x29, 0x74, 0xc6, 0x14, 0x57, 0xaf, 0x5b, 0xf8, 0x9f, + 0xdc, 0x80, 0x0a, 0x1b, 0x39, 0x0f, 0x7e, 0xf8, 0x48, 0x2f, 0x2c, 0x47, 0x79, 0x76, 0x8a, 0x57, + 0xb3, 0x53, 0xca, 0xb1, 0xf3, 0xff, 0xe3, 0xd6, 0xeb, 0x50, 0x73, 0x13, 0xf7, 0xd1, 0xc7, 0xaf, + 0xa2, 0xa4, 0x57, 0x45, 0x6c, 0x3a, 0x16, 0x7c, 0xf1, 0x88, 0x3b, 0x81, 0x7d, 0x3e, 0x65, 0xe8, + 0x93, 0x25, 0xab, 0x86, 0x80, 0xa7, 0x53, 0x94, 0xbf, 0x44, 0x0e, 0x2e, 0x38, 0x7a, 0x25, 0xae, + 0x8c, 0xa0, 0x5d, 0x01, 0x21, 0x6d, 0x28, 0xb8, 0x43, 0x74, 0xa4, 0xba, 0x55, 0x70, 0x87, 0x42, + 0x22, 0xa8, 0xa9, 0x06, 0x52, 0xe2, 0x7f, 0xb1, 0x83, 0xeb, 0xc7, 0x23, 0x11, 0x6f, 0xa7, 0x18, + 0x0b, 0x9b, 0x56, 0x4d, 0x02, 0x8e, 0xa6, 0xe6, 0x57, 0x05, 0xa8, 0x69, 0xef, 0x22, 0xdf, 0x05, + 0x10, 0xf7, 0x82, 0x2d, 0x35, 0x60, 0x2c, 0xd0, 0x40, 0x7d, 0xac, 0x68, 0x99, 0x20, 0xf6, 0x9c, + 0x94, 0xb8, 0xb0, 0x88, 0x58, 0xe0, 0x25, 0x71, 0x26, 0xb0, 0x15, 0xaf, 0x0f, 0x6c, 0xf9, 0x38, + 0x54, 0x7a, 0x93, 0x38, 0x94, 0x86, 0x01, 0x39, 0xa7, 0x72, 0xb5, 0x5d, 0xeb, 0xd8, 0x20, 0x67, + 0xea, 0x38, 0x54, 0xde, 0x28, 0xea, 0x38, 0x64, 0x7e, 0x08, 0x9d, 0x39, 0x0f, 0x17, 0x64, 0x7e, + 0x38, 0x8c, 0x94, 0x0d, 0xe3, 0x7f, 0xf3, 0x18, 0xa0, 0xcf, 0x1d, 0xce, 0x76, 0x83, 0xc8, 0x3d, + 0x17, 0x6a, 0x8a, 0x47, 0x17, 0xcc, 0x77, 0x9d, 0x40, 0xdf, 0x69, 0x45, 0x0b, 0x34, 0xe8, 0xc8, + 0x13, 0x77, 0xd5, 0xcf, 0x59, 0x14, 0xda, 0x5c, 0xf8, 0xbc, 0x32, 0xcc, 0xba, 0x80, 0x9c, 0x0a, + 0x80, 0xf9, 0x23, 0xa8, 0xe3, 0x6a, 0xa8, 0x84, 0x2d, 0xa8, 0x0c, 0xc4, 0xaa, 0x5a, 0x01, 0xa9, + 0x2b, 0xcf, 0x36, 0xb4, 0x14, 0x85, 0xf9, 0x57, 0x06, 0xb4, 0xd3, 0x99, 0x69, 0x70, 0x7d, 0x63, + 0x9f, 0x78, 0x07, 0x6a, 0xc2, 0x42, 0x6c, 0x1a, 0xba, 0x2a, 0x25, 0xa9, 0x8a, 0xf1, 0x41, 0xe8, + 0xa6, 0xa8, 0x28, 0xf1, 0xd1, 0x25, 0x14, 0xea, 0x45, 0xe2, 0xe7, 0xed, 0xa9, 0x9c, 0xb7, 0x27, + 0x21, 0x0a, 0x3f, 0x0c, 0xfc, 0x90, 0xda, 0x42, 0xf9, 0xe8, 0x0b, 0x4d, 0x0b, 0x24, 0x68, 0xdf, + 0xe1, 0x8e, 0xf9, 0x07, 0x05, 0xa8, 0x48, 0x9d, 0x0b, 0xe3, 0xf5, 0x06, 0x4a, 0xac, 0x05, 0x6f, + 0x40, 0x56, 0xa1, 0x9c, 0x15, 0x90, 0x1c, 0xe4, 0x9c, 0xa7, 0x78, 0x9d, 0xf3, 0x94, 0xae, 0x77, + 0x9e, 0xf2, 0x25, 0xe7, 0xf9, 0x0d, 0xe8, 0x72, 0x7f, 0x18, 0x38, 0x6c, 0x64, 0x27, 0x34, 0x0e, + 0x7c, 0xd7, 0x61, 0xc8, 0x70, 0xcb, 0xea, 0x28, 0xb8, 0xa5, 0xc0, 0x82, 0x35, 0x26, 0xe4, 0x8c, + 0xee, 0xdb, 0xb4, 0xe4, 0x80, 0xfc, 0x08, 0x1a, 0xf8, 0x47, 0x5d, 0x7f, 0x35, 0xd4, 0xd7, 0x8d, + 0x9c, 0xbe, 0x52, 0xc5, 0x58, 0x80, 0xa4, 0xf8, 0xdf, 0x7c, 0x06, 0xe5, 0xa3, 0xfd, 0x67, 0x4e, + 0x2c, 0x78, 0x9c, 0xc4, 0x8c, 0x27, 0xd4, 0x19, 0x67, 0x2c, 0x47, 0x83, 0x8e, 0x3c, 0x11, 0x80, + 0xbc, 0xe8, 0x65, 0x38, 0x23, 0x29, 0x20, 0x49, 0x73, 0x06, 0x3c, 0xf2, 0xcc, 0x97, 0xd0, 0x14, + 0x17, 0x02, 0x1a, 0x93, 0x58, 0x75, 0x91, 0x0d, 0x7c, 0x00, 0x15, 0xdf, 0x13, 0x77, 0x89, 0x4a, + 0x01, 0x5b, 0x9a, 0x4d, 0x64, 0xc4, 0x2a, 0xfb, 0x9e, 0x98, 0x79, 0x1f, 0x20, 0x76, 0x12, 0xee, + 0xe3, 0x15, 0xa5, 0x5c, 0x75, 0x8e, 0x32, 0x43, 0x60, 0x32, 0xa8, 0xa7, 0x37, 0xd1, 0xff, 0x61, + 0xd7, 0xef, 0x41, 0x05, 0x75, 0xad, 0x77, 0x5c, 0xcd, 0x5e, 0x73, 0xfa, 0x54, 0x96, 0xa2, 0x31, + 0x4f, 0xa0, 0xa6, 0xe3, 0xc0, 0xb7, 0xbc, 0x64, 0x64, 0xd4, 0x2c, 0xea, 0xa8, 0x69, 0xee, 0x43, + 0x7b, 0x4f, 0x25, 0xa0, 0xfb, 0x98, 0xe9, 0x8a, 0xec, 0xd1, 0x9d, 0x24, 0x09, 0x0d, 0xb9, 0xca, + 0x50, 0xf5, 0x50, 0x60, 0x12, 0x59, 0x0b, 0xe0, 0xa2, 0x25, 0x4b, 0x0f, 0xcd, 0x7f, 0x31, 0xa0, + 0x2c, 0x67, 0x77, 0xa1, 0x38, 0x66, 0x67, 0x4a, 0x10, 0xe2, 0x2f, 0xd9, 0x85, 0xee, 0x2c, 0xe9, + 0xb5, 0xb3, 0x39, 0x76, 0x6a, 0x2e, 0x79, 0x0e, 0x0e, 0x97, 0xd2, 0x84, 0xf7, 0xc8, 0x93, 0xab, + 0x6e, 0x43, 0xed, 0x7c, 0xaa, 0xe6, 0x96, 0x70, 0xee, 0x72, 0x9a, 0xc7, 0x3c, 0xa5, 0x17, 0x7a, + 0x5a, 0xf5, 0x7c, 0x2a, 0xe9, 0x1f, 0x42, 0x53, 0xa6, 0xf5, 0x6a, 0x4e, 0x79, 0x51, 0x4e, 0x7f, + 0xb8, 0x64, 0x35, 0x24, 0x15, 0x0e, 0x77, 0x6b, 0x50, 0xf1, 0x28, 0x77, 0xfc, 0xc0, 0xfc, 0x6b, + 0x03, 0x6e, 0xf7, 0xd1, 0xc2, 0x64, 0x04, 0x3d, 0x75, 0xd8, 0x79, 0x9f, 0xba, 0x93, 0xc4, 0xe7, + 0x17, 0x7b, 0x51, 0x38, 0xf4, 0xc5, 0xa9, 0x48, 0x1c, 0x38, 0x7e, 0xc8, 0xe9, 0x2b, 0x8e, 0xfe, + 0x9e, 0xaa, 0x21, 0x13, 0xb6, 0xf6, 0x64, 0x68, 0x08, 0x87, 0xd1, 0xe1, 0x92, 0xd5, 0x4d, 0xe9, + 0x45, 0x30, 0x10, 0xba, 0x38, 0x80, 0xe5, 0xb1, 0x83, 0x82, 0x39, 0xa7, 0x17, 0xb6, 0x8b, 0x0b, + 0x2b, 0x63, 0x49, 0x73, 0xae, 0x67, 0x48, 0xf0, 0x94, 0xaa, 0x7d, 0x0f, 0x97, 0xac, 0xce, 0x38, + 0x0f, 0xda, 0x6d, 0x02, 0xcc, 0xea, 0x44, 0x33, 0x00, 0x98, 0x6d, 0x4b, 0x7e, 0x02, 0x0d, 0x15, + 0xb0, 0xf8, 0x45, 0x4c, 0x55, 0xf9, 0x74, 0x7b, 0x3b, 0x57, 0x57, 0x1e, 0xa4, 0x83, 0x67, 0x94, + 0x8f, 0x22, 0xcf, 0x02, 0x39, 0x45, 0x94, 0x50, 0x58, 0xb2, 0xc8, 0x05, 0x66, 0xb6, 0xa4, 0x62, + 0xe0, 0x53, 0x7a, 0x61, 0xfe, 0x89, 0x01, 0x9d, 0x39, 0x16, 0xc9, 0xa7, 0xd0, 0x99, 0xad, 0xff, + 0x36, 0xfb, 0xb6, 0x67, 0x68, 0xdc, 0xfb, 0x31, 0x34, 0x66, 0xf2, 0xd1, 0xf7, 0xec, 0xcd, 0xfc, + 0x22, 0xe9, 0xe6, 0x16, 0xa4, 0x72, 0x61, 0xe6, 0x57, 0x15, 0x68, 0xe5, 0xcb, 0xdd, 0xd7, 0x94, + 0x5e, 0x39, 0x67, 0x2a, 0x5c, 0xed, 0x4c, 0xc5, 0xeb, 0x53, 0xa4, 0xd2, 0xeb, 0x53, 0xa4, 0xf2, + 0xa5, 0x14, 0xe9, 0x96, 0xb8, 0xf6, 0x39, 0xb5, 0x03, 0x7f, 0xec, 0x73, 0x95, 0x24, 0xd5, 0x05, + 0xe4, 0x58, 0x00, 0xc8, 0x06, 0x34, 0xdc, 0x28, 0x94, 0x3e, 0xe8, 0x5e, 0x60, 0x9e, 0xd4, 0xb2, + 0xb2, 0x20, 0xf2, 0x13, 0xe8, 0x30, 0x1e, 0x25, 0xce, 0x19, 0xb5, 0x85, 0xd5, 0xd0, 0xd0, 0xc3, + 0x74, 0x29, 0x17, 0x8f, 0x11, 0xbd, 0x2b, 0xb1, 0x56, 0x9b, 0xe5, 0xc6, 0xf9, 0xe2, 0x08, 0xf2, + 0xc5, 0x91, 0x0c, 0x18, 0x8d, 0x34, 0xcd, 0x12, 0xee, 0x1c, 0x8d, 0xe3, 0x84, 0x32, 0x96, 0xaa, + 0xb7, 0x89, 0xea, 0x4d, 0x6d, 0x76, 0x6f, 0x86, 0xc7, 0x32, 0xbc, 0xe3, 0xe6, 0x01, 0xe4, 0xbb, + 0xb0, 0x9c, 0x5d, 0x23, 0xa0, 0x53, 0x1a, 0x60, 0xa5, 0x59, 0xb6, 0xb2, 0x8b, 0x1f, 0x0b, 0x38, + 0x79, 0x98, 0x9a, 0x30, 0xa6, 0x22, 0xed, 0xab, 0x5c, 0x4c, 0x9b, 0x2d, 0xda, 0xfd, 0x27, 0xd0, + 0xf1, 0x18, 0xb7, 0xb3, 0xf5, 0x4f, 0xe7, 0xea, 0xfa, 0xa7, 0xe5, 0x31, 0xbe, 0x33, 0x2b, 0x81, + 0x3e, 0x02, 0x60, 0x93, 0x81, 0xce, 0xa9, 0xba, 0xaa, 0xfc, 0xc8, 0xc4, 0x1b, 0x95, 0x88, 0xb1, + 0xc9, 0x40, 0xa5, 0x53, 0xef, 0x8b, 0x78, 0x83, 0xf7, 0xa5, 0x9d, 0x50, 0xc7, 0xc3, 0x72, 0xac, + 0x26, 0xa2, 0x0b, 0xc2, 0x2c, 0xea, 0x78, 0x69, 0x91, 0x42, 0x5e, 0x53, 0xa4, 0xbc, 0x0b, 0xf5, + 0x49, 0xe8, 0xff, 0x62, 0x42, 0x85, 0x9d, 0xae, 0xa0, 0xd8, 0x6b, 0x12, 0x70, 0xe4, 0x89, 0xaa, + 0xc8, 0x8d, 0x30, 0x86, 0x60, 0x61, 0x25, 0xd2, 0x43, 0xcd, 0xd6, 0x9e, 0x84, 0x5b, 0x9a, 0xe0, + 0xa7, 0xa5, 0x5a, 0xa5, 0x5b, 0x55, 0xf5, 0xc9, 0x7f, 0x17, 0x60, 0x75, 0x3e, 0xa0, 0xa1, 0x9c, + 0x3e, 0x82, 0xaa, 0xb2, 0x05, 0x15, 0xbb, 0xae, 0x32, 0x19, 0x4d, 0x86, 0xd9, 0x11, 0xda, 0x3c, + 0x67, 0xfa, 0x16, 0xc0, 0xf1, 0x29, 0x23, 0x6b, 0x20, 0x1c, 0x43, 0x20, 0x64, 0xb2, 0x52, 0xa6, + 0xa1, 0x77, 0xca, 0xd2, 0xcb, 0xb1, 0x94, 0xb9, 0x1c, 0xdf, 0x87, 0x26, 0x5e, 0x69, 0x22, 0x85, + 0xe6, 0x34, 0xc1, 0x3c, 0xb4, 0x6e, 0x35, 0x10, 0xf6, 0x04, 0x41, 0x0b, 0x0d, 0xad, 0xf2, 0x96, + 0x86, 0xf6, 0x02, 0x3a, 0x4c, 0xc5, 0x6d, 0x1d, 0x5f, 0xab, 0x78, 0xcc, 0x7b, 0xb3, 0x63, 0x5e, + 0x17, 0xe6, 0xad, 0x36, 0x9b, 0x1b, 0x63, 0xf7, 0x67, 0x12, 0x7b, 0xc2, 0x61, 0x39, 0xd3, 0xd5, + 0xa2, 0x55, 0x11, 0x19, 0xce, 0x84, 0x99, 0xbf, 0x2a, 0x88, 0xac, 0x34, 0xe7, 0x5c, 0x26, 0x94, + 0xc2, 0x28, 0x8a, 0x95, 0x7c, 0xd3, 0x32, 0xe1, 0x79, 0x14, 0xc5, 0x87, 0x4b, 0x16, 0xe2, 0xc8, + 0x87, 0x50, 0x0e, 0x22, 0xd7, 0x09, 0xe6, 0x53, 0x85, 0x63, 0x01, 0x3c, 0x5c, 0xb2, 0x24, 0x96, + 0xbc, 0x07, 0x05, 0xf6, 0x50, 0x5d, 0x9e, 0x90, 0x9e, 0xe0, 0xe1, 0xe1, 0x92, 0x55, 0x60, 0x0f, + 0xc9, 0x1d, 0x28, 0x9e, 0xb9, 0x4c, 0xdd, 0x8f, 0x0d, 0x8d, 0xfe, 0x74, 0xaf, 0x7f, 0xb8, 0x64, + 0x09, 0x0c, 0xf9, 0x04, 0x5a, 0x6e, 0x10, 0x4d, 0x3c, 0xdb, 0xbb, 0x08, 0x9d, 0xb1, 0xef, 0xaa, + 0x6b, 0x71, 0x75, 0x76, 0x0d, 0x47, 0x13, 0x6f, 0x5f, 0xe2, 0x0e, 0x97, 0xac, 0xa6, 0x9b, 0x19, + 0x8b, 0x63, 0x8c, 0xbc, 0xa1, 0xcc, 0x12, 0x33, 0xc7, 0x38, 0xdc, 0x7f, 0x22, 0xd6, 0x47, 0x1c, + 0x39, 0x04, 0xe2, 0x7c, 0x39, 0x49, 0xa8, 0x3d, 0x08, 0xa2, 0x81, 0xad, 0x0d, 0x4b, 0x4a, 0xbc, + 0xa7, 0x67, 0xec, 0x08, 0x8a, 0xdd, 0x20, 0x1a, 0x28, 0x39, 0x89, 0xab, 0xd1, 0x99, 0x83, 0xed, + 0xd6, 0xa1, 0xaa, 0x42, 0x99, 0x59, 0x81, 0x92, 0x90, 0x95, 0xf9, 0x2e, 0x94, 0x51, 0x1c, 0xc2, + 0x9e, 0x84, 0x51, 0xeb, 0x64, 0x0b, 0x0d, 0xfc, 0x8f, 0x4b, 0x50, 0xe8, 0x3f, 0x14, 0x09, 0x33, + 0x0d, 0xbd, 0x38, 0xf2, 0x55, 0xf2, 0x52, 0xb7, 0xd2, 0xb1, 0xa8, 0x04, 0x32, 0x8d, 0xc0, 0x7a, + 0xda, 0xf8, 0xbb, 0x01, 0x95, 0xc1, 0xc4, 0x3d, 0xa7, 0x5c, 0x65, 0x45, 0x6a, 0x24, 0xe0, 0x71, + 0x42, 0x87, 0xfe, 0x2b, 0x65, 0xb8, 0x6a, 0x24, 0x83, 0xbe, 0x8c, 0xb6, 0x6e, 0xe0, 0x30, 0x99, + 0x5d, 0xd7, 0x45, 0xd0, 0x47, 0xe0, 0x9e, 0x80, 0x89, 0x34, 0x88, 0x31, 0x69, 0xaf, 0x75, 0x4b, + 0xfc, 0x15, 0x10, 0xc7, 0x0d, 0x50, 0x18, 0x75, 0x4b, 0xfc, 0x15, 0x71, 0xdf, 0x71, 0x5d, 0xca, + 0x18, 0xde, 0x2c, 0x35, 0xd9, 0xc5, 0x93, 0x10, 0x71, 0xb9, 0x6c, 0xc1, 0x32, 0xa3, 0x6e, 0x42, + 0xb9, 0x9d, 0xa1, 0xaa, 0x23, 0x55, 0x47, 0x22, 0x76, 0x52, 0xda, 0x4d, 0xe8, 0x0e, 0xa3, 0xc4, + 0xa5, 0xb6, 0x10, 0x86, 0xcd, 0xf8, 0x45, 0x40, 0x55, 0x1c, 0x6f, 0x23, 0xfc, 0xc4, 0xe1, 0xa3, + 0xbe, 0x80, 0x92, 0xbb, 0xd0, 0x66, 0x8c, 0xda, 0xe7, 0x63, 0x5c, 0x4f, 0xc4, 0x18, 0x19, 0xda, + 0x1b, 0x8c, 0xd1, 0xa7, 0x63, 0xb1, 0xd8, 0x91, 0x27, 0x7c, 0x3c, 0x89, 0x02, 0x6a, 0x3b, 0x89, + 0xec, 0x20, 0xd6, 0xad, 0xaa, 0x18, 0xef, 0x24, 0xf2, 0x36, 0x7b, 0xc5, 0x69, 0x12, 0xca, 0x7a, + 0xaf, 0x85, 0x58, 0xd0, 0xa0, 0x23, 0x8f, 0x6c, 0xc3, 0x4a, 0x34, 0xf8, 0x39, 0x75, 0xb9, 0x2d, + 0xea, 0xb4, 0xb4, 0x0f, 0xd4, 0x46, 0x6e, 0x96, 0x25, 0xea, 0x38, 0x72, 0xcf, 0x75, 0x13, 0x48, + 0x88, 0x53, 0xbb, 0x78, 0x74, 0x4e, 0x65, 0x9c, 0x16, 0xe2, 0x54, 0x6e, 0x2c, 0x60, 0x42, 0xaf, + 0x71, 0x12, 0x4d, 0x7d, 0x8f, 0x26, 0xd8, 0x1f, 0xab, 0x5b, 0xe9, 0x58, 0x64, 0xa5, 0x71, 0x12, + 0x89, 0x52, 0x5c, 0x75, 0xc1, 0xf4, 0xd0, 0xfc, 0xa5, 0x01, 0xc5, 0x4f, 0xf7, 0xfa, 0xaf, 0xb3, + 0x0a, 0xa5, 0xfd, 0xc2, 0x15, 0xda, 0x2f, 0x5e, 0xaf, 0xfd, 0xd2, 0x02, 0xed, 0x7f, 0x08, 0xed, + 0x38, 0xa1, 0x1e, 0x1d, 0xfa, 0x21, 0xf5, 0x6c, 0xa1, 0x76, 0x69, 0x23, 0xad, 0x19, 0x74, 0xc7, + 0x0d, 0x44, 0x11, 0xe6, 0x0a, 0x40, 0xc8, 0x7d, 0x27, 0x60, 0xe8, 0x34, 0xca, 0x62, 0x3a, 0x19, + 0xb8, 0x70, 0x0b, 0x73, 0x0c, 0x5d, 0xf4, 0x9b, 0xbd, 0x09, 0xe3, 0xd1, 0x18, 0xb3, 0x1c, 0xb1, + 0x4b, 0x26, 0xcf, 0xd2, 0xe9, 0x67, 0xdd, 0x6a, 0xcd, 0xa0, 0x82, 0xec, 0x01, 0xac, 0xe5, 0xc9, + 0xec, 0x4c, 0x41, 0x5c, 0xb7, 0x56, 0x72, 0xd4, 0x7d, 0x44, 0x89, 0x30, 0xd6, 0x9d, 0xf7, 0xd3, + 0x5f, 0xbf, 0x18, 0xdf, 0x87, 0xa6, 0xe3, 0xba, 0xd1, 0x24, 0xe4, 0x36, 0x5e, 0x20, 0x52, 0x88, + 0x0d, 0x05, 0x7b, 0x2e, 0xee, 0x91, 0x5b, 0x00, 0x6c, 0xe4, 0x24, 0x54, 0x66, 0x67, 0x52, 0x78, + 0x75, 0x09, 0x11, 0x67, 0x9f, 0xb9, 0x18, 0xf3, 0xcf, 0xf2, 0x2e, 0xd6, 0xf7, 0xcf, 0x84, 0x02, + 0x32, 0xa2, 0x61, 0x6e, 0x14, 0x53, 0xed, 0x61, 0x33, 0x78, 0x5f, 0x80, 0xc9, 0x4f, 0x2e, 0x09, + 0x1b, 0x16, 0x84, 0xb5, 0x8c, 0x7a, 0xe6, 0xd4, 0x60, 0xfe, 0x91, 0x01, 0x95, 0x5d, 0x29, 0x94, + 0x37, 0x8b, 0x52, 0xc5, 0x2b, 0xa2, 0x54, 0xe9, 0x0a, 0x01, 0x97, 0xaf, 0x17, 0x70, 0xe5, 0xb2, + 0x80, 0x45, 0xd9, 0xd6, 0xcc, 0x06, 0x7d, 0x72, 0x2f, 0xdd, 0xc5, 0x50, 0x15, 0x93, 0x4e, 0x53, + 0x10, 0x9a, 0xee, 0x7a, 0x17, 0x5a, 0xda, 0xff, 0xa4, 0x6a, 0xa4, 0xd6, 0x9b, 0x1a, 0x88, 0xba, + 0xf9, 0x21, 0x94, 0x1d, 0xce, 0x13, 0x5d, 0xd9, 0xde, 0x59, 0x74, 0xcd, 0x6c, 0xef, 0x08, 0x8a, + 0x83, 0x90, 0x27, 0x17, 0x96, 0xa4, 0x5e, 0x7f, 0x0c, 0x30, 0x03, 0x8a, 0xb0, 0x39, 0xb3, 0x6c, + 0xf1, 0x97, 0xac, 0x42, 0x79, 0xea, 0x04, 0x13, 0xbd, 0xa7, 0x1c, 0xfc, 0x56, 0xe1, 0xb1, 0x61, + 0xde, 0x86, 0x92, 0xb8, 0x8e, 0xa4, 0x0c, 0xc7, 0x11, 0xd7, 0xf5, 0xb8, 0x1a, 0x99, 0xff, 0x60, + 0x40, 0x7b, 0xee, 0x55, 0xe9, 0xae, 0x7e, 0xf5, 0x31, 0xf2, 0x17, 0x6f, 0xee, 0xd1, 0xe7, 0xdb, + 0x15, 0x07, 0x6f, 0xf2, 0xd6, 0x32, 0xd7, 0xa2, 0x2f, 0xbf, 0x51, 0x8b, 0xde, 0xbc, 0x2f, 0x6a, + 0x76, 0xea, 0x84, 0xb3, 0xea, 0x26, 0x97, 0x34, 0x1a, 0xf9, 0xa4, 0xd1, 0x3c, 0x81, 0x4e, 0x4a, + 0xfe, 0x36, 0xc7, 0xee, 0x41, 0x95, 0x4d, 0xd0, 0x57, 0xf0, 0xd0, 0x35, 0x4b, 0x0f, 0xcd, 0xc7, + 0xd0, 0x56, 0x2f, 0x6f, 0x9a, 0x81, 0x7b, 0xd0, 0x61, 0xce, 0x94, 0xda, 0x3c, 0xb2, 0xb3, 0xf9, + 0x64, 0xcd, 0x6a, 0x09, 0xf0, 0x69, 0xa4, 0x62, 0x88, 0xf9, 0x97, 0x06, 0x74, 0xd2, 0xa9, 0x6f, + 0xa9, 0x83, 0xd9, 0x09, 0x0b, 0x73, 0x69, 0xf1, 0xf7, 0x80, 0xb8, 0x51, 0x10, 0x88, 0x4b, 0x07, + 0x9f, 0xae, 0x30, 0x3e, 0xa8, 0x24, 0xb4, 0xab, 0x30, 0x42, 0xec, 0x7b, 0x02, 0x2e, 0x2e, 0xd6, + 0x1c, 0x35, 0x76, 0x8d, 0x65, 0xe5, 0xd6, 0xc9, 0x10, 0xf7, 0xfd, 0x2f, 0xa9, 0xb9, 0x02, 0xcb, + 0x7b, 0x23, 0xea, 0x9e, 0xef, 0x78, 0x63, 0x3f, 0x54, 0x87, 0x35, 0xbf, 0x32, 0x80, 0x64, 0xa1, + 0x6f, 0x73, 0x8e, 0x37, 0x7d, 0x8e, 0xdc, 0x82, 0xe5, 0x91, 0xc3, 0xec, 0x98, 0x86, 0x9e, 0x1f, + 0x9e, 0xd9, 0x8e, 0xd8, 0x09, 0x4f, 0x54, 0xb3, 0x3a, 0x23, 0x87, 0x9d, 0x48, 0x38, 0x32, 0x60, + 0xfe, 0xb3, 0x01, 0xb7, 0x0e, 0xd4, 0x0d, 0xac, 0x04, 0x6d, 0x51, 0xa1, 0x86, 0x54, 0x3d, 0x0b, + 0x2a, 0x44, 0xe3, 0xad, 0x2a, 0xc4, 0x3b, 0xd0, 0x50, 0xb7, 0x7a, 0xc6, 0xdd, 0x41, 0x82, 0x9e, + 0xab, 0x84, 0x3e, 0x91, 0x7b, 0x4a, 0x0a, 0x19, 0xbd, 0x1a, 0x0a, 0x86, 0x24, 0x1f, 0x42, 0x1b, + 0x6b, 0x93, 0x90, 0xdb, 0x01, 0x0d, 0xcf, 0xf8, 0x48, 0x09, 0xbd, 0xa5, 0xa0, 0xc7, 0x08, 0x34, + 0x37, 0xe0, 0xf6, 0x55, 0x87, 0x91, 0x82, 0x36, 0xff, 0xcc, 0x80, 0xf5, 0x39, 0x92, 0xbe, 0x33, + 0xfd, 0x35, 0x1e, 0xf6, 0xf2, 0x49, 0x8a, 0x8b, 0x4e, 0x72, 0x0b, 0xde, 0x5d, 0xc8, 0xa6, 0x3a, + 0xc6, 0x1f, 0xaa, 0xf7, 0x07, 0xcf, 0xe1, 0x0e, 0xd9, 0xd2, 0xd1, 0xc2, 0xc8, 0xb7, 0x01, 0xf7, + 0xd5, 0x3b, 0x02, 0x56, 0xb8, 0x2a, 0x6a, 0x3c, 0x82, 0x06, 0x1a, 0xee, 0x59, 0x12, 0x4d, 0x62, + 0xdd, 0xf4, 0x5f, 0x9b, 0x9f, 0xf1, 0xa9, 0xc0, 0x5a, 0xf8, 0x96, 0x8b, 0x7f, 0x99, 0x2c, 0xdd, + 0x84, 0x86, 0xd2, 0x5e, 0x2a, 0x56, 0x75, 0xc2, 0x83, 0xee, 0x80, 0x50, 0x55, 0x14, 0x4c, 0x69, + 0xa6, 0x7e, 0x03, 0x0d, 0x92, 0xb5, 0xdd, 0xd8, 0x79, 0x25, 0x70, 0x52, 0x69, 0xe5, 0xb1, 0xf3, + 0x4a, 0x81, 0xfd, 0x50, 0x80, 0xcb, 0x0a, 0xec, 0x87, 0xa7, 0x82, 0x43, 0xfc, 0x90, 0x21, 0x0d, + 0x6c, 0x55, 0x15, 0xd8, 0x32, 0x6f, 0x9a, 0x3a, 0xb0, 0x35, 0xc6, 0xb3, 0x81, 0xf9, 0xaf, 0x06, + 0xb4, 0x72, 0xfc, 0x2f, 0x4a, 0xf6, 0xc9, 0x8f, 0xa1, 0x33, 0x7b, 0x7e, 0x91, 0x5d, 0x81, 0xc2, + 0x35, 0x52, 0x6b, 0xa5, 0x6f, 0x31, 0x58, 0xf2, 0xce, 0x58, 0x2e, 0x66, 0x59, 0xbe, 0xe2, 0x80, + 0xf7, 0xa0, 0x23, 0xa8, 0xb3, 0xc2, 0x91, 0x27, 0x6d, 0x49, 0xd7, 0xd7, 0xf2, 0xb9, 0x01, 0x15, + 0x65, 0x0a, 0xf2, 0x0d, 0x4c, 0x8d, 0xcc, 0x7f, 0xac, 0x40, 0x33, 0xcb, 0x4d, 0xe6, 0x41, 0xc2, + 0xc8, 0x3d, 0x48, 0xe8, 0x83, 0x16, 0x32, 0x07, 0xdd, 0x82, 0xe5, 0x70, 0x32, 0x1e, 0xd0, 0xc4, + 0x8e, 0x86, 0x36, 0x0d, 0x79, 0xe2, 0x53, 0xc9, 0x75, 0xd1, 0xea, 0x48, 0xc4, 0x8b, 0xe1, 0x81, + 0x04, 0x67, 0x8e, 0x55, 0x5a, 0x7c, 0xac, 0x72, 0xf6, 0x58, 0x73, 0xfa, 0xae, 0x5c, 0xd2, 0xf7, + 0xbb, 0x50, 0x57, 0x1d, 0x54, 0xdf, 0x43, 0xf5, 0x15, 0xad, 0x9a, 0x04, 0xcc, 0x77, 0xcb, 0x6a, + 0x57, 0x5f, 0x88, 0xf5, 0x05, 0xad, 0xe7, 0xd9, 0x83, 0xdd, 0x07, 0x50, 0xc2, 0xa2, 0xbe, 0x81, + 0xc6, 0xd1, 0xcd, 0xde, 0x8f, 0x58, 0xcd, 0x23, 0x56, 0x2c, 0xe7, 0x33, 0x5b, 0x18, 0x09, 0x96, + 0x22, 0x35, 0xab, 0xe2, 0x33, 0xfc, 0x98, 0xe2, 0x1d, 0xa8, 0xc9, 0x16, 0x82, 0x2a, 0x43, 0x8a, + 0x56, 0x15, 0xc7, 0x47, 0x5e, 0x46, 0x19, 0xed, 0xac, 0x32, 0xc8, 0x6f, 0xc2, 0xba, 0x90, 0xd1, + 0x80, 0x9e, 0xa1, 0xa4, 0x6c, 0x3f, 0xb4, 0x3d, 0x3a, 0x74, 0x26, 0x01, 0xb7, 0xdd, 0x21, 0x16, + 0x1e, 0x25, 0x6b, 0x6d, 0xec, 0x87, 0xbb, 0x82, 0xe0, 0x94, 0x1d, 0x85, 0xfb, 0x12, 0xbb, 0x37, + 0xc4, 0xf8, 0x86, 0xcf, 0xfd, 0xd1, 0x70, 0xc8, 0x28, 0xc7, 0x2a, 0xa4, 0x64, 0x35, 0x10, 0xf6, + 0x02, 0x41, 0x33, 0x12, 0xb5, 0xf7, 0x72, 0x86, 0x44, 0x46, 0x84, 0x85, 0x3d, 0x0d, 0xf2, 0x96, + 0x3d, 0x8d, 0xec, 0xa3, 0xd0, 0xca, 0xdc, 0xa3, 0xd0, 0x26, 0x74, 0x95, 0xd6, 0x66, 0xfa, 0x59, + 0x45, 0x25, 0xb4, 0x25, 0xbc, 0xaf, 0xb5, 0xf4, 0x01, 0xb4, 0x75, 0x87, 0x5c, 0x29, 0x6b, 0x0d, + 0xe9, 0x54, 0xdf, 0xfc, 0x40, 0xaa, 0xec, 0xd1, 0xac, 0x8f, 0x1e, 0x47, 0xee, 0x48, 0x3d, 0xc5, + 0xaf, 0xe4, 0xef, 0xac, 0x03, 0x81, 0x4a, 0x5b, 0xe9, 0x62, 0x40, 0x2c, 0x58, 0xc5, 0x08, 0x95, + 0x49, 0x99, 0xd1, 0x4d, 0x6f, 0x62, 0x1c, 0xde, 0xc8, 0xb7, 0x70, 0x85, 0xc2, 0x67, 0xbd, 0x60, + 0x74, 0x59, 0x32, 0xbc, 0x04, 0x33, 0xbf, 0x36, 0x60, 0x39, 0xdb, 0xad, 0x39, 0xd0, 0x79, 0xc1, + 0xc8, 0x89, 0x63, 0x1a, 0xda, 0x8e, 0x7e, 0xaf, 0xa8, 0x49, 0xc0, 0x0e, 0x36, 0x7d, 0xf1, 0xd6, + 0xb5, 0xdd, 0xc8, 0xd3, 0x71, 0xbc, 0x8e, 0x90, 0xbd, 0xc8, 0x13, 0x17, 0xb6, 0xfc, 0xfa, 0xca, + 0x1e, 0x53, 0xc6, 0x44, 0xca, 0x22, 0x2f, 0xad, 0x26, 0x02, 0x9f, 0x49, 0x58, 0x2e, 0x68, 0xea, + 0xd7, 0x40, 0x19, 0x34, 0xcd, 0x47, 0x50, 0xea, 0xc7, 0x0e, 0xe6, 0xe6, 0xca, 0x2a, 0x24, 0x03, + 0x6a, 0x94, 0x31, 0xc3, 0x42, 0x2e, 0x26, 0x1c, 0x40, 0x43, 0xcc, 0x63, 0x2f, 0x86, 0xfa, 0x29, + 0xff, 0x52, 0x88, 0x33, 0xa1, 0xcc, 0x04, 0xc9, 0xfc, 0xe3, 0xb2, 0x98, 0x67, 0x49, 0x94, 0xf9, + 0x75, 0x11, 0x7a, 0xc7, 0xd1, 0x19, 0xe6, 0x2a, 0x93, 0x81, 0x30, 0x13, 0xc7, 0x55, 0xdd, 0x74, + 0x27, 0x7d, 0x0d, 0x37, 0xf2, 0xaf, 0xe1, 0x33, 0x9f, 0x96, 0x2c, 0xcd, 0x7c, 0x7a, 0xee, 0x61, + 0x88, 0x6c, 0x40, 0xd3, 0x0f, 0xe3, 0x09, 0xb7, 0x73, 0x51, 0x11, 0x10, 0xf6, 0x0c, 0x63, 0xc8, + 0x8c, 0x22, 0x7b, 0x03, 0x28, 0x0a, 0x0c, 0x3e, 0xf7, 0xa0, 0xa3, 0xd8, 0xb2, 0x87, 0x49, 0x34, + 0x9e, 0x45, 0x9a, 0x96, 0x02, 0x3f, 0x49, 0xa2, 0xf1, 0x29, 0x7e, 0x27, 0xa6, 0xe9, 0x26, 0x21, + 0xf7, 0x03, 0x5b, 0xbd, 0x36, 0x96, 0xac, 0xb6, 0x82, 0x7f, 0x26, 0xc0, 0xa7, 0x4c, 0x44, 0x03, + 0xb1, 0xdb, 0x2c, 0xee, 0x88, 0xa0, 0xa7, 0xa2, 0x8e, 0x60, 0x34, 0x13, 0x75, 0xc6, 0xce, 0x2b, + 0x81, 0xd8, 0xc0, 0xef, 0xc6, 0xe0, 0x8a, 0x18, 0x53, 0xe0, 0x17, 0xb9, 0x40, 0xd2, 0xc8, 0x07, + 0x92, 0xfb, 0x50, 0x65, 0xd1, 0x24, 0x71, 0x29, 0xeb, 0x35, 0xf3, 0x4f, 0xeb, 0x19, 0x05, 0x5a, + 0x9a, 0xc6, 0xfc, 0x1b, 0x03, 0x56, 0x17, 0x69, 0x84, 0x7c, 0x0c, 0x25, 0x8c, 0x60, 0x86, 0xb2, + 0xff, 0xb4, 0xbd, 0xb7, 0x58, 0x7b, 0x16, 0x52, 0x93, 0xfb, 0xd0, 0x60, 0x8c, 0xdb, 0xd1, 0x84, + 0xc7, 0x13, 0xbe, 0xf8, 0x3b, 0x03, 0x60, 0x8c, 0xbf, 0x90, 0x78, 0xb2, 0x0b, 0xcb, 0x4a, 0xbd, + 0x78, 0xf7, 0x8e, 0xfc, 0x90, 0xeb, 0xda, 0x2b, 0xcd, 0x7c, 0xa4, 0xc7, 0x8a, 0x3d, 0x0e, 0xfd, + 0x90, 0x5b, 0x9d, 0x24, 0x37, 0x66, 0xe6, 0xef, 0x43, 0x3b, 0x4f, 0xf2, 0x2d, 0x9f, 0x19, 0xe7, + 0x03, 0x87, 0xec, 0x59, 0xbe, 0x36, 0x70, 0x98, 0xbf, 0x07, 0x6b, 0x8b, 0x84, 0xc2, 0xc8, 0x3e, + 0xb4, 0x59, 0x0e, 0xa2, 0x12, 0xa5, 0xf7, 0xae, 0x93, 0xa5, 0x35, 0x37, 0xc7, 0xfc, 0xba, 0x00, + 0xcb, 0x8a, 0x70, 0x6f, 0xa6, 0x1d, 0x2c, 0x1f, 0xf4, 0x28, 0xb5, 0x54, 0x43, 0x97, 0x0f, 0x1a, + 0xa3, 0x8c, 0x75, 0x1b, 0x56, 0x32, 0xd4, 0xa9, 0xbd, 0x4a, 0x7f, 0x5a, 0x9e, 0xa1, 0xb4, 0xc9, + 0xea, 0xf6, 0x77, 0x31, 0xd3, 0xfe, 0x16, 0x31, 0x3c, 0x1a, 0x8f, 0x69, 0xc8, 0x75, 0xe7, 0x23, + 0x1d, 0x93, 0xf7, 0xa0, 0xee, 0x24, 0xdc, 0x1f, 0x3a, 0x2e, 0xd7, 0xbd, 0xc5, 0x19, 0x40, 0xa4, + 0x9e, 0xe9, 0xc0, 0x1e, 0x39, 0x4c, 0xe7, 0x1b, 0xad, 0x14, 0x7a, 0xe8, 0xb0, 0x11, 0xf9, 0x0e, + 0x74, 0xce, 0x68, 0x48, 0x13, 0x87, 0x53, 0x4f, 0x7d, 0xa6, 0x22, 0x3b, 0x8f, 0xed, 0x14, 0x8c, + 0x19, 0x91, 0xf9, 0xf7, 0x86, 0x4c, 0x42, 0x0f, 0x3c, 0x9f, 0x2f, 0x8c, 0x44, 0x0f, 0x60, 0xcd, + 0xa3, 0x01, 0xe5, 0xd4, 0x4e, 0xbf, 0xf3, 0x98, 0x7d, 0xf6, 0x52, 0xb7, 0x56, 0x24, 0xf2, 0x44, + 0xe1, 0xe4, 0x27, 0x2f, 0x4f, 0x61, 0x55, 0xcd, 0x09, 0xa2, 0xb3, 0xcc, 0x14, 0x69, 0x8c, 0xef, + 0xa4, 0x59, 0x1a, 0xd2, 0x64, 0x3d, 0x89, 0xc8, 0x69, 0xc7, 0x72, 0x96, 0x5c, 0xec, 0x2e, 0xb4, + 0x3c, 0xca, 0x78, 0x32, 0x71, 0xb9, 0xcd, 0x68, 0x30, 0x54, 0x1f, 0x5b, 0x36, 0x35, 0xb0, 0x4f, + 0x83, 0xa1, 0xf9, 0x12, 0x96, 0x2f, 0xad, 0xf6, 0x6d, 0x03, 0xab, 0x48, 0xbb, 0x5e, 0x8e, 0x22, + 0xf9, 0x38, 0x41, 0xf3, 0x19, 0x7e, 0x07, 0x11, 0x62, 0x75, 0x95, 0xe3, 0xff, 0x9d, 0x01, 0xf5, + 0x67, 0xfe, 0x59, 0x82, 0x5f, 0xb6, 0x91, 0xfb, 0x50, 0xa7, 0x9e, 0xcf, 0x6d, 0xe5, 0xec, 0xc5, + 0xf9, 0x0f, 0xf9, 0x84, 0x94, 0xad, 0x9a, 0x20, 0xc1, 0x20, 0xfd, 0x3e, 0x34, 0x79, 0x32, 0x09, + 0x5d, 0xd4, 0x12, 0x8f, 0x94, 0x0d, 0x35, 0x52, 0xd8, 0x69, 0x44, 0x3e, 0x81, 0x46, 0xd6, 0xe8, + 0xe7, 0x24, 0x78, 0xc9, 0x96, 0xad, 0x2c, 0xb5, 0xb0, 0x82, 0x54, 0x74, 0x69, 0x2f, 0x5b, 0x68, + 0xad, 0xad, 0xc1, 0x27, 0x08, 0xdd, 0x7a, 0x0e, 0x1b, 0xaf, 0xfb, 0xf4, 0x97, 0x74, 0xa0, 0xf1, + 0x19, 0xbe, 0x7b, 0xe0, 0x17, 0xae, 0xdd, 0x25, 0xd2, 0x82, 0xfa, 0xcf, 0x1c, 0x9f, 0xef, 0xc4, + 0x71, 0x70, 0xd1, 0x35, 0x08, 0x40, 0xe5, 0x89, 0x1f, 0xfa, 0x6c, 0xd4, 0x2d, 0x6c, 0xfd, 0x14, + 0x6e, 0x5f, 0xff, 0x69, 0x2e, 0x59, 0x86, 0x56, 0x3a, 0x79, 0x3f, 0x0a, 0xc5, 0x7a, 0x6b, 0xb0, + 0x9c, 0xd9, 0x40, 0x7e, 0xc4, 0xd8, 0x35, 0xb6, 0x7e, 0x1b, 0x3a, 0x73, 0x39, 0x11, 0x69, 0x40, + 0xf5, 0xb3, 0xe7, 0x4f, 0x9f, 0xbf, 0xf8, 0xd9, 0xf3, 0xee, 0x12, 0xa9, 0x42, 0xf1, 0xf8, 0x8b, + 0x8f, 0x25, 0x03, 0xfd, 0xe7, 0x3b, 0x27, 0x27, 0xbf, 0xdb, 0x2d, 0x90, 0x1a, 0x94, 0xbe, 0xe8, + 0x9f, 0xee, 0x77, 0x8b, 0x5b, 0x1b, 0xe9, 0x17, 0xb8, 0xe2, 0xca, 0xaf, 0x41, 0xa9, 0xbf, 0xb7, + 0x23, 0xa6, 0xd5, 0xa0, 0xf4, 0xe4, 0xe8, 0xf8, 0xa0, 0x6b, 0x6c, 0xdd, 0x82, 0x46, 0xa6, 0x20, + 0x21, 0x15, 0x28, 0x7c, 0xfe, 0x83, 0xee, 0x12, 0xfe, 0x3e, 0xe8, 0x1a, 0x5b, 0x77, 0xa0, 0xa6, + 0xaf, 0x0b, 0xb1, 0x85, 0x34, 0x33, 0xb9, 0xef, 0xc9, 0x84, 0x77, 0x8d, 0x07, 0xff, 0x53, 0x80, + 0x8a, 0xdc, 0x82, 0x7c, 0x02, 0xea, 0x33, 0x6f, 0xb2, 0x36, 0xf7, 0x0d, 0x96, 0x14, 0xe4, 0xfa, + 0x8d, 0x79, 0xb0, 0xaa, 0x05, 0x97, 0x3e, 0x32, 0xc8, 0x09, 0xac, 0x60, 0x57, 0x21, 0x5b, 0xdb, + 0xbf, 0x88, 0x49, 0xaa, 0xec, 0x4b, 0x8d, 0x88, 0xf5, 0xf5, 0x45, 0xa8, 0xcc, 0x8a, 0x23, 0x58, + 0x5b, 0xa8, 0x06, 0xf2, 0xc1, 0x9b, 0x7c, 0xf0, 0xbd, 0xfe, 0xe1, 0x6b, 0xa8, 0xe4, 0x4e, 0x9b, + 0xc6, 0x47, 0x06, 0xf9, 0x31, 0x54, 0x63, 0x49, 0x44, 0x6e, 0xcc, 0xcd, 0xd2, 0xab, 0xdd, 0xbc, + 0x04, 0xd7, 0x9c, 0x8a, 0xd9, 0xae, 0xec, 0x50, 0x91, 0xcc, 0x37, 0x21, 0xd9, 0x0e, 0xd7, 0x6c, + 0xf6, 0x5c, 0x2b, 0xcb, 0x5c, 0x7a, 0xf0, 0xb7, 0x06, 0x74, 0xe6, 0xea, 0x6c, 0xf2, 0x05, 0x54, + 0x55, 0xeb, 0x81, 0xa4, 0xa7, 0xb8, 0xb6, 0x45, 0xb2, 0x7e, 0xef, 0x75, 0x64, 0x29, 0xb7, 0xbf, + 0x03, 0x25, 0xe6, 0x4c, 0x29, 0x31, 0xaf, 0x98, 0x91, 0xe9, 0x45, 0xac, 0xdf, 0xbd, 0x96, 0x46, + 0x2f, 0xb9, 0x7b, 0xef, 0xdf, 0xff, 0xbc, 0x66, 0xfc, 0xf2, 0x9b, 0xdb, 0xc6, 0xaf, 0xbe, 0xb9, + 0x6d, 0xfc, 0xc7, 0x37, 0xb7, 0x8d, 0x3f, 0xfd, 0xcf, 0xdb, 0x4b, 0xd0, 0x8d, 0x92, 0xb3, 0x6d, + 0xee, 0x9f, 0x4f, 0xb7, 0xcf, 0xa7, 0xf8, 0x55, 0xff, 0xa0, 0x82, 0x3f, 0x0f, 0xff, 0x37, 0x00, + 0x00, 0xff, 0xff, 0x1a, 0x7d, 0x8f, 0x0d, 0x59, 0x30, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -9260,6 +9346,20 @@ func (m *LogFileSubcompaction) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if len(m.RegionMetaHints) > 0 { + for iNdEx := len(m.RegionMetaHints) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.RegionMetaHints[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintBrpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + } if len(m.SstOutputs) > 0 { for iNdEx := len(m.SstOutputs) - 1; iNdEx >= 0; iNdEx-- { { @@ -9289,6 +9389,59 @@ func (m *LogFileSubcompaction) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *RegionMetaHint) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RegionMetaHint) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RegionMetaHint) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if m.RegionEpoch != nil { + { + size, err := m.RegionEpoch.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintBrpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + if len(m.EndKey) > 0 { + i -= len(m.EndKey) + copy(dAtA[i:], m.EndKey) + i = encodeVarintBrpb(dAtA, i, uint64(len(m.EndKey))) + i-- + dAtA[i] = 0x12 + } + if len(m.StartKey) > 0 { + i -= len(m.StartKey) + copy(dAtA[i:], m.StartKey) + i = encodeVarintBrpb(dAtA, i, uint64(len(m.StartKey))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *LogFileSubcompactions) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -11286,6 +11439,36 @@ func (m *LogFileSubcompaction) Size() (n int) { n += 1 + l + sovBrpb(uint64(l)) } } + if len(m.RegionMetaHints) > 0 { + for _, e := range m.RegionMetaHints { + l = e.Size() + n += 1 + l + sovBrpb(uint64(l)) + } + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *RegionMetaHint) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.StartKey) + if l > 0 { + n += 1 + l + sovBrpb(uint64(l)) + } + l = len(m.EndKey) + if l > 0 { + n += 1 + l + sovBrpb(uint64(l)) + } + if m.RegionEpoch != nil { + l = m.RegionEpoch.Size() + n += 1 + l + sovBrpb(uint64(l)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -21220,6 +21403,195 @@ func (m *LogFileSubcompaction) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RegionMetaHints", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthBrpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthBrpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.RegionMetaHints = append(m.RegionMetaHints, &RegionMetaHint{}) + if err := m.RegionMetaHints[len(m.RegionMetaHints)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipBrpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthBrpb + } + 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 *RegionMetaHint) 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 ErrIntOverflowBrpb + } + 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: RegionMetaHint: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RegionMetaHint: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field StartKey", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthBrpb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthBrpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.StartKey = append(m.StartKey[:0], dAtA[iNdEx:postIndex]...) + if m.StartKey == nil { + m.StartKey = []byte{} + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field EndKey", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthBrpb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthBrpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.EndKey = append(m.EndKey[:0], dAtA[iNdEx:postIndex]...) + if m.EndKey == nil { + m.EndKey = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RegionEpoch", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthBrpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthBrpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.RegionEpoch == nil { + m.RegionEpoch = &metapb.RegionEpoch{} + } + if err := m.RegionEpoch.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipBrpb(dAtA[iNdEx:]) diff --git a/proto/brpb.proto b/proto/brpb.proto index f328f779e..fc3e04ce4 100644 --- a/proto/brpb.proto +++ b/proto/brpb.proto @@ -731,14 +731,19 @@ message DataFileInfo { // The original region range the log file belongs to. // In older versions, this might be empty. + // This may not be accurative: file may contain keys less than this. bytes region_start_key = 20; // The original region range the log file belongs to. // In older versions, this might be empty. + // This may not be accurative: file may contain keys greater than this. bytes region_end_key = 21; // The region epoch that the log file belongs to. // In older versions, this might be empty. - // If a region get split or merged during observing, - // the file may contain multi epoches. + // If a region get split or merged during observing, the file may contain multi epoches. + // This may not be complete: file may contain records from other versions. + // + // If there is exactly one epoch, + // `region_start_key` and `region_end_key` must match this epoch. repeated metapb.RegionEpoch region_epoch = 22; // Encryption information of this data file, not set if plaintext. @@ -800,6 +805,21 @@ message LogFileSubcompaction { LogFileSubcompactionMeta meta = 1; // The generated SSTs. repeated File sst_outputs = 2; + // The hint for the history of the region that contains the keys being compacted. + // This may be helpful for splitting, but it does not guarantee completeness and accuracy. + repeated RegionMetaHint region_meta_hints = 3; +} + +message RegionMetaHint { + // You may get region id from `LogFileSubcompactionMeta`. + + // The left boundary of the region of this epoch. + // It is an byte-comparable encoded key without TS. + bytes start_key = 1; + // The right boundary of the region of the epoch. + bytes end_key = 2; + // The region epoch. + metapb.RegionEpoch region_epoch = 3; } // Batched version of `LogFileSubcompaction`. diff --git a/scripts/proto.lock b/scripts/proto.lock index 3b3ab532f..4a1fcf7a7 100644 --- a/scripts/proto.lock +++ b/scripts/proto.lock @@ -1809,6 +1809,32 @@ "name": "sst_outputs", "type": "File", "is_repeated": true + }, + { + "id": 3, + "name": "region_meta_hints", + "type": "RegionMetaHint", + "is_repeated": true + } + ] + }, + { + "name": "RegionMetaHint", + "fields": [ + { + "id": 1, + "name": "start_key", + "type": "bytes" + }, + { + "id": 2, + "name": "end_key", + "type": "bytes" + }, + { + "id": 3, + "name": "region_epoch", + "type": "metapb.RegionEpoch" } ] },