diff --git a/pkg/brpb/brpb.pb.go b/pkg/brpb/brpb.pb.go index 6f1ad38cd..306f9df39 100644 --- a/pkg/brpb/brpb.pb.go +++ b/pkg/brpb/brpb.pb.go @@ -218,16 +218,20 @@ const ( MigrationVersion_M0 MigrationVersion = 0 // Added `creator` and `version`. MigrationVersion_M1 MigrationVersion = 1 + // Added `ingested_sst_paths`. + MigrationVersion_M2 MigrationVersion = 2 ) var MigrationVersion_name = map[int32]string{ 0: "M0", 1: "M1", + 2: "M2", } var MigrationVersion_value = map[string]int32{ "M0": 0, "M1": 1, + "M2": 2, } func (x MigrationVersion) String() string { @@ -4884,6 +4888,171 @@ func (m *MetaEdit) GetDestructSelf() bool { return false } +// RewrittenTableID records a sort of modification over the SSTs during restoring. +// +// When "backing up" this "restored" SST, we want to backup the original SST before any rewrite. +// But in some cases, SSTs are not restored "as is", TiKV may rewrite or truncate its +// content by the client's request. +type RewrittenTableID struct { + // The table ID in the backup data. + AncestorUpstream int64 `protobuf:"varint,1,opt,name=ancestor_upstream,json=ancestorUpstream,proto3" json:"ancestor_upstream,omitempty"` + // The rewritten table ID during restoring. + Upstream int64 `protobuf:"varint,2,opt,name=upstream,proto3" json:"upstream,omitempty"` +} + +func (m *RewrittenTableID) Reset() { *m = RewrittenTableID{} } +func (m *RewrittenTableID) String() string { return proto.CompactTextString(m) } +func (*RewrittenTableID) ProtoMessage() {} +func (*RewrittenTableID) Descriptor() ([]byte, []int) { + return fileDescriptor_483d1f48d58a4885, []int{57} +} +func (m *RewrittenTableID) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RewrittenTableID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RewrittenTableID.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 *RewrittenTableID) XXX_Merge(src proto.Message) { + xxx_messageInfo_RewrittenTableID.Merge(m, src) +} +func (m *RewrittenTableID) XXX_Size() int { + return m.Size() +} +func (m *RewrittenTableID) XXX_DiscardUnknown() { + xxx_messageInfo_RewrittenTableID.DiscardUnknown(m) +} + +var xxx_messageInfo_RewrittenTableID proto.InternalMessageInfo + +func (m *RewrittenTableID) GetAncestorUpstream() int64 { + if m != nil { + return m.AncestorUpstream + } + return 0 +} + +func (m *RewrittenTableID) GetUpstream() int64 { + if m != nil { + return m.Upstream + } + return 0 +} + +// IngestedSSTs is created by a client that wants to put data to the cluster by `Ingest` APIs, +// these write cannot be directly recorded by log backup. The client should put a migration +// that contains the SSTs it uploaded. +type IngestedSSTs struct { + // The table IDs rewritten during restoring. + RewrittenTables []*RewrittenTableID `protobuf:"bytes,1,rep,name=rewritten_tables,json=rewrittenTables,proto3" json:"rewritten_tables,omitempty"` + // The SST files restored. + Files []*File `protobuf:"bytes,2,rep,name=files,proto3" json:"files,omitempty"` + // Treating the whole batch of SSTs as an huge atomic + // write as this timestamp. + // That is, when user wants to PiTR to sometime after this, + // everything restored will present after the PiTR. + // Otherwise nothing will present. + AsIfTs uint64 `protobuf:"varint,3,opt,name=as_if_ts,json=asIfTs,proto3" json:"as_if_ts,omitempty"` + // The hint of the common prefix of the files. + // Used for speed up garbage collecting. + FilesPrefixHint string `protobuf:"bytes,4,opt,name=files_prefix_hint,json=filesPrefixHint,proto3" json:"files_prefix_hint,omitempty"` + // Whether this batch have finished. + // If not, `as_if_ts` should be ignored and this should only + // be restored when there is a finished backup with the same + // `backup_uuid`. + Finished bool `protobuf:"varint,5,opt,name=finished,proto3" json:"finished,omitempty"` + // When checkpoint enabled, one restoration may be separated to many + // of `IngestedSST`s. + // `IngestedSST`s sharing the same UUID should be treated as one. + // That is: + // - The `as_if_ts` should be the largest one among all finished ingested SST batches. + // - When restoring, all batches sharing the same uuid should be restored or not. + BackupUuid []byte `protobuf:"bytes,6,opt,name=backup_uuid,json=backupUuid,proto3" json:"backup_uuid,omitempty"` +} + +func (m *IngestedSSTs) Reset() { *m = IngestedSSTs{} } +func (m *IngestedSSTs) String() string { return proto.CompactTextString(m) } +func (*IngestedSSTs) ProtoMessage() {} +func (*IngestedSSTs) Descriptor() ([]byte, []int) { + return fileDescriptor_483d1f48d58a4885, []int{58} +} +func (m *IngestedSSTs) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *IngestedSSTs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_IngestedSSTs.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 *IngestedSSTs) XXX_Merge(src proto.Message) { + xxx_messageInfo_IngestedSSTs.Merge(m, src) +} +func (m *IngestedSSTs) XXX_Size() int { + return m.Size() +} +func (m *IngestedSSTs) XXX_DiscardUnknown() { + xxx_messageInfo_IngestedSSTs.DiscardUnknown(m) +} + +var xxx_messageInfo_IngestedSSTs proto.InternalMessageInfo + +func (m *IngestedSSTs) GetRewrittenTables() []*RewrittenTableID { + if m != nil { + return m.RewrittenTables + } + return nil +} + +func (m *IngestedSSTs) GetFiles() []*File { + if m != nil { + return m.Files + } + return nil +} + +func (m *IngestedSSTs) GetAsIfTs() uint64 { + if m != nil { + return m.AsIfTs + } + return 0 +} + +func (m *IngestedSSTs) GetFilesPrefixHint() string { + if m != nil { + return m.FilesPrefixHint + } + return "" +} + +func (m *IngestedSSTs) GetFinished() bool { + if m != nil { + return m.Finished + } + return false +} + +func (m *IngestedSSTs) GetBackupUuid() []byte { + if m != nil { + return m.BackupUuid + } + return nil +} + // An extended version of `SpansOfFile`, added more metadata for the // execution of delayed deletion. type DeleteSpansOfFile struct { @@ -4898,7 +5067,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{57} + return fileDescriptor_483d1f48d58a4885, []int{59} } func (m *DeleteSpansOfFile) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4956,13 +5125,16 @@ type Migration struct { Compactions []*LogFileCompaction `protobuf:"bytes,3,rep,name=compactions,proto3" json:"compactions,omitempty"` // Delete all files matches this prefix. DestructPrefix []string `protobuf:"bytes,4,rep,name=destruct_prefix,json=destructPrefix,proto3" json:"destruct_prefix,omitempty"` + // The ingested SSTs. + // It is mutable during restoring, hence a reference. + IngestedSstPaths []string `protobuf:"bytes,7,rep,name=ingested_sst_paths,json=ingestedSstPaths,proto3" json:"ingested_sst_paths,omitempty"` } 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{58} + return fileDescriptor_483d1f48d58a4885, []int{60} } func (m *Migration) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5033,6 +5205,13 @@ func (m *Migration) GetDestructPrefix() []string { return nil } +func (m *Migration) GetIngestedSstPaths() []string { + if m != nil { + return m.IngestedSstPaths + } + return nil +} + func init() { proto.RegisterEnum("backup.PrepareSnapshotBackupRequestType", PrepareSnapshotBackupRequestType_name, PrepareSnapshotBackupRequestType_value) proto.RegisterEnum("backup.PrepareSnapshotBackupEventType", PrepareSnapshotBackupEventType_name, PrepareSnapshotBackupEventType_value) @@ -5099,6 +5278,8 @@ func init() { proto.RegisterType((*LogFileSubcompactions)(nil), "backup.LogFileSubcompactions") proto.RegisterType((*LogFileCompaction)(nil), "backup.LogFileCompaction") proto.RegisterType((*MetaEdit)(nil), "backup.MetaEdit") + proto.RegisterType((*RewrittenTableID)(nil), "backup.RewrittenTableID") + proto.RegisterType((*IngestedSSTs)(nil), "backup.IngestedSSTs") proto.RegisterType((*DeleteSpansOfFile)(nil), "backup.DeleteSpansOfFile") proto.RegisterType((*Migration)(nil), "backup.Migration") } @@ -5106,300 +5287,311 @@ func init() { func init() { proto.RegisterFile("brpb.proto", fileDescriptor_483d1f48d58a4885) } var fileDescriptor_483d1f48d58a4885 = []byte{ - // 4683 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x3b, 0x4d, 0x6f, 0x1c, 0xc9, - 0x75, 0xec, 0xf9, 0x9e, 0x37, 0x9f, 0x2c, 0x92, 0xd2, 0x2c, 0x77, 0x45, 0x71, 0x5b, 0xbb, 0x32, - 0x43, 0x5b, 0xf4, 0x5a, 0x5a, 0xcb, 0x4a, 0xd6, 0x81, 0xc1, 0x2f, 0x2d, 0xb9, 0x12, 0x25, 0xa6, - 0x87, 0xbb, 0x46, 0x16, 0x08, 0x1a, 0x3d, 0xdd, 0x35, 0x9c, 0x36, 0x7b, 0xba, 0xdb, 0x5d, 0x35, - 0x94, 0xb8, 0x87, 0x1c, 0x72, 0xc8, 0xcd, 0xb0, 0x1d, 0xe4, 0x90, 0x3f, 0x10, 0x20, 0x87, 0x04, - 0xc8, 0x35, 0xa7, 0xe4, 0x90, 0x20, 0x06, 0x12, 0x20, 0x0b, 0x24, 0x07, 0xdf, 0x12, 0xec, 0x22, - 0xf9, 0x17, 0x06, 0x82, 0x7a, 0x55, 0xd5, 0xd3, 0x3d, 0x1c, 0x52, 0xd2, 0x26, 0xf0, 0x89, 0x53, - 0xef, 0xbd, 0xaa, 0x7e, 0xf5, 0xbe, 0x5f, 0x55, 0x11, 0x60, 0x90, 0xc4, 0x83, 0xad, 0x38, 0x89, - 0x78, 0x44, 0x2a, 0x03, 0xc7, 0x3d, 0x9b, 0xc4, 0xab, 0xad, 0xb3, 0xf3, 0x24, 0x76, 0x35, 0x78, - 0xb5, 0x45, 0x93, 0x24, 0x4a, 0xa9, 0x56, 0x9b, 0x63, 0xca, 0x9d, 0x74, 0x44, 0x68, 0xe8, 0x26, - 0x17, 0x31, 0xf7, 0xa3, 0x30, 0x85, 0x2d, 0x9f, 0x46, 0xa7, 0x11, 0xfe, 0xfc, 0xae, 0xf8, 0xa5, - 0xa0, 0x9d, 0x64, 0xc2, 0x38, 0xfe, 0x94, 0x00, 0xf3, 0xaf, 0x0d, 0x78, 0xe7, 0x38, 0xa1, 0xb1, - 0x93, 0xd0, 0x7e, 0xe8, 0xc4, 0x6c, 0x14, 0xf1, 0x1d, 0x64, 0xc0, 0xa2, 0x3f, 0x9d, 0x50, 0xc6, - 0xc9, 0x23, 0x28, 0xf0, 0x8b, 0x9e, 0xb1, 0x6e, 0x6c, 0xb4, 0xef, 0x6f, 0x6c, 0x49, 0xe6, 0xb6, - 0xae, 0x9b, 0x71, 0x72, 0x11, 0x53, 0xab, 0xc0, 0x2f, 0xc8, 0x06, 0x54, 0x13, 0x7a, 0xea, 0x47, - 0x21, 0xeb, 0x15, 0xd6, 0x8b, 0x1b, 0x8d, 0xfb, 0xed, 0x2d, 0xc5, 0xb5, 0x85, 0x60, 0x4b, 0xa3, - 0xc9, 0x06, 0x74, 0x03, 0xea, 0x30, 0x6a, 0xfb, 0xa1, 0xcd, 0xa8, 0x1b, 0x85, 0x1e, 0xeb, 0x15, - 0xd7, 0x8d, 0x8d, 0x92, 0xd5, 0x46, 0xf8, 0x61, 0xd8, 0x97, 0x50, 0xf3, 0x3f, 0x0c, 0xb8, 0x75, - 0xc5, 0xc7, 0x59, 0x1c, 0x85, 0x8c, 0x92, 0x87, 0x19, 0x7e, 0xef, 0x5e, 0xcb, 0xef, 0xfe, 0x39, - 0x0d, 0xa7, 0xdc, 0xde, 0x85, 0x8a, 0x64, 0xa7, 0x57, 0x58, 0x37, 0xe6, 0x30, 0xab, 0xb0, 0xe4, - 0x3d, 0x28, 0xa3, 0x2a, 0x90, 0x41, 0x41, 0xa6, 0x15, 0xb3, 0x2f, 0xfe, 0x5a, 0x12, 0x49, 0xee, - 0xc1, 0x52, 0xe0, 0x30, 0x6e, 0xab, 0x6d, 0x31, 0xfb, 0xdc, 0x09, 0x7c, 0xaf, 0x57, 0x5a, 0x37, - 0x36, 0x6a, 0x56, 0x57, 0xa0, 0x9e, 0xe2, 0xc6, 0xd8, 0x67, 0x02, 0x6e, 0xfe, 0x77, 0x15, 0x40, - 0x32, 0x75, 0x44, 0xb9, 0x43, 0x6e, 0x01, 0xb8, 0xc1, 0x84, 0x71, 0x9a, 0xd8, 0xbe, 0x87, 0x7b, - 0x29, 0x59, 0x75, 0x05, 0x39, 0xf4, 0xc8, 0xb7, 0xa0, 0xa3, 0xd1, 0xe7, 0x34, 0x61, 0x9a, 0xe7, - 0xba, 0xd5, 0x56, 0xe0, 0xcf, 0x24, 0x54, 0xac, 0x33, 0x98, 0xd2, 0x34, 0x90, 0xa6, 0x3e, 0x48, - 0xd1, 0x3d, 0xa8, 0x6a, 0x5c, 0x73, 0xdd, 0xd8, 0x28, 0x5b, 0x7a, 0x48, 0x4c, 0x28, 0x0f, 0xfd, - 0x80, 0xb2, 0x5e, 0x09, 0x15, 0xd7, 0xd4, 0x72, 0x7c, 0xec, 0x07, 0xd4, 0x92, 0x28, 0xf2, 0x5d, - 0x00, 0xf1, 0xc3, 0xf6, 0x43, 0x8f, 0xbe, 0xec, 0xb5, 0x50, 0x1a, 0x5d, 0x4d, 0x28, 0xb6, 0x81, - 0xc4, 0x75, 0x41, 0x73, 0x28, 0x48, 0xc8, 0x1d, 0x68, 0x31, 0xee, 0x24, 0x3c, 0x65, 0xa8, 0x8c, - 0x1b, 0x6b, 0x22, 0x50, 0xf3, 0x74, 0x1b, 0x1a, 0x34, 0xf4, 0x52, 0x92, 0x0a, 0x92, 0x00, 0x0d, - 0x3d, 0x4d, 0xb0, 0x01, 0x55, 0xe6, 0x8e, 0xe8, 0xd8, 0x61, 0xbd, 0xaa, 0xb2, 0x2a, 0xf5, 0xcd, - 0x3e, 0x82, 0x2d, 0x8d, 0x26, 0x0f, 0xa0, 0x29, 0x7f, 0x2a, 0x16, 0xdb, 0x57, 0xb0, 0xd8, 0x90, - 0x54, 0x92, 0xc9, 0x55, 0xa8, 0xfb, 0xcc, 0x4e, 0x9c, 0x17, 0xf6, 0xd9, 0x79, 0xaf, 0x86, 0xea, - 0xaa, 0xfa, 0xcc, 0x72, 0x5e, 0x3c, 0x39, 0x17, 0x3b, 0x16, 0x88, 0xc4, 0x09, 0x4f, 0x29, 0xeb, - 0xd5, 0xf1, 0xeb, 0xe9, 0x72, 0x96, 0xf3, 0xc2, 0x12, 0x08, 0xab, 0x9e, 0xa8, 0x5f, 0x8c, 0x3c, - 0x82, 0x4e, 0x3a, 0x41, 0x31, 0xd1, 0xb9, 0x82, 0x89, 0x96, 0x9e, 0x25, 0xd9, 0x20, 0x50, 0xf2, - 0xbc, 0x80, 0xf5, 0x60, 0xdd, 0xd8, 0x68, 0x5a, 0xf8, 0x9b, 0x7c, 0x0f, 0x1a, 0x9e, 0x17, 0xc8, - 0x75, 0x28, 0xeb, 0x75, 0xaf, 0x58, 0x09, 0x3c, 0x2f, 0x38, 0x94, 0x34, 0x42, 0xe4, 0x12, 0x6d, - 0x27, 0x94, 0x4d, 0x02, 0xde, 0x5b, 0x44, 0x1b, 0x68, 0x0e, 0xb4, 0xcf, 0x4c, 0x02, 0x4e, 0x3e, - 0x84, 0x86, 0x13, 0xfb, 0xa9, 0xc8, 0x09, 0xba, 0xce, 0xd2, 0x96, 0x8e, 0x3f, 0xdb, 0xc7, 0x87, - 0x4a, 0xf6, 0x16, 0x38, 0xb1, 0xaf, 0xf5, 0xf0, 0x00, 0x6a, 0x71, 0x14, 0xf8, 0xae, 0x4f, 0x59, - 0x6f, 0x09, 0x45, 0x71, 0x33, 0xf5, 0xb6, 0xc0, 0x71, 0xe9, 0x98, 0x86, 0xfc, 0x58, 0x10, 0x5c, - 0x58, 0x29, 0x21, 0xf9, 0x10, 0x6e, 0x84, 0xf4, 0x85, 0xed, 0x46, 0x41, 0xe0, 0x88, 0x68, 0xc5, - 0x6c, 0x1a, 0x3a, 0x83, 0x80, 0x7a, 0xbd, 0x65, 0x64, 0x6c, 0x39, 0xa4, 0x2f, 0x76, 0x53, 0xe4, - 0xbe, 0xc4, 0x29, 0x9d, 0xf0, 0x97, 0xa1, 0xd0, 0xc9, 0x8a, 0xd6, 0xc9, 0xc9, 0xcb, 0xf0, 0xc9, - 0x39, 0xd9, 0x84, 0xaa, 0x37, 0xb0, 0xc7, 0x4e, 0xcc, 0x7a, 0x37, 0x90, 0x8b, 0xc5, 0x94, 0x0b, - 0x9f, 0x27, 0x7b, 0x3b, 0x47, 0x4e, 0x6c, 0x55, 0xbc, 0xc1, 0x91, 0x13, 0x33, 0x72, 0x17, 0x4a, - 0xe3, 0xc8, 0xa3, 0xbd, 0x9b, 0xb8, 0x43, 0xa2, 0x09, 0x95, 0xe3, 0x45, 0x1e, 0xb5, 0x10, 0x4f, - 0xbe, 0x0d, 0x15, 0xa5, 0xe3, 0x1e, 0x2e, 0xb9, 0x94, 0xa7, 0x94, 0x6a, 0x56, 0x24, 0xc2, 0x60, - 0x95, 0x88, 0x99, 0xff, 0x05, 0xed, 0xbd, 0x25, 0x0d, 0x56, 0x82, 0xfa, 0xfe, 0x17, 0xf4, 0x93, - 0x52, 0xad, 0xd8, 0x2d, 0x59, 0xa5, 0xd8, 0xe1, 0x23, 0xf3, 0x14, 0x1a, 0x99, 0x35, 0xc8, 0xdb, - 0x50, 0x97, 0x1e, 0x71, 0x46, 0x65, 0xc8, 0x6a, 0x5a, 0x35, 0x04, 0x3c, 0xa1, 0x17, 0xe4, 0x26, - 0x54, 0x85, 0x27, 0x08, 0x54, 0x01, 0x51, 0x15, 0x1a, 0x7a, 0x02, 0x91, 0x3a, 0x67, 0xf1, 0x4a, - 0xe7, 0x34, 0xff, 0xd4, 0x80, 0xfa, 0x89, 0x90, 0x1e, 0xc6, 0x93, 0xdb, 0xd0, 0x88, 0x47, 0x17, - 0xcc, 0x77, 0x9d, 0x40, 0x07, 0x94, 0xa2, 0x05, 0x1a, 0x74, 0x28, 0x24, 0x5c, 0x73, 0x13, 0xf7, - 0xe1, 0x87, 0x2f, 0xa3, 0x04, 0x3f, 0x56, 0xb2, 0xd2, 0xb1, 0x60, 0x92, 0x47, 0xdc, 0x09, 0xec, - 0xb3, 0x73, 0x1d, 0x95, 0x6b, 0x08, 0x78, 0x72, 0x8e, 0xbb, 0x97, 0xc8, 0xc1, 0x05, 0xc7, 0x70, - 0x81, 0xbb, 0x47, 0xd0, 0x8e, 0x80, 0x98, 0xbf, 0x29, 0x40, 0x49, 0x30, 0x26, 0x2c, 0x3a, 0x74, - 0xc6, 0x14, 0x3f, 0x5e, 0xb7, 0xf0, 0x37, 0xb9, 0x01, 0x15, 0x36, 0x72, 0xee, 0x7f, 0xff, 0xa1, - 0xde, 0xa1, 0x1c, 0xe5, 0xe5, 0x52, 0xbc, 0x5a, 0x2e, 0xa5, 0x9c, 0x5c, 0xfe, 0x7f, 0xe2, 0x4b, - 0x56, 0x14, 0xd5, 0xeb, 0x44, 0x51, 0xbb, 0x5e, 0x14, 0xf5, 0x59, 0x51, 0x90, 0xfb, 0xd0, 0xe0, - 0x42, 0x25, 0xb6, 0x48, 0x2c, 0xac, 0xd7, 0xca, 0x9b, 0x6b, 0xaa, 0x2d, 0x0b, 0xb8, 0xfe, 0xc9, - 0x48, 0x1b, 0x0a, 0xee, 0x10, 0xa3, 0x40, 0xdd, 0x2a, 0xb8, 0x43, 0x21, 0x45, 0x34, 0xb3, 0x06, - 0xae, 0x8e, 0xbf, 0x05, 0x57, 0xae, 0x1f, 0x8f, 0x44, 0xb2, 0x38, 0xc7, 0x40, 0xde, 0xb4, 0x6a, - 0x12, 0x70, 0x78, 0x6e, 0xfe, 0xac, 0x00, 0x35, 0x1d, 0x1a, 0xc8, 0xb7, 0x01, 0xc4, 0xb7, 0x6d, - 0x69, 0x3e, 0xc6, 0x1c, 0xf3, 0xa9, 0x8f, 0x15, 0x2d, 0x13, 0xc4, 0x9e, 0x93, 0x12, 0x17, 0xe6, - 0x11, 0x0b, 0xbc, 0x24, 0xce, 0x44, 0xe5, 0xe2, 0xf5, 0x51, 0x39, 0x1f, 0x44, 0x4b, 0xaf, 0x13, - 0x44, 0xd3, 0x18, 0x26, 0xe7, 0x54, 0xae, 0x76, 0x4a, 0x1d, 0xd8, 0xe4, 0x4c, 0x1d, 0x44, 0xcb, - 0xeb, 0x45, 0x1d, 0x44, 0xcd, 0xf7, 0xa1, 0x33, 0x13, 0x9e, 0x04, 0x99, 0x1f, 0x0e, 0x23, 0xe5, - 0x80, 0xf8, 0xdb, 0x7c, 0x0a, 0xd0, 0xe7, 0x0e, 0x67, 0x3b, 0x41, 0xe4, 0x9e, 0xbd, 0xda, 0x7f, - 0x6e, 0x01, 0xfc, 0x84, 0x45, 0xa1, 0x8d, 0x9a, 0x53, 0xc6, 0x5c, 0x17, 0x10, 0xd4, 0xaa, 0xf9, - 0x03, 0xa8, 0xe3, 0x6a, 0xa8, 0x84, 0x4d, 0xa8, 0x0c, 0xc4, 0xaa, 0x5a, 0x01, 0x69, 0x1c, 0x9a, - 0x7e, 0xd0, 0x52, 0x14, 0xe6, 0xdf, 0x1a, 0xd0, 0x4e, 0x67, 0xa6, 0x99, 0xe1, 0xb5, 0xfd, 0xe8, - 0x2d, 0xa8, 0x09, 0x0b, 0xb1, 0x69, 0xe8, 0x2a, 0xcf, 0xad, 0x8a, 0xf1, 0x7e, 0xe8, 0xa6, 0xa8, - 0x28, 0xf1, 0x95, 0xd7, 0x22, 0xea, 0x79, 0xe2, 0xe7, 0xed, 0xa9, 0x9c, 0xb7, 0x27, 0x21, 0x0a, - 0x3f, 0x0c, 0xfc, 0x90, 0xda, 0x42, 0xf9, 0xe8, 0x3f, 0x4d, 0x0b, 0x24, 0x68, 0xcf, 0xe1, 0x8e, - 0xf9, 0x27, 0x05, 0xa8, 0x48, 0x9d, 0x0b, 0xe3, 0xf5, 0x06, 0x4a, 0xac, 0x05, 0x6f, 0x40, 0x96, - 0xa1, 0x9c, 0x15, 0x90, 0x1c, 0xe4, 0x1c, 0xae, 0x78, 0x9d, 0xc3, 0x95, 0xae, 0x77, 0xb8, 0xf2, - 0x25, 0x87, 0xfb, 0x1d, 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, 0x2e, 0xdf, - 0xb4, 0xe4, 0x80, 0xfc, 0x00, 0x1a, 0xf8, 0x43, 0xe5, 0xee, 0x1a, 0xea, 0xeb, 0x46, 0x4e, 0x5f, - 0xa9, 0x62, 0x2c, 0x40, 0x52, 0xfc, 0x6d, 0x1e, 0x41, 0xf9, 0x70, 0xef, 0xc8, 0x89, 0x05, 0x8f, - 0x93, 0x98, 0xf1, 0x84, 0x3a, 0xe3, 0x8c, 0xe5, 0x68, 0xd0, 0xa1, 0x27, 0x82, 0x96, 0x17, 0xbd, - 0x08, 0xa7, 0x24, 0x05, 0x24, 0x69, 0x4e, 0x81, 0x87, 0x9e, 0xf9, 0x02, 0x9a, 0x22, 0x9b, 0xc9, - 0x10, 0xe1, 0xc4, 0x73, 0x6d, 0xe0, 0x3d, 0xa8, 0xf8, 0x9e, 0x48, 0x84, 0xaa, 0x7e, 0x6d, 0x69, - 0x36, 0x91, 0x11, 0xab, 0xec, 0x7b, 0x62, 0xe6, 0x3d, 0x80, 0xd8, 0x49, 0xb8, 0x8f, 0xf9, 0x55, - 0xb9, 0xea, 0x0c, 0x65, 0x86, 0xc0, 0x64, 0x50, 0x4f, 0xd3, 0xe8, 0xff, 0xe1, 0xab, 0xdf, 0x81, - 0x0a, 0xea, 0x5a, 0x7f, 0x71, 0x39, 0x9b, 0xa3, 0xf5, 0xae, 0x2c, 0x45, 0x63, 0x1e, 0x43, 0x4d, - 0xc7, 0x81, 0x6f, 0x98, 0x21, 0x65, 0xd4, 0x2c, 0xea, 0xa8, 0x69, 0xee, 0x41, 0x7b, 0x57, 0x55, - 0xcf, 0x7b, 0x58, 0xa6, 0x8b, 0xd2, 0xd7, 0x9d, 0x24, 0x09, 0x0d, 0xb9, 0x2a, 0xaf, 0xf5, 0x50, - 0x60, 0x12, 0xd9, 0xc8, 0xa8, 0x4c, 0xa8, 0x87, 0xe6, 0xbf, 0x1a, 0x50, 0x96, 0xb3, 0xbb, 0x50, - 0x1c, 0xb3, 0x53, 0x25, 0x08, 0xf1, 0x93, 0xec, 0x40, 0x77, 0x5a, 0xb1, 0xdb, 0xd9, 0x06, 0x21, - 0x35, 0x97, 0x3c, 0x07, 0x07, 0x0b, 0x69, 0xb5, 0x7e, 0xe8, 0xc9, 0x55, 0xb7, 0xa0, 0x76, 0x76, - 0xae, 0xe6, 0x96, 0x70, 0xee, 0x62, 0x5a, 0x84, 0x3d, 0xa1, 0x17, 0x7a, 0x5a, 0xf5, 0xec, 0x5c, - 0xd2, 0x3f, 0x80, 0xa6, 0xec, 0x49, 0xd4, 0x9c, 0xf2, 0xbc, 0x86, 0xe4, 0x60, 0xc1, 0x6a, 0x48, - 0x2a, 0x1c, 0xee, 0xd4, 0xa0, 0xe2, 0x51, 0xee, 0xf8, 0x81, 0xf9, 0x77, 0x06, 0xac, 0xf5, 0xd1, - 0xc2, 0x64, 0x04, 0x3d, 0x71, 0xd8, 0x59, 0x9f, 0xba, 0x93, 0xc4, 0xe7, 0x17, 0xbb, 0x51, 0x38, - 0xf4, 0xc5, 0xae, 0x48, 0x1c, 0x38, 0x7e, 0xc8, 0xe9, 0x4b, 0x8e, 0xfe, 0x9e, 0xaa, 0x21, 0x13, - 0xb6, 0x76, 0x65, 0x68, 0x08, 0x87, 0xd1, 0xc1, 0x82, 0xd5, 0x4d, 0xe9, 0x45, 0x30, 0x10, 0xba, - 0xd8, 0x87, 0xc5, 0xb1, 0x83, 0x82, 0x39, 0xa3, 0x17, 0xb6, 0x8b, 0x0b, 0x2b, 0x63, 0x49, 0x0b, - 0xc6, 0x23, 0x24, 0x78, 0x42, 0xd5, 0x77, 0x0f, 0x16, 0xac, 0xce, 0x38, 0x0f, 0xda, 0x69, 0x02, - 0x4c, 0x9b, 0x5c, 0x33, 0x00, 0x98, 0x7e, 0x96, 0xfc, 0x08, 0x1a, 0x2a, 0x60, 0xf1, 0x8b, 0x98, - 0xaa, 0xde, 0x6f, 0x6d, 0x2b, 0xd7, 0x14, 0xef, 0xa7, 0x83, 0x23, 0xca, 0x47, 0x91, 0x67, 0x81, - 0x9c, 0x22, 0xfa, 0x3f, 0xec, 0xb7, 0xe4, 0x02, 0x53, 0x5b, 0x52, 0x31, 0xf0, 0x09, 0xbd, 0x30, - 0xff, 0xdc, 0x80, 0xce, 0x0c, 0x8b, 0xe4, 0x63, 0xe8, 0x4c, 0xd7, 0x7f, 0x93, 0xef, 0xb6, 0xa7, - 0x68, 0xfc, 0xf6, 0x23, 0x68, 0x4c, 0xe5, 0xa3, 0xf3, 0xec, 0xcd, 0xfc, 0x22, 0xe9, 0xc7, 0x2d, - 0x48, 0xe5, 0xc2, 0xcc, 0x5d, 0xe8, 0xf4, 0xa3, 0x84, 0x53, 0xaf, 0x3f, 0x19, 0xa8, 0x8c, 0xf7, - 0x01, 0x00, 0x9b, 0x0c, 0x74, 0xa2, 0x34, 0x54, 0x85, 0x91, 0x31, 0x22, 0x95, 0x5d, 0x99, 0x9e, - 0x61, 0xfe, 0x67, 0x05, 0x5a, 0xf9, 0x86, 0xff, 0x15, 0xcd, 0x67, 0xce, 0x23, 0x0b, 0x57, 0x7b, - 0x64, 0xf1, 0xfa, 0xda, 0xac, 0xf4, 0xea, 0xda, 0xac, 0x7c, 0xa9, 0x36, 0xbb, 0x25, 0x6a, 0x07, - 0x4e, 0xed, 0xc0, 0x1f, 0xfb, 0x5c, 0x55, 0x67, 0x75, 0x01, 0x79, 0x2a, 0x00, 0x64, 0x1d, 0x1a, - 0x6e, 0x14, 0x4a, 0x47, 0x76, 0x2f, 0xb0, 0x40, 0x6b, 0x59, 0x59, 0x10, 0xf9, 0x11, 0x74, 0x18, - 0x8f, 0x12, 0xe7, 0x94, 0xda, 0xc2, 0xf4, 0x68, 0xe8, 0x61, 0x9d, 0x96, 0x0b, 0xea, 0x88, 0xde, - 0x91, 0x58, 0xab, 0xcd, 0x72, 0xe3, 0x7c, 0x7b, 0x08, 0xf9, 0xf6, 0x50, 0x46, 0x9d, 0x46, 0x5a, - 0xab, 0x89, 0x98, 0x10, 0x8d, 0xe3, 0x84, 0x32, 0x96, 0xda, 0x48, 0x13, 0x6d, 0x24, 0x35, 0xfc, - 0xdd, 0x29, 0x1e, 0x0f, 0x22, 0x3a, 0x6e, 0x1e, 0x40, 0xbe, 0x0d, 0x8b, 0xd9, 0x35, 0x02, 0x7a, - 0x4e, 0x03, 0xec, 0xb5, 0xcb, 0x56, 0x76, 0xf1, 0xa7, 0x02, 0x4e, 0x1e, 0xa4, 0x7e, 0x80, 0xf5, - 0x4c, 0xfb, 0x2a, 0x3f, 0xd5, 0xb6, 0x8f, 0xce, 0xf3, 0x11, 0x74, 0x3c, 0xc6, 0xed, 0x6c, 0x07, - 0xd8, 0xb9, 0xba, 0x03, 0x6c, 0x79, 0x8c, 0x6f, 0x4f, 0x9b, 0xc0, 0xbc, 0xbd, 0x75, 0x5f, 0x6d, - 0x6f, 0xe4, 0x18, 0x7a, 0x0c, 0x8d, 0xd6, 0x9e, 0x4e, 0xb4, 0x4f, 0x93, 0x68, 0x12, 0xb3, 0xde, - 0x4a, 0xbe, 0x8d, 0x9c, 0x31, 0x6e, 0x6b, 0x85, 0xe5, 0x01, 0x1f, 0xe3, 0x2c, 0xf2, 0xae, 0x08, - 0x83, 0x98, 0xc6, 0xed, 0x84, 0x3a, 0x1e, 0xb6, 0xb8, 0x35, 0x11, 0xf4, 0x10, 0x66, 0x51, 0xc7, - 0x4b, 0x1b, 0x3f, 0xf2, 0x8a, 0xc6, 0xef, 0x6d, 0xa8, 0x4f, 0x42, 0xff, 0xa7, 0x13, 0x2a, 0x2c, - 0x7f, 0x09, 0x15, 0x59, 0x93, 0x80, 0x43, 0x4f, 0x74, 0x9a, 0x6e, 0x84, 0xa1, 0x0d, 0x9b, 0x55, - 0x51, 0xb5, 0xea, 0x8d, 0xee, 0x4a, 0xb8, 0xa5, 0x09, 0x3e, 0x29, 0xd5, 0x2a, 0xdd, 0xaa, 0xea, - 0xf9, 0xfe, 0xa7, 0x00, 0xcb, 0xb3, 0x71, 0x16, 0x25, 0xff, 0x01, 0x54, 0x95, 0x75, 0xa9, 0x90, - 0x7a, 0x95, 0x11, 0x6a, 0x32, 0x2c, 0xda, 0xd0, 0x8b, 0x38, 0xd3, 0xc9, 0x09, 0xc7, 0x27, 0x8c, - 0xac, 0x80, 0x70, 0x35, 0x81, 0x90, 0x35, 0x54, 0x99, 0x86, 0xde, 0x09, 0x4b, 0x73, 0x76, 0x29, - 0x93, 0xb3, 0xdf, 0x85, 0xa6, 0xec, 0x43, 0x86, 0x7e, 0xc0, 0x69, 0x82, 0xe5, 0x71, 0xdd, 0x92, - 0xbd, 0xc9, 0x63, 0x04, 0xcd, 0x35, 0xdd, 0xca, 0x1b, 0x9a, 0xee, 0x73, 0xe8, 0x30, 0x95, 0x4e, - 0x74, 0xd8, 0xaf, 0xe2, 0x36, 0xef, 0x4e, 0xb7, 0x79, 0x5d, 0xf6, 0xb1, 0xda, 0x6c, 0x66, 0x8c, - 0x27, 0x6a, 0x93, 0xd8, 0x13, 0x21, 0x80, 0x33, 0xdd, 0x81, 0x5b, 0x15, 0x51, 0x78, 0x4d, 0x98, - 0xf9, 0x65, 0x41, 0x14, 0xcb, 0x39, 0x77, 0x35, 0xa1, 0x14, 0x46, 0x51, 0xac, 0xe4, 0x9b, 0x76, - 0x2f, 0xcf, 0xa2, 0x28, 0x3e, 0x58, 0xb0, 0x10, 0x47, 0xde, 0x87, 0x72, 0x10, 0xb9, 0x4e, 0x30, - 0x5b, 0xc1, 0x3c, 0x15, 0xc0, 0x83, 0x05, 0x4b, 0x62, 0xc9, 0x3b, 0x50, 0x60, 0x0f, 0x54, 0x4e, - 0x87, 0x74, 0x07, 0x0f, 0x0e, 0x16, 0xac, 0x02, 0x7b, 0x40, 0x6e, 0x43, 0xf1, 0xd4, 0x65, 0x2a, - 0x6d, 0x37, 0x34, 0xfa, 0xe3, 0xdd, 0xfe, 0xc1, 0x82, 0x25, 0x30, 0xe4, 0x23, 0x68, 0xb9, 0x41, - 0x34, 0xf1, 0x6c, 0xef, 0x22, 0x74, 0xc6, 0xbe, 0xab, 0xb2, 0xf5, 0xf2, 0xb4, 0x3a, 0x88, 0x26, - 0xde, 0x9e, 0xc4, 0x1d, 0x2c, 0x58, 0x4d, 0x37, 0x33, 0x16, 0xdb, 0x18, 0x79, 0x43, 0x59, 0xbc, - 0x66, 0xb6, 0x71, 0xb0, 0xf7, 0x58, 0xac, 0x8f, 0x38, 0x72, 0x00, 0xc4, 0xf9, 0x62, 0x92, 0x50, - 0x7b, 0x10, 0x44, 0x03, 0x5b, 0x1b, 0x96, 0x94, 0x78, 0x4f, 0xcf, 0xd8, 0x16, 0x14, 0x3b, 0x41, - 0x34, 0x50, 0x72, 0x12, 0x19, 0xdb, 0x99, 0x81, 0xed, 0xd4, 0xa1, 0xaa, 0x82, 0xa3, 0x59, 0x81, - 0x92, 0x90, 0x95, 0xf9, 0x36, 0x94, 0x51, 0x1c, 0xc2, 0x9e, 0x84, 0x51, 0xeb, 0x1a, 0x10, 0x0d, - 0xfc, 0xcf, 0x4a, 0x50, 0xe8, 0x3f, 0x10, 0x75, 0x3c, 0x0d, 0xbd, 0x38, 0xf2, 0x55, 0x4d, 0x55, - 0xb7, 0xd2, 0xb1, 0x68, 0x50, 0x32, 0x87, 0xab, 0xf5, 0xf4, 0x30, 0xf5, 0x06, 0x54, 0x06, 0x13, - 0xf7, 0x8c, 0x72, 0x55, 0xac, 0xa9, 0x91, 0x80, 0xc7, 0x09, 0x1d, 0xfa, 0x2f, 0x95, 0xe1, 0xaa, - 0x91, 0x4c, 0x23, 0x32, 0x7e, 0xbb, 0x81, 0xc3, 0x64, 0xd1, 0x5f, 0x17, 0x69, 0x04, 0x81, 0xbb, - 0x02, 0x26, 0xaa, 0x33, 0xc6, 0xa4, 0xbd, 0xd6, 0x2d, 0xf1, 0x53, 0x40, 0x1c, 0x37, 0x40, 0x61, - 0xd4, 0x2d, 0xf1, 0x53, 0x64, 0x12, 0xc7, 0x75, 0x29, 0x63, 0x98, 0xab, 0x6a, 0xf2, 0x64, 0x54, - 0x42, 0x44, 0xba, 0xda, 0x84, 0x45, 0x46, 0xdd, 0x84, 0x72, 0x3b, 0x43, 0x55, 0x47, 0xaa, 0x8e, - 0x44, 0x6c, 0xa7, 0xb4, 0x1b, 0xd0, 0x1d, 0x46, 0x89, 0x4b, 0x6d, 0x21, 0x0c, 0x9b, 0xf1, 0x8b, - 0x80, 0xaa, 0xcc, 0xd0, 0x46, 0xf8, 0xb1, 0xc3, 0x47, 0x7d, 0x01, 0x25, 0x77, 0xa0, 0xcd, 0x18, - 0xb5, 0xcf, 0xc6, 0xb8, 0x9e, 0x88, 0x31, 0x32, 0x59, 0x34, 0x18, 0xa3, 0x4f, 0xc6, 0x62, 0xb1, - 0x43, 0x4f, 0xf8, 0x78, 0x12, 0x05, 0xd4, 0x76, 0x12, 0x79, 0x2a, 0x5b, 0xb7, 0xaa, 0x62, 0xbc, - 0x9d, 0xc8, 0xfc, 0xf8, 0x92, 0xd3, 0x24, 0x94, 0x6d, 0x68, 0x0b, 0xb1, 0xa0, 0x41, 0x87, 0x1e, - 0xd9, 0x82, 0xa5, 0x68, 0xf0, 0x13, 0xea, 0x72, 0x5b, 0xb4, 0x8f, 0xe9, 0xd9, 0x5a, 0x1b, 0xb9, - 0x59, 0x94, 0xa8, 0xa7, 0x91, 0x7b, 0xa6, 0x0f, 0xd6, 0x84, 0x38, 0xb5, 0x8b, 0x47, 0x67, 0x54, - 0x46, 0x7e, 0x21, 0x4e, 0xe5, 0xc6, 0x02, 0x26, 0xf4, 0x1a, 0x27, 0xd1, 0xb9, 0xef, 0xd1, 0x04, - 0xcf, 0x1c, 0xeb, 0x56, 0x3a, 0x16, 0xc5, 0x72, 0x9c, 0x44, 0x43, 0x3f, 0xa0, 0xea, 0x64, 0x51, - 0x0f, 0xcd, 0x5f, 0x19, 0x50, 0xfc, 0x78, 0xb7, 0xff, 0x2a, 0xab, 0x50, 0xda, 0x2f, 0x5c, 0xa1, - 0xfd, 0xe2, 0xf5, 0xda, 0x2f, 0xcd, 0xd1, 0xfe, 0xfb, 0xd0, 0x8e, 0x13, 0xea, 0xd1, 0xa1, 0x1f, - 0x52, 0xcf, 0x16, 0x6a, 0x97, 0x36, 0xd2, 0x9a, 0x42, 0xb7, 0xdd, 0x40, 0xf4, 0x86, 0xae, 0x00, - 0x84, 0xdc, 0x77, 0x02, 0x86, 0x4e, 0xa3, 0x2c, 0xa6, 0x93, 0x81, 0x0b, 0xb7, 0x30, 0xc7, 0xd0, - 0x45, 0xbf, 0xd9, 0x9d, 0x30, 0x1e, 0x8d, 0xb1, 0xf8, 0x12, 0x5f, 0xc9, 0x94, 0x7f, 0xba, 0x2a, - 0xae, 0x5b, 0xad, 0x29, 0x54, 0x90, 0xdd, 0x87, 0x95, 0x3c, 0x99, 0x9d, 0xe9, 0xd3, 0xeb, 0xd6, - 0x52, 0x8e, 0xba, 0x8f, 0x28, 0x11, 0xc6, 0xba, 0xb3, 0x7e, 0xfa, 0xdb, 0x17, 0xe3, 0xbb, 0xd0, - 0x74, 0x5c, 0x37, 0x9a, 0x84, 0xdc, 0xc6, 0x04, 0x22, 0x85, 0xd8, 0x50, 0xb0, 0x67, 0x22, 0x8f, - 0xdc, 0x02, 0x60, 0x23, 0x27, 0xa1, 0xb2, 0xde, 0x93, 0xc2, 0xab, 0x4b, 0x88, 0xd8, 0xfb, 0xd4, - 0xc5, 0x98, 0x7f, 0x9a, 0x77, 0xb1, 0xbe, 0x7f, 0x2a, 0x14, 0x90, 0x11, 0x0d, 0x73, 0xa3, 0x98, - 0x6a, 0x0f, 0x9b, 0xc2, 0xfb, 0x02, 0x4c, 0x7e, 0x74, 0x49, 0xd8, 0x30, 0x27, 0xac, 0x65, 0xd4, - 0x33, 0xa3, 0x06, 0xf3, 0x97, 0x06, 0x54, 0x76, 0xa4, 0x50, 0x5e, 0x2f, 0x4a, 0x15, 0xaf, 0x88, - 0x52, 0xa5, 0x2b, 0x04, 0x5c, 0xbe, 0x5e, 0xc0, 0x95, 0xcb, 0x02, 0x16, 0xdd, 0x64, 0x33, 0x1b, - 0xf4, 0xc9, 0xdd, 0xf4, 0x2b, 0x86, 0x6a, 0xe4, 0x74, 0x99, 0x82, 0xd0, 0xf4, 0xab, 0x77, 0xa0, - 0xa5, 0xfd, 0x4f, 0xaa, 0x46, 0x6a, 0xbd, 0xa9, 0x81, 0xa8, 0x9b, 0xef, 0x43, 0xd9, 0xe1, 0x3c, - 0xd1, 0x0d, 0xf7, 0xed, 0x79, 0x69, 0x66, 0x6b, 0x5b, 0x50, 0xec, 0x87, 0x3c, 0xb9, 0xb0, 0x24, - 0xf5, 0xea, 0x23, 0x80, 0x29, 0x50, 0x84, 0xcd, 0xa9, 0x65, 0x8b, 0x9f, 0x64, 0x19, 0xca, 0xe7, - 0x4e, 0x30, 0xd1, 0xdf, 0x94, 0x83, 0xdf, 0x2b, 0x3c, 0x32, 0xcc, 0x35, 0x28, 0x89, 0x74, 0x24, - 0x65, 0x38, 0x8e, 0xb8, 0x3e, 0x26, 0x50, 0x23, 0xf3, 0x9f, 0x0c, 0x68, 0xcf, 0xdc, 0xd4, 0xdd, - 0xd1, 0x37, 0x69, 0x46, 0x3e, 0xf1, 0xe6, 0x2e, 0xd2, 0xbe, 0x59, 0xbb, 0xf1, 0x3a, 0xf7, 0x57, - 0x33, 0xd7, 0x1e, 0xe5, 0xd7, 0xba, 0xf6, 0x30, 0xef, 0x41, 0x7b, 0x37, 0xa0, 0x4e, 0x38, 0xed, - 0x97, 0x72, 0x45, 0xa3, 0x91, 0x2f, 0x1a, 0xcd, 0x63, 0xe8, 0xa4, 0xe4, 0x6f, 0xb2, 0xed, 0x1e, - 0x54, 0xd9, 0x04, 0x7d, 0x05, 0x37, 0x5d, 0xb3, 0xf4, 0xd0, 0x7c, 0x04, 0x6d, 0x75, 0x9b, 0xa9, - 0x19, 0xb8, 0x0b, 0x1d, 0xe6, 0x9c, 0x53, 0x9b, 0x47, 0x76, 0xb6, 0x9e, 0xac, 0x59, 0x2d, 0x01, - 0x3e, 0x89, 0x54, 0x0c, 0x31, 0xff, 0xc6, 0x80, 0x4e, 0x3a, 0xf5, 0x0d, 0x75, 0x30, 0xdd, 0x61, - 0x61, 0xa6, 0x2c, 0xfe, 0x0e, 0x10, 0x37, 0x0a, 0x02, 0x91, 0x74, 0xf0, 0x3a, 0x10, 0xe3, 0x83, - 0x2a, 0x42, 0xbb, 0x0a, 0x23, 0xc4, 0xbe, 0x2b, 0xe0, 0x22, 0xb1, 0xe6, 0xa8, 0xf1, 0x30, 0x5b, - 0xf6, 0x82, 0x9d, 0x0c, 0x71, 0xdf, 0xff, 0x82, 0x9a, 0x4b, 0xb0, 0xb8, 0x3b, 0xa2, 0xee, 0xd9, - 0xb6, 0x37, 0xf6, 0x43, 0xb5, 0x59, 0xf3, 0x67, 0x06, 0x90, 0x2c, 0xf4, 0x4d, 0xf6, 0xf1, 0xba, - 0x57, 0xbc, 0x9b, 0xb0, 0x38, 0x72, 0x98, 0x1d, 0xd3, 0xd0, 0xf3, 0xc3, 0x53, 0xdb, 0x11, 0x5f, - 0xc2, 0x1d, 0xd5, 0xac, 0xce, 0xc8, 0x61, 0xc7, 0x12, 0x8e, 0x0c, 0x98, 0xff, 0x62, 0xc0, 0xad, - 0x7d, 0x95, 0x81, 0x95, 0xa0, 0x2d, 0x2a, 0xd4, 0x90, 0xaa, 0x67, 0x4e, 0xcf, 0x69, 0xbc, 0x51, - 0xcf, 0x79, 0x1b, 0x1a, 0x2a, 0xab, 0x67, 0xdc, 0x1d, 0x24, 0xe8, 0x99, 0x2a, 0xe8, 0x13, 0xf9, - 0x4d, 0x49, 0x21, 0xa3, 0x57, 0x43, 0xc1, 0x90, 0xe4, 0x7d, 0x68, 0x63, 0x6f, 0x12, 0x72, 0x3b, - 0xa0, 0xe1, 0x29, 0x1f, 0x29, 0xa1, 0xb7, 0x14, 0xf4, 0x29, 0x02, 0xcd, 0x75, 0x58, 0xbb, 0x6a, - 0x33, 0x52, 0xd0, 0xe6, 0x5f, 0x1a, 0xb0, 0x3a, 0x43, 0xd2, 0x77, 0xce, 0x7f, 0x8b, 0x9b, 0xbd, - 0xbc, 0x93, 0xe2, 0xbc, 0x9d, 0xdc, 0x82, 0xb7, 0xe7, 0xb2, 0xa9, 0xb6, 0xf1, 0x0b, 0x75, 0x2d, - 0xe2, 0x39, 0xdc, 0x21, 0x9b, 0x3a, 0x5a, 0x18, 0xf9, 0xd3, 0xc9, 0x3d, 0x75, 0xbd, 0x81, 0x3d, - 0xb3, 0x8a, 0x1a, 0x0f, 0xa1, 0x81, 0x86, 0xab, 0x5a, 0x56, 0x79, 0x17, 0xb1, 0x32, 0x3b, 0x03, - 0x5b, 0x53, 0x0b, 0xef, 0xc7, 0x55, 0x97, 0x8a, 0xad, 0x9b, 0xd0, 0x50, 0x7a, 0xc4, 0x8b, 0x5d, - 0x9d, 0xf0, 0xa0, 0xdb, 0x20, 0x54, 0x15, 0x05, 0xe7, 0x34, 0xd3, 0xbf, 0x81, 0x06, 0xc9, 0xde, - 0x6e, 0xec, 0xbc, 0x14, 0x38, 0xa9, 0xb4, 0xf2, 0xd8, 0x79, 0xa9, 0xc0, 0x7e, 0x28, 0xc0, 0x65, - 0x05, 0xf6, 0xc3, 0x13, 0xc1, 0x21, 0x3e, 0x0e, 0x49, 0x03, 0x5b, 0x55, 0x05, 0xb6, 0xcc, 0x3d, - 0xb1, 0x0e, 0x6c, 0x8d, 0xf1, 0x74, 0x60, 0xfe, 0x9b, 0x01, 0xad, 0x1c, 0xff, 0xf3, 0x8a, 0x7d, - 0xf2, 0x43, 0xe8, 0x4c, 0x6f, 0x85, 0xe4, 0x39, 0x43, 0xe1, 0x1a, 0xa9, 0xb5, 0xd2, 0x2b, 0x22, - 0x6c, 0x79, 0xa7, 0x2c, 0x17, 0xb3, 0x2c, 0x5f, 0xb1, 0xc1, 0xbb, 0xd0, 0x11, 0xd4, 0x59, 0xe1, - 0xc8, 0x9d, 0xb6, 0xa4, 0xeb, 0x6b, 0xf9, 0xdc, 0x80, 0x8a, 0x32, 0x05, 0x79, 0x9d, 0xa7, 0x46, - 0xe6, 0x3f, 0x57, 0xa0, 0x99, 0xe5, 0x26, 0x73, 0x4f, 0x62, 0xe4, 0xee, 0x49, 0xf4, 0x46, 0x0b, - 0x99, 0x8d, 0x6e, 0xc2, 0x62, 0x38, 0x19, 0x0f, 0x68, 0x62, 0x47, 0x43, 0x9b, 0x86, 0x3c, 0xf1, - 0xa9, 0xe4, 0xba, 0x68, 0x75, 0x24, 0xe2, 0xf9, 0x70, 0x5f, 0x82, 0x33, 0xdb, 0x2a, 0xcd, 0xdf, - 0x56, 0x39, 0xbb, 0xad, 0x19, 0x7d, 0x57, 0x2e, 0xe9, 0xfb, 0x6d, 0xa8, 0xab, 0x83, 0x5d, 0xdf, - 0x43, 0xf5, 0x15, 0xad, 0x9a, 0x04, 0xcc, 0x9e, 0xbf, 0xd5, 0xae, 0x4e, 0x88, 0xf5, 0x39, 0x27, - 0xe2, 0xd3, 0x7b, 0xc4, 0xf7, 0xa0, 0x84, 0x4d, 0x7d, 0x03, 0x8d, 0xa3, 0x9b, 0xcd, 0x8f, 0xd8, - 0xcd, 0x23, 0x56, 0x2c, 0xe7, 0x33, 0xbc, 0xae, 0xc4, 0x56, 0xa4, 0x66, 0x55, 0x7c, 0x86, 0x17, - 0xca, 0x6f, 0x41, 0x4d, 0x1e, 0x21, 0xa8, 0x36, 0xa4, 0x68, 0x55, 0x71, 0x7c, 0xe8, 0x65, 0x94, - 0xd1, 0xce, 0x2a, 0x83, 0xfc, 0x2e, 0xac, 0x0a, 0x19, 0x0d, 0xe8, 0x29, 0x4a, 0xca, 0xf6, 0x43, - 0xdb, 0xa3, 0x43, 0x67, 0x12, 0x70, 0xdb, 0x1d, 0x62, 0xe3, 0x51, 0xb2, 0x56, 0xc6, 0x7e, 0xb8, - 0x23, 0x08, 0x4e, 0xd8, 0x61, 0xb8, 0x27, 0xb1, 0xbb, 0x43, 0x8c, 0x6f, 0xf8, 0x84, 0x22, 0x1a, - 0x0e, 0x19, 0xe5, 0xd8, 0x85, 0x94, 0xac, 0x06, 0xc2, 0x9e, 0x23, 0x68, 0x4a, 0xa2, 0xbe, 0xbd, - 0x98, 0x21, 0x91, 0x11, 0x61, 0xee, 0x99, 0x06, 0x79, 0xc3, 0x33, 0x8d, 0xec, 0x5d, 0xd5, 0xd2, - 0xcc, 0x5d, 0xd5, 0x06, 0x74, 0x95, 0xd6, 0xa6, 0xfa, 0x59, 0x46, 0x25, 0xb4, 0x25, 0xbc, 0xaf, - 0xb5, 0xf4, 0x1e, 0xb4, 0xf5, 0xc1, 0xbd, 0x52, 0xd6, 0x0a, 0xd2, 0xa9, 0xe3, 0xfc, 0x7d, 0xa9, - 0xb2, 0x87, 0xd3, 0xe3, 0xfd, 0x38, 0x72, 0x47, 0xea, 0x79, 0xc3, 0x52, 0x3e, 0x67, 0xed, 0x0b, - 0x54, 0x7a, 0xc2, 0x2f, 0x06, 0xc4, 0x82, 0x65, 0x8c, 0x50, 0x99, 0x92, 0x19, 0xdd, 0xf4, 0x26, - 0xc6, 0xe1, 0xf5, 0xfc, 0xc9, 0xb2, 0x50, 0xf8, 0xf4, 0x88, 0x1a, 0x5d, 0x96, 0x0c, 0x2f, 0xc1, - 0xcc, 0x9f, 0x1b, 0xb0, 0x98, 0x3d, 0xad, 0xd9, 0xd7, 0x75, 0xc1, 0xc8, 0x89, 0x63, 0x1a, 0xda, - 0x8e, 0xbe, 0x46, 0xa9, 0x49, 0xc0, 0x36, 0x1e, 0x23, 0x63, 0xd6, 0xb5, 0xdd, 0xc8, 0xd3, 0x71, - 0xbc, 0x8e, 0x90, 0xdd, 0xc8, 0x13, 0x09, 0x5b, 0xbe, 0x68, 0xb3, 0xc7, 0x94, 0x31, 0x51, 0xb2, - 0xc8, 0xa4, 0xd5, 0x44, 0xe0, 0x91, 0x84, 0xe5, 0x82, 0xa6, 0xbe, 0xa4, 0x94, 0x41, 0xd3, 0x7c, - 0x08, 0xa5, 0x7e, 0xec, 0x60, 0x6d, 0xae, 0xac, 0x42, 0x32, 0xa0, 0x46, 0x19, 0x33, 0x2c, 0xe4, - 0x62, 0xc2, 0x3e, 0x34, 0xc4, 0x3c, 0xf6, 0x7c, 0xa8, 0x5f, 0x25, 0x5c, 0x0a, 0x71, 0x26, 0x94, - 0x99, 0x20, 0x99, 0xbd, 0xf3, 0x16, 0xf3, 0x2c, 0x89, 0x32, 0x7f, 0x5e, 0x84, 0xde, 0xd3, 0xe8, - 0x14, 0x6b, 0x95, 0xc9, 0x40, 0x98, 0x89, 0xe3, 0xaa, 0x43, 0x7e, 0x27, 0xbd, 0xa4, 0x37, 0xf2, - 0x97, 0xf4, 0x53, 0x9f, 0x56, 0x4f, 0x2c, 0x52, 0x9f, 0x9e, 0xb9, 0xaf, 0x22, 0xeb, 0xd0, 0xf4, - 0xc3, 0x78, 0xc2, 0xed, 0x5c, 0x54, 0x04, 0x84, 0x1d, 0x61, 0x0c, 0x99, 0x52, 0x64, 0x33, 0x80, - 0xa2, 0xc0, 0xe0, 0x73, 0x17, 0x3a, 0x8a, 0x2d, 0x7b, 0x98, 0x44, 0xe3, 0x69, 0xa4, 0x69, 0x29, - 0xf0, 0xe3, 0x24, 0x1a, 0x9f, 0xe0, 0xdb, 0x3b, 0x4d, 0x37, 0x09, 0xb9, 0x1f, 0xd8, 0xea, 0x12, - 0xb4, 0x64, 0xb5, 0x15, 0xfc, 0x53, 0x01, 0x3e, 0x61, 0x22, 0x1a, 0x88, 0xaf, 0x4d, 0xe3, 0x8e, - 0x08, 0x7a, 0x2a, 0xea, 0x08, 0x46, 0x33, 0x51, 0x67, 0xec, 0xbc, 0x14, 0x88, 0x75, 0x7c, 0x8b, - 0x07, 0x57, 0xc4, 0x98, 0x02, 0xbf, 0xc8, 0x05, 0x92, 0x46, 0x3e, 0x90, 0xdc, 0x83, 0x2a, 0x8b, - 0x26, 0x89, 0x4b, 0x59, 0xaf, 0x99, 0xbf, 0xf1, 0xcf, 0x28, 0xd0, 0xd2, 0x34, 0xe6, 0xdf, 0x1b, - 0xb0, 0x3c, 0x4f, 0x23, 0xe4, 0x43, 0x28, 0x61, 0x04, 0x33, 0x94, 0xfd, 0xa7, 0xc7, 0x7b, 0xf3, - 0xb5, 0x67, 0x21, 0x35, 0xb9, 0x07, 0x0d, 0xc6, 0xb8, 0x1d, 0x4d, 0x78, 0x3c, 0xe1, 0xf3, 0x9f, - 0x3f, 0x00, 0x63, 0xfc, 0xb9, 0xc4, 0x93, 0x1d, 0x58, 0x54, 0xea, 0xc5, 0xdc, 0x3b, 0xf2, 0x43, - 0xae, 0x7b, 0xaf, 0xb4, 0xf2, 0x91, 0x1e, 0x2b, 0xbe, 0x71, 0xe0, 0x87, 0xdc, 0xea, 0x24, 0xb9, - 0x31, 0x33, 0xff, 0x18, 0xda, 0x79, 0x92, 0x6f, 0x78, 0xfb, 0x39, 0x1b, 0x38, 0xe4, 0x99, 0xe5, - 0x2b, 0x03, 0x87, 0xf9, 0x47, 0xb0, 0x32, 0x4f, 0x28, 0x8c, 0xec, 0x41, 0x9b, 0xe5, 0x20, 0xaa, - 0x50, 0x7a, 0xe7, 0x3a, 0x59, 0x5a, 0x33, 0x73, 0xcc, 0x7f, 0x2f, 0xc0, 0xa2, 0x22, 0xdc, 0x9d, - 0x6a, 0x07, 0xdb, 0x07, 0x3d, 0x4a, 0x2d, 0xd5, 0xd0, 0xed, 0x83, 0xc6, 0x28, 0x63, 0xdd, 0x82, - 0xa5, 0x0c, 0x75, 0x6a, 0xaf, 0xd2, 0x9f, 0x16, 0xa7, 0x28, 0x6d, 0xb2, 0xfa, 0xf8, 0xbb, 0x98, - 0x39, 0xfe, 0x16, 0x31, 0x3c, 0x1a, 0x8f, 0x69, 0xc8, 0xf5, 0xc9, 0x47, 0x3a, 0x26, 0xef, 0x40, - 0xdd, 0x49, 0xb8, 0x3f, 0x74, 0x5c, 0xae, 0xcf, 0x16, 0xa7, 0x00, 0x51, 0x7a, 0xa6, 0x03, 0x7b, - 0xe4, 0x30, 0x5d, 0x6f, 0xb4, 0x52, 0xe8, 0x81, 0xc3, 0x46, 0xe4, 0x5b, 0xd0, 0x39, 0xa5, 0x21, - 0x4d, 0x1c, 0x4e, 0x3d, 0xf5, 0x7a, 0x46, 0x9e, 0x3c, 0xb6, 0x53, 0xb0, 0x7c, 0x34, 0x33, 0xeb, - 0xc4, 0xb5, 0x4b, 0x4e, 0x3c, 0x1b, 0x08, 0xea, 0xb3, 0x81, 0xc0, 0xfc, 0x47, 0x43, 0x16, 0xb2, - 0xfb, 0x9e, 0xcf, 0xe7, 0x46, 0xb3, 0xfb, 0xb0, 0xe2, 0xd1, 0x80, 0x72, 0x6a, 0xa7, 0x4f, 0x58, - 0xa6, 0x2f, 0x7a, 0xea, 0xd6, 0x92, 0x44, 0x1e, 0x2b, 0x9c, 0x64, 0xec, 0x09, 0x2c, 0xab, 0x39, - 0x41, 0x74, 0x9a, 0x99, 0x22, 0x0d, 0xfa, 0xad, 0xb4, 0xd2, 0x43, 0x9a, 0xac, 0x37, 0x12, 0x39, - 0xed, 0xa9, 0x9c, 0x25, 0x17, 0xbb, 0x03, 0x2d, 0x8f, 0x32, 0x9e, 0x4c, 0x5c, 0x6e, 0x33, 0x1a, - 0x0c, 0xd5, 0x23, 0xd8, 0xa6, 0x06, 0xf6, 0x69, 0x30, 0x34, 0x5f, 0xc0, 0xe2, 0xa5, 0xd5, 0xbe, - 0x69, 0x70, 0x16, 0xa5, 0xdb, 0x8b, 0x51, 0x24, 0x2f, 0x38, 0x68, 0xbe, 0x4b, 0xe8, 0x20, 0x42, - 0xac, 0xae, 0xfa, 0x84, 0x5f, 0x16, 0xa0, 0x7e, 0xe4, 0x9f, 0x26, 0xf8, 0xe2, 0x10, 0x9f, 0x05, - 0x24, 0xd4, 0xe1, 0xea, 0x36, 0xbd, 0x6e, 0xe9, 0x21, 0xb9, 0x3f, 0x7d, 0x2b, 0x2b, 0x2f, 0x42, - 0xd2, 0xc3, 0xa7, 0x74, 0xb6, 0xae, 0xaa, 0xd3, 0x57, 0xb4, 0xf7, 0xa0, 0x4e, 0x3d, 0x9f, 0xdb, - 0x2a, 0xfc, 0x14, 0x67, 0x9f, 0x6b, 0x0a, 0x9d, 0x59, 0x35, 0x41, 0x82, 0x69, 0xe3, 0x5d, 0x68, - 0xf2, 0x64, 0x12, 0xba, 0x68, 0x37, 0x3c, 0x52, 0x56, 0xdd, 0x48, 0x61, 0x27, 0x11, 0xf9, 0x08, - 0x1a, 0x59, 0x37, 0x9c, 0xd1, 0xc7, 0x25, 0xef, 0xb2, 0xb2, 0xd4, 0xc2, 0x2e, 0x53, 0x45, 0xa4, - 0xa7, 0xeb, 0xc2, 0x06, 0xda, 0x1a, 0x7c, 0x8c, 0xd0, 0xcd, 0x67, 0xb0, 0xfe, 0xaa, 0x07, 0xde, - 0xa4, 0x03, 0x8d, 0x4f, 0xf1, 0x26, 0x06, 0xdf, 0x31, 0x77, 0x17, 0x48, 0x0b, 0xea, 0x3f, 0x76, - 0x7c, 0xbe, 0x1d, 0xc7, 0xc1, 0x45, 0xd7, 0x20, 0x00, 0x95, 0xc7, 0x7e, 0xe8, 0xb3, 0x51, 0xb7, - 0xb0, 0xf9, 0x09, 0xac, 0x5d, 0xff, 0x00, 0x9b, 0x2c, 0x42, 0x2b, 0x9d, 0xbc, 0x17, 0x85, 0x62, - 0xbd, 0x15, 0x58, 0xcc, 0x7c, 0x40, 0x3e, 0x55, 0xed, 0x1a, 0x9b, 0xbf, 0x0f, 0x9d, 0x99, 0x2a, - 0x8d, 0x34, 0xa0, 0xfa, 0xe9, 0xb3, 0x27, 0xcf, 0x9e, 0xff, 0xf8, 0x59, 0x77, 0x81, 0x54, 0xa1, - 0xf8, 0xf4, 0xf3, 0x0f, 0x25, 0x03, 0xfd, 0x67, 0xdb, 0xc7, 0xc7, 0x7f, 0xd8, 0x2d, 0x90, 0x1a, - 0x94, 0x3e, 0xef, 0x9f, 0xec, 0x75, 0x8b, 0x9b, 0xeb, 0xe9, 0x3b, 0x6b, 0x51, 0x84, 0xd4, 0xa0, - 0xd4, 0xdf, 0xdd, 0x16, 0xd3, 0x6a, 0x50, 0x7a, 0x7c, 0xf8, 0x74, 0xbf, 0x6b, 0x6c, 0xde, 0x82, - 0x46, 0xa6, 0x45, 0x22, 0x15, 0x28, 0x7c, 0xf6, 0xbd, 0xee, 0x02, 0xfe, 0xbd, 0xdf, 0x35, 0x36, - 0x6f, 0x43, 0x4d, 0x27, 0x30, 0xf1, 0x09, 0x69, 0xb4, 0xf2, 0xbb, 0xc7, 0x13, 0xc1, 0xa0, 0x09, - 0xdd, 0x59, 0x8b, 0x10, 0x93, 0x8f, 0x3e, 0x90, 0x8b, 0x1c, 0x7d, 0xaf, 0x6b, 0xdc, 0xff, 0x4d, - 0x01, 0x2a, 0x92, 0x0d, 0xf2, 0x11, 0xa8, 0x07, 0xff, 0x64, 0x65, 0xe6, 0x41, 0x9b, 0x14, 0xf6, - 0xea, 0x8d, 0x59, 0xb0, 0xea, 0x60, 0x17, 0x3e, 0x30, 0xc8, 0x31, 0x2c, 0xe1, 0x59, 0x48, 0xf6, - 0x44, 0xe2, 0x79, 0x4c, 0x52, 0x83, 0xb8, 0x74, 0x7c, 0xb2, 0xba, 0x3a, 0x0f, 0x95, 0x59, 0x71, - 0x04, 0x2b, 0x73, 0x55, 0x45, 0xde, 0x7b, 0x9d, 0xa7, 0xff, 0xab, 0xef, 0xbf, 0x82, 0x4a, 0x7e, - 0x69, 0xc3, 0xf8, 0xc0, 0x20, 0x3f, 0x84, 0x6a, 0x2c, 0x89, 0xc8, 0x8d, 0x99, 0x59, 0x7a, 0xb5, - 0x9b, 0x97, 0xe0, 0x9a, 0x53, 0x31, 0xdb, 0x95, 0xe7, 0x6a, 0x24, 0xf3, 0xc0, 0x26, 0x7b, 0x2e, - 0x37, 0x9d, 0x3d, 0x73, 0x00, 0x67, 0x2e, 0xdc, 0xff, 0x07, 0x03, 0x3a, 0x33, 0xa7, 0x03, 0xe4, - 0x73, 0xa8, 0xaa, 0x03, 0x13, 0x92, 0xee, 0xe2, 0xda, 0x83, 0x9d, 0xd5, 0xbb, 0xaf, 0x22, 0x4b, - 0xb9, 0xfd, 0x03, 0x28, 0x31, 0xe7, 0x9c, 0x12, 0xf3, 0x8a, 0x19, 0x99, 0x13, 0x94, 0xd5, 0x3b, - 0xd7, 0xd2, 0xe8, 0x25, 0x77, 0xee, 0xff, 0xfa, 0xaf, 0x6a, 0xc6, 0xaf, 0xbe, 0x5a, 0x33, 0xbe, - 0xfc, 0x6a, 0xcd, 0xf8, 0xaf, 0xaf, 0xd6, 0x8c, 0x5f, 0x7c, 0xbd, 0xb6, 0xf0, 0x17, 0x5f, 0xaf, - 0x2d, 0x7c, 0xf9, 0xf5, 0xda, 0xc2, 0xaf, 0xbf, 0x5e, 0x5b, 0x80, 0x6e, 0x94, 0x9c, 0x6e, 0x71, - 0xff, 0xec, 0x7c, 0xeb, 0xec, 0x1c, 0xff, 0xd7, 0x63, 0x50, 0xc1, 0x3f, 0x0f, 0xfe, 0x37, 0x00, - 0x00, 0xff, 0xff, 0x08, 0x98, 0x3f, 0x67, 0x6f, 0x32, 0x00, 0x00, + // 4853 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x3b, 0x4d, 0x6f, 0x1c, 0x47, + 0x76, 0xec, 0xf9, 0x9e, 0x37, 0x9f, 0x2c, 0x92, 0xd2, 0x98, 0xb6, 0x28, 0xba, 0x65, 0x6b, 0x19, + 0x7a, 0xc5, 0xb5, 0x29, 0xaf, 0x56, 0x89, 0x37, 0x30, 0xf8, 0x25, 0x93, 0x96, 0x28, 0x31, 0x3d, + 0xb4, 0x17, 0x71, 0x10, 0x34, 0x7a, 0xba, 0x6b, 0xc8, 0x5e, 0xf6, 0x74, 0xf7, 0x76, 0xd5, 0x50, + 0xa2, 0x0f, 0x39, 0xe4, 0x90, 0xdb, 0x62, 0x37, 0x41, 0x0e, 0xf9, 0x03, 0x01, 0x72, 0x48, 0x80, + 0x5c, 0x73, 0xda, 0x1c, 0x12, 0x64, 0x81, 0x04, 0x88, 0x81, 0xe4, 0xb0, 0xb7, 0x04, 0x36, 0x92, + 0x1f, 0x11, 0x60, 0x81, 0xa0, 0x5e, 0x55, 0xf5, 0x74, 0x0f, 0x87, 0x94, 0xe4, 0x04, 0x7b, 0xe2, + 0xd4, 0x7b, 0xaf, 0xba, 0x5e, 0xbd, 0xef, 0x57, 0x55, 0x04, 0x18, 0x24, 0xf1, 0x60, 0x23, 0x4e, + 0x22, 0x1e, 0x91, 0xca, 0xc0, 0x71, 0xcf, 0xc6, 0xf1, 0x72, 0xeb, 0xec, 0x3c, 0x89, 0x5d, 0x0d, + 0x5e, 0x6e, 0xd1, 0x24, 0x89, 0x52, 0xaa, 0xe5, 0xe6, 0x88, 0x72, 0x27, 0x1d, 0x11, 0x1a, 0xba, + 0xc9, 0x45, 0xcc, 0xfd, 0x28, 0x4c, 0x61, 0x8b, 0x27, 0xd1, 0x49, 0x84, 0x3f, 0xbf, 0x27, 0x7e, + 0x29, 0x68, 0x27, 0x19, 0x33, 0x8e, 0x3f, 0x25, 0xc0, 0xfc, 0x6b, 0x03, 0xde, 0x3a, 0x4a, 0x68, + 0xec, 0x24, 0xb4, 0x1f, 0x3a, 0x31, 0x3b, 0x8d, 0xf8, 0x36, 0x32, 0x60, 0xd1, 0x9f, 0x8c, 0x29, + 0xe3, 0xe4, 0x21, 0x14, 0xf8, 0x45, 0xcf, 0x58, 0x35, 0xd6, 0xda, 0x9b, 0x6b, 0x1b, 0x92, 0xb9, + 0x8d, 0xeb, 0x66, 0x1c, 0x5f, 0xc4, 0xd4, 0x2a, 0xf0, 0x0b, 0xb2, 0x06, 0xd5, 0x84, 0x9e, 0xf8, + 0x51, 0xc8, 0x7a, 0x85, 0xd5, 0xe2, 0x5a, 0x63, 0xb3, 0xbd, 0xa1, 0xb8, 0xb6, 0x10, 0x6c, 0x69, + 0x34, 0x59, 0x83, 0x6e, 0x40, 0x1d, 0x46, 0x6d, 0x3f, 0xb4, 0x19, 0x75, 0xa3, 0xd0, 0x63, 0xbd, + 0xe2, 0xaa, 0xb1, 0x56, 0xb2, 0xda, 0x08, 0x3f, 0x08, 0xfb, 0x12, 0x6a, 0xfe, 0xbb, 0x01, 0xb7, + 0xae, 0x58, 0x9c, 0xc5, 0x51, 0xc8, 0x28, 0x79, 0x90, 0xe1, 0xf7, 0xee, 0xb5, 0xfc, 0xee, 0x9d, + 0xd3, 0x70, 0xc2, 0xed, 0x5d, 0xa8, 0x48, 0x76, 0x7a, 0x85, 0x55, 0x63, 0x06, 0xb3, 0x0a, 0x4b, + 0xde, 0x81, 0x32, 0xaa, 0x02, 0x19, 0x14, 0x64, 0x5a, 0x31, 0x7b, 0xe2, 0xaf, 0x25, 0x91, 0xe4, + 0x1e, 0x2c, 0x04, 0x0e, 0xe3, 0xb6, 0xda, 0x16, 0xb3, 0xcf, 0x9d, 0xc0, 0xf7, 0x7a, 0xa5, 0x55, + 0x63, 0xad, 0x66, 0x75, 0x05, 0xea, 0x09, 0x6e, 0x8c, 0x7d, 0x2e, 0xe0, 0xe6, 0x7f, 0x55, 0x01, + 0x24, 0x53, 0x87, 0x94, 0x3b, 0xe4, 0x16, 0x80, 0x1b, 0x8c, 0x19, 0xa7, 0x89, 0xed, 0x7b, 0xb8, + 0x97, 0x92, 0x55, 0x57, 0x90, 0x03, 0x8f, 0x7c, 0x07, 0x3a, 0x1a, 0x7d, 0x4e, 0x13, 0xa6, 0x79, + 0xae, 0x5b, 0x6d, 0x05, 0xfe, 0x5c, 0x42, 0xc5, 0x77, 0x06, 0x13, 0x9a, 0x06, 0xd2, 0xd4, 0x07, + 0x29, 0xba, 0x07, 0x55, 0x8d, 0x6b, 0xae, 0x1a, 0x6b, 0x65, 0x4b, 0x0f, 0x89, 0x09, 0xe5, 0xa1, + 0x1f, 0x50, 0xd6, 0x2b, 0xa1, 0xe2, 0x9a, 0x5a, 0x8e, 0x8f, 0xfc, 0x80, 0x5a, 0x12, 0x45, 0xbe, + 0x07, 0x20, 0x7e, 0xd8, 0x7e, 0xe8, 0xd1, 0x17, 0xbd, 0x16, 0x4a, 0xa3, 0xab, 0x09, 0xc5, 0x36, + 0x90, 0xb8, 0x2e, 0x68, 0x0e, 0x04, 0x09, 0xb9, 0x03, 0x2d, 0xc6, 0x9d, 0x84, 0xa7, 0x0c, 0x95, + 0x71, 0x63, 0x4d, 0x04, 0x6a, 0x9e, 0x6e, 0x43, 0x83, 0x86, 0x5e, 0x4a, 0x52, 0x41, 0x12, 0xa0, + 0xa1, 0xa7, 0x09, 0xd6, 0xa0, 0xca, 0xdc, 0x53, 0x3a, 0x72, 0x58, 0xaf, 0xaa, 0xac, 0x4a, 0xad, + 0xd9, 0x47, 0xb0, 0xa5, 0xd1, 0xe4, 0x3e, 0x34, 0xe5, 0x4f, 0xc5, 0x62, 0xfb, 0x0a, 0x16, 0x1b, + 0x92, 0x4a, 0x32, 0xb9, 0x0c, 0x75, 0x9f, 0xd9, 0x89, 0xf3, 0xdc, 0x3e, 0x3b, 0xef, 0xd5, 0x50, + 0x5d, 0x55, 0x9f, 0x59, 0xce, 0xf3, 0xc7, 0xe7, 0x62, 0xc7, 0x02, 0x91, 0x38, 0xe1, 0x09, 0x65, + 0xbd, 0x3a, 0xae, 0x9e, 0x7e, 0xce, 0x72, 0x9e, 0x5b, 0x02, 0x61, 0xd5, 0x13, 0xf5, 0x8b, 0x91, + 0x87, 0xd0, 0x49, 0x27, 0x28, 0x26, 0x3a, 0x57, 0x30, 0xd1, 0xd2, 0xb3, 0x24, 0x1b, 0x04, 0x4a, + 0x9e, 0x17, 0xb0, 0x1e, 0xac, 0x1a, 0x6b, 0x4d, 0x0b, 0x7f, 0x93, 0x0f, 0xa0, 0xe1, 0x79, 0x81, + 0xfc, 0x0e, 0x65, 0xbd, 0xee, 0x15, 0x5f, 0x02, 0xcf, 0x0b, 0x0e, 0x24, 0x8d, 0x10, 0xb9, 0x44, + 0xdb, 0x09, 0x65, 0xe3, 0x80, 0xf7, 0xe6, 0xd1, 0x06, 0x9a, 0x03, 0xed, 0x33, 0xe3, 0x80, 0x93, + 0x0f, 0xa1, 0xe1, 0xc4, 0x7e, 0x2a, 0x72, 0x82, 0xae, 0xb3, 0xb0, 0xa1, 0xe3, 0xcf, 0xd6, 0xd1, + 0x81, 0x92, 0xbd, 0x05, 0x4e, 0xec, 0x6b, 0x3d, 0xdc, 0x87, 0x5a, 0x1c, 0x05, 0xbe, 0xeb, 0x53, + 0xd6, 0x5b, 0x40, 0x51, 0xdc, 0x4c, 0xbd, 0x2d, 0x70, 0x5c, 0x3a, 0xa2, 0x21, 0x3f, 0x12, 0x04, + 0x17, 0x56, 0x4a, 0x48, 0x3e, 0x84, 0x1b, 0x21, 0x7d, 0x6e, 0xbb, 0x51, 0x10, 0x38, 0x22, 0x5a, + 0x31, 0x9b, 0x86, 0xce, 0x20, 0xa0, 0x5e, 0x6f, 0x11, 0x19, 0x5b, 0x0c, 0xe9, 0xf3, 0x9d, 0x14, + 0xb9, 0x27, 0x71, 0x4a, 0x27, 0xfc, 0x45, 0x28, 0x74, 0xb2, 0xa4, 0x75, 0x72, 0xfc, 0x22, 0x7c, + 0x7c, 0x4e, 0xd6, 0xa1, 0xea, 0x0d, 0xec, 0x91, 0x13, 0xb3, 0xde, 0x0d, 0xe4, 0x62, 0x3e, 0xe5, + 0xc2, 0xe7, 0xc9, 0xee, 0xf6, 0xa1, 0x13, 0x5b, 0x15, 0x6f, 0x70, 0xe8, 0xc4, 0x8c, 0xdc, 0x85, + 0xd2, 0x28, 0xf2, 0x68, 0xef, 0x26, 0xee, 0x90, 0x68, 0x42, 0xe5, 0x78, 0x91, 0x47, 0x2d, 0xc4, + 0x93, 0xf7, 0xa0, 0xa2, 0x74, 0xdc, 0xc3, 0x4f, 0x2e, 0xe4, 0x29, 0xa5, 0x9a, 0x15, 0x89, 0x30, + 0x58, 0x25, 0x62, 0xe6, 0x7f, 0x49, 0x7b, 0x6f, 0x48, 0x83, 0x95, 0xa0, 0xbe, 0xff, 0x25, 0xfd, + 0xb4, 0x54, 0x2b, 0x76, 0x4b, 0x56, 0x29, 0x76, 0xf8, 0xa9, 0x79, 0x02, 0x8d, 0xcc, 0x37, 0xc8, + 0x9b, 0x50, 0x97, 0x1e, 0x71, 0x46, 0x65, 0xc8, 0x6a, 0x5a, 0x35, 0x04, 0x3c, 0xa6, 0x17, 0xe4, + 0x26, 0x54, 0x85, 0x27, 0x08, 0x54, 0x01, 0x51, 0x15, 0x1a, 0x7a, 0x02, 0x91, 0x3a, 0x67, 0xf1, + 0x4a, 0xe7, 0x34, 0xff, 0xc4, 0x80, 0xfa, 0xb1, 0x90, 0x1e, 0xc6, 0x93, 0xdb, 0xd0, 0x88, 0x4f, + 0x2f, 0x98, 0xef, 0x3a, 0x81, 0x0e, 0x28, 0x45, 0x0b, 0x34, 0xe8, 0x40, 0x48, 0xb8, 0xe6, 0x26, + 0xee, 0x83, 0x0f, 0x5f, 0x44, 0x09, 0x2e, 0x56, 0xb2, 0xd2, 0xb1, 0x60, 0x92, 0x47, 0xdc, 0x09, + 0xec, 0xb3, 0x73, 0x1d, 0x95, 0x6b, 0x08, 0x78, 0x7c, 0x8e, 0xbb, 0x97, 0xc8, 0xc1, 0x05, 0xc7, + 0x70, 0x81, 0xbb, 0x47, 0xd0, 0xb6, 0x80, 0x98, 0xbf, 0x2e, 0x40, 0x49, 0x30, 0x26, 0x2c, 0x3a, + 0x74, 0x46, 0x14, 0x17, 0xaf, 0x5b, 0xf8, 0x9b, 0xdc, 0x80, 0x0a, 0x3b, 0x75, 0x36, 0xbf, 0xff, + 0x40, 0xef, 0x50, 0x8e, 0xf2, 0x72, 0x29, 0x5e, 0x2d, 0x97, 0x52, 0x4e, 0x2e, 0xff, 0x3f, 0xf1, + 0x25, 0x2b, 0x8a, 0xea, 0x75, 0xa2, 0xa8, 0x5d, 0x2f, 0x8a, 0xfa, 0xb4, 0x28, 0xc8, 0x26, 0x34, + 0xb8, 0x50, 0x89, 0x2d, 0x12, 0x0b, 0xeb, 0xb5, 0xf2, 0xe6, 0x9a, 0x6a, 0xcb, 0x02, 0xae, 0x7f, + 0x32, 0xd2, 0x86, 0x82, 0x3b, 0xc4, 0x28, 0x50, 0xb7, 0x0a, 0xee, 0x50, 0x48, 0x11, 0xcd, 0xac, + 0x81, 0x5f, 0xc7, 0xdf, 0x82, 0x2b, 0xd7, 0x8f, 0x4f, 0x45, 0xb2, 0x38, 0xc7, 0x40, 0xde, 0xb4, + 0x6a, 0x12, 0x70, 0x70, 0x6e, 0xfe, 0xb4, 0x00, 0x35, 0x1d, 0x1a, 0xc8, 0x7b, 0x00, 0x62, 0x6d, + 0x5b, 0x9a, 0x8f, 0x31, 0xc3, 0x7c, 0xea, 0x23, 0x45, 0xcb, 0x04, 0xb1, 0xe7, 0xa4, 0xc4, 0x85, + 0x59, 0xc4, 0x02, 0x2f, 0x89, 0x33, 0x51, 0xb9, 0x78, 0x7d, 0x54, 0xce, 0x07, 0xd1, 0xd2, 0xab, + 0x04, 0xd1, 0x34, 0x86, 0xc9, 0x39, 0x95, 0xab, 0x9d, 0x52, 0x07, 0x36, 0x39, 0x53, 0x07, 0xd1, + 0xf2, 0x6a, 0x51, 0x07, 0x51, 0xf3, 0x5d, 0xe8, 0x4c, 0x85, 0x27, 0x41, 0xe6, 0x87, 0xc3, 0x48, + 0x39, 0x20, 0xfe, 0x36, 0x9f, 0x00, 0xf4, 0xb9, 0xc3, 0xd9, 0x76, 0x10, 0xb9, 0x67, 0x2f, 0xf7, + 0x9f, 0x5b, 0x00, 0x3f, 0x66, 0x51, 0x68, 0xa3, 0xe6, 0x94, 0x31, 0xd7, 0x05, 0x04, 0xb5, 0x6a, + 0xfe, 0x00, 0xea, 0xf8, 0x35, 0x54, 0xc2, 0x3a, 0x54, 0x06, 0xe2, 0xab, 0x5a, 0x01, 0x69, 0x1c, + 0x9a, 0x2c, 0x68, 0x29, 0x0a, 0xf3, 0x6f, 0x0d, 0x68, 0xa7, 0x33, 0xd3, 0xcc, 0xf0, 0xca, 0x7e, + 0xf4, 0x06, 0xd4, 0x84, 0x85, 0xd8, 0x34, 0x74, 0x95, 0xe7, 0x56, 0xc5, 0x78, 0x2f, 0x74, 0x53, + 0x54, 0x94, 0xf8, 0xca, 0x6b, 0x11, 0xf5, 0x2c, 0xf1, 0xf3, 0xf6, 0x54, 0xce, 0xdb, 0x93, 0x10, + 0x85, 0x1f, 0x06, 0x7e, 0x48, 0x6d, 0xa1, 0x7c, 0xf4, 0x9f, 0xa6, 0x05, 0x12, 0xb4, 0xeb, 0x70, + 0xc7, 0xfc, 0xe3, 0x02, 0x54, 0xa4, 0xce, 0x85, 0xf1, 0x7a, 0x03, 0x25, 0xd6, 0x82, 0x37, 0x20, + 0x8b, 0x50, 0xce, 0x0a, 0x48, 0x0e, 0x72, 0x0e, 0x57, 0xbc, 0xce, 0xe1, 0x4a, 0xd7, 0x3b, 0x5c, + 0xf9, 0x92, 0xc3, 0xfd, 0x16, 0x74, 0xb9, 0x3f, 0x0c, 0x1c, 0x76, 0x6a, 0x27, 0x34, 0x0e, 0x7c, + 0xd7, 0x61, 0xc8, 0x70, 0xcb, 0xea, 0x28, 0xb8, 0xa5, 0xc0, 0x82, 0x35, 0x26, 0xe4, 0x8c, 0x2e, + 0xdf, 0xb4, 0xe4, 0x80, 0xfc, 0x00, 0x1a, 0xf8, 0x43, 0xe5, 0xee, 0x1a, 0xea, 0xeb, 0x46, 0x4e, + 0x5f, 0xa9, 0x62, 0x2c, 0x40, 0x52, 0xfc, 0x6d, 0x1e, 0x42, 0xf9, 0x60, 0xf7, 0xd0, 0x89, 0x05, + 0x8f, 0xe3, 0x98, 0xf1, 0x84, 0x3a, 0xa3, 0x8c, 0xe5, 0x68, 0xd0, 0x81, 0x27, 0x82, 0x96, 0x17, + 0x3d, 0x0f, 0x27, 0x24, 0x05, 0x24, 0x69, 0x4e, 0x80, 0x07, 0x9e, 0xf9, 0x1c, 0x9a, 0x22, 0x9b, + 0xc9, 0x10, 0xe1, 0xc4, 0x33, 0x6d, 0xe0, 0x1d, 0xa8, 0xf8, 0x9e, 0x48, 0x84, 0xaa, 0x7e, 0x6d, + 0x69, 0x36, 0x91, 0x11, 0xab, 0xec, 0x7b, 0x62, 0xe6, 0x3d, 0x80, 0xd8, 0x49, 0xb8, 0x8f, 0xf9, + 0x55, 0xb9, 0xea, 0x14, 0x65, 0x86, 0xc0, 0x64, 0x50, 0x4f, 0xd3, 0xe8, 0xff, 0x61, 0xd5, 0xef, + 0x42, 0x05, 0x75, 0xad, 0x57, 0x5c, 0xcc, 0xe6, 0x68, 0xbd, 0x2b, 0x4b, 0xd1, 0x98, 0x47, 0x50, + 0xd3, 0x71, 0xe0, 0x5b, 0x66, 0x48, 0x19, 0x35, 0x8b, 0x3a, 0x6a, 0x9a, 0xbb, 0xd0, 0xde, 0x51, + 0xd5, 0xf3, 0x2e, 0x96, 0xe9, 0xa2, 0xf4, 0x75, 0xc7, 0x49, 0x42, 0x43, 0xae, 0xca, 0x6b, 0x3d, + 0x14, 0x98, 0x44, 0x36, 0x32, 0x2a, 0x13, 0xea, 0xa1, 0xf9, 0x2f, 0x06, 0x94, 0xe5, 0xec, 0x2e, + 0x14, 0x47, 0xec, 0x44, 0x09, 0x42, 0xfc, 0x24, 0xdb, 0xd0, 0x9d, 0x54, 0xec, 0x76, 0xb6, 0x41, + 0x48, 0xcd, 0x25, 0xcf, 0xc1, 0xfe, 0x5c, 0x5a, 0xad, 0x1f, 0x78, 0xf2, 0xab, 0x1b, 0x50, 0x3b, + 0x3b, 0x57, 0x73, 0x4b, 0x38, 0x77, 0x3e, 0x2d, 0xc2, 0x1e, 0xd3, 0x0b, 0x3d, 0xad, 0x7a, 0x76, + 0x2e, 0xe9, 0xef, 0x43, 0x53, 0xf6, 0x24, 0x6a, 0x4e, 0x79, 0x56, 0x43, 0xb2, 0x3f, 0x67, 0x35, + 0x24, 0x15, 0x0e, 0xb7, 0x6b, 0x50, 0xf1, 0x28, 0x77, 0xfc, 0xc0, 0xfc, 0x3b, 0x03, 0x56, 0xfa, + 0x68, 0x61, 0x32, 0x82, 0x1e, 0x3b, 0xec, 0xac, 0x4f, 0xdd, 0x71, 0xe2, 0xf3, 0x8b, 0x9d, 0x28, + 0x1c, 0xfa, 0x62, 0x57, 0x24, 0x0e, 0x1c, 0x3f, 0xe4, 0xf4, 0x05, 0x47, 0x7f, 0x4f, 0xd5, 0x90, + 0x09, 0x5b, 0x3b, 0x32, 0x34, 0x84, 0xc3, 0x68, 0x7f, 0xce, 0xea, 0xa6, 0xf4, 0x22, 0x18, 0x08, + 0x5d, 0xec, 0xc1, 0xfc, 0xc8, 0x41, 0xc1, 0x9c, 0xd1, 0x0b, 0xdb, 0xc5, 0x0f, 0x2b, 0x63, 0x49, + 0x0b, 0xc6, 0x43, 0x24, 0x78, 0x4c, 0xd5, 0xba, 0xfb, 0x73, 0x56, 0x67, 0x94, 0x07, 0x6d, 0x37, + 0x01, 0x26, 0x4d, 0xae, 0x19, 0x00, 0x4c, 0x96, 0x25, 0x1f, 0x43, 0x43, 0x05, 0x2c, 0x7e, 0x11, + 0x53, 0xd5, 0xfb, 0xad, 0x6c, 0xe4, 0x9a, 0xe2, 0xbd, 0x74, 0x70, 0x48, 0xf9, 0x69, 0xe4, 0x59, + 0x20, 0xa7, 0x88, 0xfe, 0x0f, 0xfb, 0x2d, 0xf9, 0x81, 0x89, 0x2d, 0xa9, 0x18, 0xf8, 0x98, 0x5e, + 0x98, 0x7f, 0x6e, 0x40, 0x67, 0x8a, 0x45, 0xf2, 0x09, 0x74, 0x26, 0xdf, 0x7f, 0x9d, 0x75, 0xdb, + 0x13, 0x34, 0xae, 0xfd, 0x10, 0x1a, 0x13, 0xf9, 0xe8, 0x3c, 0x7b, 0x33, 0xff, 0x91, 0x74, 0x71, + 0x0b, 0x52, 0xb9, 0x30, 0x73, 0x07, 0x3a, 0xfd, 0x28, 0xe1, 0xd4, 0xeb, 0x8f, 0x07, 0x2a, 0xe3, + 0xbd, 0x0f, 0xc0, 0xc6, 0x03, 0x9d, 0x28, 0x0d, 0x55, 0x61, 0x64, 0x8c, 0x48, 0x65, 0x57, 0xa6, + 0x67, 0x98, 0xff, 0x51, 0x81, 0x56, 0xbe, 0xe1, 0x7f, 0x49, 0xf3, 0x99, 0xf3, 0xc8, 0xc2, 0xd5, + 0x1e, 0x59, 0xbc, 0xbe, 0x36, 0x2b, 0xbd, 0xbc, 0x36, 0x2b, 0x5f, 0xaa, 0xcd, 0x6e, 0x89, 0xda, + 0x81, 0x53, 0x3b, 0xf0, 0x47, 0x3e, 0x57, 0xd5, 0x59, 0x5d, 0x40, 0x9e, 0x08, 0x00, 0x59, 0x85, + 0x86, 0x1b, 0x85, 0xd2, 0x91, 0xdd, 0x0b, 0x2c, 0xd0, 0x5a, 0x56, 0x16, 0x44, 0x3e, 0x86, 0x0e, + 0xe3, 0x51, 0xe2, 0x9c, 0x50, 0x5b, 0x98, 0x1e, 0x0d, 0x3d, 0xac, 0xd3, 0x72, 0x41, 0x1d, 0xd1, + 0xdb, 0x12, 0x6b, 0xb5, 0x59, 0x6e, 0x9c, 0x6f, 0x0f, 0x21, 0xdf, 0x1e, 0xca, 0xa8, 0xd3, 0x48, + 0x6b, 0x35, 0x11, 0x13, 0xa2, 0x51, 0x9c, 0x50, 0xc6, 0x52, 0x1b, 0x69, 0xa2, 0x8d, 0xa4, 0x86, + 0xbf, 0x33, 0xc1, 0xe3, 0x41, 0x44, 0xc7, 0xcd, 0x03, 0xc8, 0x7b, 0x30, 0x9f, 0xfd, 0x46, 0x40, + 0xcf, 0x69, 0x80, 0xbd, 0x76, 0xd9, 0xca, 0x7e, 0xfc, 0x89, 0x80, 0x93, 0xfb, 0xa9, 0x1f, 0x60, + 0x3d, 0xd3, 0xbe, 0xca, 0x4f, 0xb5, 0xed, 0xa3, 0xf3, 0x7c, 0x04, 0x1d, 0x8f, 0x71, 0x3b, 0xdb, + 0x01, 0x76, 0xae, 0xee, 0x00, 0x5b, 0x1e, 0xe3, 0x5b, 0x93, 0x26, 0x30, 0x6f, 0x6f, 0xdd, 0x97, + 0xdb, 0x1b, 0x39, 0x82, 0x1e, 0x43, 0xa3, 0xb5, 0x27, 0x13, 0xed, 0x93, 0x24, 0x1a, 0xc7, 0xac, + 0xb7, 0x94, 0x6f, 0x23, 0xa7, 0x8c, 0xdb, 0x5a, 0x62, 0x79, 0xc0, 0x27, 0x38, 0x8b, 0xbc, 0x2d, + 0xc2, 0x20, 0xa6, 0x71, 0x3b, 0xa1, 0x8e, 0x87, 0x2d, 0x6e, 0x4d, 0x04, 0x3d, 0x84, 0x59, 0xd4, + 0xf1, 0xd2, 0xc6, 0x8f, 0xbc, 0xa4, 0xf1, 0x7b, 0x13, 0xea, 0xe3, 0xd0, 0xff, 0xc9, 0x98, 0x0a, + 0xcb, 0x5f, 0x40, 0x45, 0xd6, 0x24, 0xe0, 0xc0, 0x13, 0x9d, 0xa6, 0x1b, 0x61, 0x68, 0xc3, 0x66, + 0x55, 0x54, 0xad, 0x7a, 0xa3, 0x3b, 0x12, 0x6e, 0x69, 0x82, 0x4f, 0x4b, 0xb5, 0x4a, 0xb7, 0xaa, + 0x7a, 0xbe, 0xff, 0x2e, 0xc0, 0xe2, 0x74, 0x9c, 0x45, 0xc9, 0xbf, 0x0f, 0x55, 0x65, 0x5d, 0x2a, + 0xa4, 0x5e, 0x65, 0x84, 0x9a, 0x0c, 0x8b, 0x36, 0xf4, 0x22, 0xce, 0x74, 0x72, 0xc2, 0xf1, 0x31, + 0x23, 0x4b, 0x20, 0x5c, 0x4d, 0x20, 0x64, 0x0d, 0x55, 0xa6, 0xa1, 0x77, 0xcc, 0xd2, 0x9c, 0x5d, + 0xca, 0xe4, 0xec, 0xb7, 0xa1, 0x29, 0xfb, 0x90, 0xa1, 0x1f, 0x70, 0x9a, 0x60, 0x79, 0x5c, 0xb7, + 0x64, 0x6f, 0xf2, 0x08, 0x41, 0x33, 0x4d, 0xb7, 0xf2, 0x9a, 0xa6, 0xfb, 0x0c, 0x3a, 0x4c, 0xa5, + 0x13, 0x1d, 0xf6, 0xab, 0xb8, 0xcd, 0xbb, 0x93, 0x6d, 0x5e, 0x97, 0x7d, 0xac, 0x36, 0x9b, 0x1a, + 0xe3, 0x89, 0xda, 0x38, 0xf6, 0x44, 0x08, 0xe0, 0x4c, 0x77, 0xe0, 0x56, 0x45, 0x14, 0x5e, 0x63, + 0x66, 0x7e, 0x55, 0x10, 0xc5, 0x72, 0xce, 0x5d, 0x4d, 0x28, 0x85, 0x51, 0x14, 0x2b, 0xf9, 0xa6, + 0xdd, 0xcb, 0xd3, 0x28, 0x8a, 0xf7, 0xe7, 0x2c, 0xc4, 0x91, 0x77, 0xa1, 0x1c, 0x44, 0xae, 0x13, + 0x4c, 0x57, 0x30, 0x4f, 0x04, 0x70, 0x7f, 0xce, 0x92, 0x58, 0xf2, 0x16, 0x14, 0xd8, 0x7d, 0x95, + 0xd3, 0x21, 0xdd, 0xc1, 0xfd, 0xfd, 0x39, 0xab, 0xc0, 0xee, 0x93, 0xdb, 0x50, 0x3c, 0x71, 0x99, + 0x4a, 0xdb, 0x0d, 0x8d, 0xfe, 0x64, 0xa7, 0xbf, 0x3f, 0x67, 0x09, 0x0c, 0xf9, 0x08, 0x5a, 0x6e, + 0x10, 0x8d, 0x3d, 0xdb, 0xbb, 0x08, 0x9d, 0x91, 0xef, 0xaa, 0x6c, 0xbd, 0x38, 0xa9, 0x0e, 0xa2, + 0xb1, 0xb7, 0x2b, 0x71, 0xfb, 0x73, 0x56, 0xd3, 0xcd, 0x8c, 0xc5, 0x36, 0x4e, 0xbd, 0xa1, 0x2c, + 0x5e, 0x33, 0xdb, 0xd8, 0xdf, 0x7d, 0x24, 0xbe, 0x8f, 0x38, 0xb2, 0x0f, 0xc4, 0xf9, 0x72, 0x9c, + 0x50, 0x7b, 0x10, 0x44, 0x03, 0x5b, 0x1b, 0x96, 0x94, 0x78, 0x4f, 0xcf, 0xd8, 0x12, 0x14, 0xdb, + 0x41, 0x34, 0x50, 0x72, 0x12, 0x19, 0xdb, 0x99, 0x82, 0x6d, 0xd7, 0xa1, 0xaa, 0x82, 0xa3, 0x59, + 0x81, 0x92, 0x90, 0x95, 0xf9, 0x26, 0x94, 0x51, 0x1c, 0xc2, 0x9e, 0x84, 0x51, 0xeb, 0x1a, 0x10, + 0x0d, 0xfc, 0xcf, 0x4a, 0x50, 0xe8, 0xdf, 0x17, 0x75, 0x3c, 0x0d, 0xbd, 0x38, 0xf2, 0x55, 0x4d, + 0x55, 0xb7, 0xd2, 0xb1, 0x68, 0x50, 0x32, 0x87, 0xab, 0xf5, 0xf4, 0x30, 0xf5, 0x06, 0x54, 0x06, + 0x63, 0xf7, 0x8c, 0x72, 0x55, 0xac, 0xa9, 0x91, 0x80, 0xc7, 0x09, 0x1d, 0xfa, 0x2f, 0x94, 0xe1, + 0xaa, 0x91, 0x4c, 0x23, 0x32, 0x7e, 0xbb, 0x81, 0xc3, 0x64, 0xd1, 0x5f, 0x17, 0x69, 0x04, 0x81, + 0x3b, 0x02, 0x26, 0xaa, 0x33, 0xc6, 0xa4, 0xbd, 0xd6, 0x2d, 0xf1, 0x53, 0x40, 0x1c, 0x37, 0x40, + 0x61, 0xd4, 0x2d, 0xf1, 0x53, 0x64, 0x12, 0xc7, 0x75, 0x29, 0x63, 0x98, 0xab, 0x6a, 0xf2, 0x64, + 0x54, 0x42, 0x44, 0xba, 0x5a, 0x87, 0x79, 0x46, 0xdd, 0x84, 0x72, 0x3b, 0x43, 0x55, 0x47, 0xaa, + 0x8e, 0x44, 0x6c, 0xa5, 0xb4, 0x6b, 0xd0, 0x1d, 0x46, 0x89, 0x4b, 0x6d, 0x21, 0x0c, 0x9b, 0xf1, + 0x8b, 0x80, 0xaa, 0xcc, 0xd0, 0x46, 0xf8, 0x91, 0xc3, 0x4f, 0xfb, 0x02, 0x4a, 0xee, 0x40, 0x9b, + 0x31, 0x6a, 0x9f, 0x8d, 0xf0, 0x7b, 0x22, 0xc6, 0xc8, 0x64, 0xd1, 0x60, 0x8c, 0x3e, 0x1e, 0x89, + 0x8f, 0x1d, 0x78, 0xc2, 0xc7, 0x93, 0x28, 0xa0, 0xb6, 0x93, 0xc8, 0x53, 0xd9, 0xba, 0x55, 0x15, + 0xe3, 0xad, 0x44, 0xe6, 0xc7, 0x17, 0x9c, 0x26, 0xa1, 0x6c, 0x43, 0x5b, 0x88, 0x05, 0x0d, 0x3a, + 0xf0, 0xc8, 0x06, 0x2c, 0x44, 0x83, 0x1f, 0x53, 0x97, 0xdb, 0xa2, 0x7d, 0x4c, 0xcf, 0xd6, 0xda, + 0xc8, 0xcd, 0xbc, 0x44, 0x3d, 0x89, 0xdc, 0x33, 0x7d, 0xb0, 0x26, 0xc4, 0xa9, 0x5d, 0x3c, 0x3a, + 0xa3, 0x32, 0xf2, 0x0b, 0x71, 0x2a, 0x37, 0x16, 0x30, 0xa1, 0xd7, 0x38, 0x89, 0xce, 0x7d, 0x8f, + 0x26, 0x78, 0xe6, 0x58, 0xb7, 0xd2, 0xb1, 0x28, 0x96, 0xe3, 0x24, 0x1a, 0xfa, 0x01, 0x55, 0x27, + 0x8b, 0x7a, 0x68, 0xfe, 0xd2, 0x80, 0xe2, 0x27, 0x3b, 0xfd, 0x97, 0x59, 0x85, 0xd2, 0x7e, 0xe1, + 0x0a, 0xed, 0x17, 0xaf, 0xd7, 0x7e, 0x69, 0x86, 0xf6, 0xdf, 0x85, 0x76, 0x9c, 0x50, 0x8f, 0x0e, + 0xfd, 0x90, 0x7a, 0xb6, 0x50, 0xbb, 0xb4, 0x91, 0xd6, 0x04, 0xba, 0xe5, 0x06, 0xa2, 0x37, 0x74, + 0x05, 0x20, 0xe4, 0xbe, 0x13, 0x30, 0x74, 0x1a, 0x65, 0x31, 0x9d, 0x0c, 0x5c, 0xb8, 0x85, 0x39, + 0x82, 0x2e, 0xfa, 0xcd, 0xce, 0x98, 0xf1, 0x68, 0x84, 0xc5, 0x97, 0x58, 0x25, 0x53, 0xfe, 0xe9, + 0xaa, 0xb8, 0x6e, 0xb5, 0x26, 0x50, 0x41, 0xb6, 0x09, 0x4b, 0x79, 0x32, 0x3b, 0xd3, 0xa7, 0xd7, + 0xad, 0x85, 0x1c, 0x75, 0x1f, 0x51, 0x22, 0x8c, 0x75, 0xa7, 0xfd, 0xf4, 0x37, 0x2f, 0xc6, 0xb7, + 0xa1, 0xe9, 0xb8, 0x6e, 0x34, 0x0e, 0xb9, 0x8d, 0x09, 0x44, 0x0a, 0xb1, 0xa1, 0x60, 0x4f, 0x45, + 0x1e, 0xb9, 0x05, 0xc0, 0x4e, 0x9d, 0x84, 0xca, 0x7a, 0x4f, 0x0a, 0xaf, 0x2e, 0x21, 0x62, 0xef, + 0x13, 0x17, 0x63, 0xfe, 0x49, 0xde, 0xc5, 0xfa, 0xfe, 0x89, 0x50, 0x40, 0x46, 0x34, 0xcc, 0x8d, + 0x62, 0xaa, 0x3d, 0x6c, 0x02, 0xef, 0x0b, 0x30, 0xf9, 0xf8, 0x92, 0xb0, 0x61, 0x46, 0x58, 0xcb, + 0xa8, 0x67, 0x4a, 0x0d, 0xe6, 0x9f, 0x1a, 0x50, 0xd9, 0x96, 0x42, 0x79, 0xb5, 0x28, 0x55, 0xbc, + 0x22, 0x4a, 0x95, 0xae, 0x10, 0x70, 0xf9, 0x7a, 0x01, 0x57, 0x2e, 0x0b, 0x58, 0x74, 0x93, 0xcd, + 0x6c, 0xd0, 0x27, 0x77, 0xd3, 0x55, 0x0c, 0xd5, 0xc8, 0xe9, 0x32, 0x05, 0xa1, 0xe9, 0xaa, 0x77, + 0xa0, 0xa5, 0xfd, 0x4f, 0xaa, 0x46, 0x6a, 0xbd, 0xa9, 0x81, 0xa8, 0x9b, 0xef, 0x43, 0xd9, 0xe1, + 0x3c, 0xd1, 0x0d, 0xf7, 0xed, 0x59, 0x69, 0x66, 0x63, 0x4b, 0x50, 0xec, 0x85, 0x3c, 0xb9, 0xb0, + 0x24, 0xf5, 0xf2, 0x43, 0x80, 0x09, 0x50, 0x84, 0xcd, 0x89, 0x65, 0x8b, 0x9f, 0x64, 0x11, 0xca, + 0xe7, 0x4e, 0x30, 0xd6, 0x6b, 0xca, 0xc1, 0xef, 0x14, 0x1e, 0x1a, 0xe6, 0x0a, 0x94, 0x44, 0x3a, + 0x92, 0x32, 0x1c, 0x45, 0x5c, 0x1f, 0x13, 0xa8, 0x91, 0xf9, 0x8f, 0x06, 0xb4, 0xa7, 0x6e, 0xea, + 0xee, 0xe8, 0x9b, 0x34, 0x23, 0x9f, 0x78, 0x73, 0x17, 0x69, 0xdf, 0xae, 0xdd, 0x78, 0x95, 0xfb, + 0xab, 0xa9, 0x6b, 0x8f, 0xf2, 0x2b, 0x5d, 0x7b, 0x98, 0xf7, 0xa0, 0xbd, 0x13, 0x50, 0x27, 0x9c, + 0xf4, 0x4b, 0xb9, 0xa2, 0xd1, 0xc8, 0x17, 0x8d, 0xe6, 0x11, 0x74, 0x52, 0xf2, 0xd7, 0xd9, 0x76, + 0x0f, 0xaa, 0x6c, 0x8c, 0xbe, 0x82, 0x9b, 0xae, 0x59, 0x7a, 0x68, 0x3e, 0x84, 0xb6, 0xba, 0xcd, + 0xd4, 0x0c, 0xdc, 0x85, 0x0e, 0x73, 0xce, 0xa9, 0xcd, 0x23, 0x3b, 0x5b, 0x4f, 0xd6, 0xac, 0x96, + 0x00, 0x1f, 0x47, 0x2a, 0x86, 0x98, 0x7f, 0x63, 0x40, 0x27, 0x9d, 0xfa, 0x9a, 0x3a, 0x98, 0xec, + 0xb0, 0x30, 0x55, 0x16, 0x7f, 0x17, 0x88, 0x1b, 0x05, 0x81, 0x48, 0x3a, 0x78, 0x1d, 0x88, 0xf1, + 0x41, 0x15, 0xa1, 0x5d, 0x85, 0x11, 0x62, 0xdf, 0x11, 0x70, 0x91, 0x58, 0x73, 0xd4, 0x78, 0x98, + 0x2d, 0x7b, 0xc1, 0x4e, 0x86, 0xb8, 0xef, 0x7f, 0x49, 0xcd, 0x05, 0x98, 0xdf, 0x39, 0xa5, 0xee, + 0xd9, 0x96, 0x37, 0xf2, 0x43, 0xb5, 0x59, 0xf3, 0xa7, 0x06, 0x90, 0x2c, 0xf4, 0x75, 0xf6, 0xf1, + 0xaa, 0x57, 0xbc, 0xeb, 0x30, 0x7f, 0xea, 0x30, 0x3b, 0xa6, 0xa1, 0xe7, 0x87, 0x27, 0xb6, 0x23, + 0x56, 0xc2, 0x1d, 0xd5, 0xac, 0xce, 0xa9, 0xc3, 0x8e, 0x24, 0x1c, 0x19, 0x30, 0xff, 0xd9, 0x80, + 0x5b, 0x7b, 0x2a, 0x03, 0x2b, 0x41, 0x5b, 0x54, 0xa8, 0x21, 0x55, 0xcf, 0x8c, 0x9e, 0xd3, 0x78, + 0xad, 0x9e, 0xf3, 0x36, 0x34, 0x54, 0x56, 0xcf, 0xb8, 0x3b, 0x48, 0xd0, 0x53, 0x55, 0xd0, 0x27, + 0x72, 0x4d, 0x49, 0x21, 0xa3, 0x57, 0x43, 0xc1, 0x90, 0xe4, 0x5d, 0x68, 0x63, 0x6f, 0x12, 0x72, + 0x3b, 0xa0, 0xe1, 0x09, 0x3f, 0x55, 0x42, 0x6f, 0x29, 0xe8, 0x13, 0x04, 0x9a, 0xab, 0xb0, 0x72, + 0xd5, 0x66, 0xa4, 0xa0, 0xcd, 0xbf, 0x34, 0x60, 0x79, 0x8a, 0xa4, 0xef, 0x9c, 0xff, 0x06, 0x37, + 0x7b, 0x79, 0x27, 0xc5, 0x59, 0x3b, 0xb9, 0x05, 0x6f, 0xce, 0x64, 0x53, 0x6d, 0xe3, 0xe7, 0xea, + 0x5a, 0xc4, 0x73, 0xb8, 0x43, 0xd6, 0x75, 0xb4, 0x30, 0xf2, 0xa7, 0x93, 0xbb, 0xea, 0x7a, 0x03, + 0x7b, 0x66, 0x15, 0x35, 0x1e, 0x40, 0x03, 0x0d, 0x57, 0xb5, 0xac, 0xf2, 0x2e, 0x62, 0x69, 0x7a, + 0x06, 0xb6, 0xa6, 0x16, 0xde, 0x8f, 0xab, 0x2e, 0x15, 0x5b, 0x37, 0xa1, 0xa1, 0xf4, 0x88, 0x17, + 0xbb, 0x3a, 0xe1, 0x41, 0xb7, 0x41, 0xa8, 0x2a, 0x0a, 0xce, 0x69, 0xa6, 0x7f, 0x03, 0x0d, 0x92, + 0xbd, 0xdd, 0xc8, 0x79, 0x21, 0x70, 0x52, 0x69, 0xe5, 0x91, 0xf3, 0x42, 0x81, 0xfd, 0x50, 0x80, + 0xcb, 0x0a, 0xec, 0x87, 0xc7, 0x82, 0x43, 0x7c, 0x1c, 0x92, 0x06, 0xb6, 0xaa, 0x0a, 0x6c, 0x99, + 0x7b, 0x62, 0x1d, 0xd8, 0x1a, 0xa3, 0xc9, 0xc0, 0xfc, 0x57, 0x03, 0x5a, 0x39, 0xfe, 0x67, 0x15, + 0xfb, 0xe4, 0x87, 0xd0, 0x99, 0xdc, 0x0a, 0xc9, 0x73, 0x86, 0xc2, 0x35, 0x52, 0x6b, 0xa5, 0x57, + 0x44, 0xd8, 0xf2, 0x4e, 0x58, 0x2e, 0x66, 0x59, 0xbe, 0x62, 0x83, 0x77, 0xa1, 0x23, 0xa8, 0xb3, + 0xc2, 0x91, 0x3b, 0x6d, 0x49, 0xd7, 0xd7, 0xf2, 0xb9, 0x01, 0x15, 0x65, 0x0a, 0xf2, 0x3a, 0x4f, + 0x8d, 0xcc, 0x7f, 0xaa, 0x40, 0x33, 0xcb, 0x4d, 0xe6, 0x9e, 0xc4, 0xc8, 0xdd, 0x93, 0xe8, 0x8d, + 0x16, 0x32, 0x1b, 0x5d, 0x87, 0xf9, 0x70, 0x3c, 0x1a, 0xd0, 0xc4, 0x8e, 0x86, 0x36, 0x0d, 0x79, + 0xe2, 0x53, 0xc9, 0x75, 0xd1, 0xea, 0x48, 0xc4, 0xb3, 0xe1, 0x9e, 0x04, 0x67, 0xb6, 0x55, 0x9a, + 0xbd, 0xad, 0x72, 0x76, 0x5b, 0x53, 0xfa, 0xae, 0x5c, 0xd2, 0xf7, 0x9b, 0x50, 0x57, 0x07, 0xbb, + 0xbe, 0x87, 0xea, 0x2b, 0x5a, 0x35, 0x09, 0x98, 0x3e, 0x7f, 0xab, 0x5d, 0x9d, 0x10, 0xeb, 0x33, + 0x4e, 0xc4, 0x27, 0xf7, 0x88, 0xef, 0x40, 0x09, 0x9b, 0xfa, 0x06, 0x1a, 0x47, 0x37, 0x9b, 0x1f, + 0xb1, 0x9b, 0x47, 0xac, 0xf8, 0x9c, 0xcf, 0xf0, 0xba, 0x12, 0x5b, 0x91, 0x9a, 0x55, 0xf1, 0x19, + 0x5e, 0x28, 0xbf, 0x01, 0x35, 0x79, 0x84, 0xa0, 0xda, 0x90, 0xa2, 0x55, 0xc5, 0xf1, 0x81, 0x97, + 0x51, 0x46, 0x3b, 0xab, 0x0c, 0xf2, 0xdb, 0xb0, 0x2c, 0x64, 0x34, 0xa0, 0x27, 0x28, 0x29, 0xdb, + 0x0f, 0x6d, 0x8f, 0x0e, 0x9d, 0x71, 0xc0, 0x6d, 0x77, 0x88, 0x8d, 0x47, 0xc9, 0x5a, 0x1a, 0xf9, + 0xe1, 0xb6, 0x20, 0x38, 0x66, 0x07, 0xe1, 0xae, 0xc4, 0xee, 0x0c, 0x31, 0xbe, 0xe1, 0x13, 0x8a, + 0x68, 0x38, 0x64, 0x94, 0x63, 0x17, 0x52, 0xb2, 0x1a, 0x08, 0x7b, 0x86, 0xa0, 0x09, 0x89, 0x5a, + 0x7b, 0x3e, 0x43, 0x22, 0x23, 0xc2, 0xcc, 0x33, 0x0d, 0xf2, 0x9a, 0x67, 0x1a, 0xd9, 0xbb, 0xaa, + 0x85, 0xa9, 0xbb, 0xaa, 0x35, 0xe8, 0x2a, 0xad, 0x4d, 0xf4, 0xb3, 0x88, 0x4a, 0x68, 0x4b, 0x78, + 0x5f, 0x6b, 0xe9, 0x1d, 0x68, 0xeb, 0x83, 0x7b, 0xa5, 0xac, 0x25, 0xa4, 0x53, 0xc7, 0xf9, 0x7b, + 0x52, 0x65, 0x0f, 0x26, 0xc7, 0xfb, 0x71, 0xe4, 0x9e, 0xaa, 0xe7, 0x0d, 0x0b, 0xf9, 0x9c, 0xb5, + 0x27, 0x50, 0xe9, 0x09, 0xbf, 0x18, 0x10, 0x0b, 0x16, 0x31, 0x42, 0x65, 0x4a, 0x66, 0x74, 0xd3, + 0x9b, 0x18, 0x87, 0x57, 0xf3, 0x27, 0xcb, 0x42, 0xe1, 0x93, 0x23, 0x6a, 0x74, 0x59, 0x32, 0xbc, + 0x04, 0x33, 0x7f, 0x66, 0xc0, 0x7c, 0xf6, 0xb4, 0x66, 0x4f, 0xd7, 0x05, 0xa7, 0x4e, 0x1c, 0xd3, + 0xd0, 0x76, 0xf4, 0x35, 0x4a, 0x4d, 0x02, 0xb6, 0xf0, 0x18, 0x19, 0xb3, 0xae, 0xed, 0x46, 0x9e, + 0x8e, 0xe3, 0x75, 0x84, 0xec, 0x44, 0x9e, 0x48, 0xd8, 0xf2, 0x45, 0x9b, 0x3d, 0xa2, 0x8c, 0x89, + 0x92, 0x45, 0x26, 0xad, 0x26, 0x02, 0x0f, 0x25, 0x2c, 0x17, 0x34, 0xf5, 0x25, 0xa5, 0x0c, 0x9a, + 0xe6, 0x03, 0x28, 0xf5, 0x63, 0x07, 0x6b, 0x73, 0x65, 0x15, 0x92, 0x01, 0x35, 0xca, 0x98, 0x61, + 0x21, 0x17, 0x13, 0xf6, 0xa0, 0x21, 0xe6, 0xb1, 0x67, 0x43, 0xfd, 0x2a, 0xe1, 0x52, 0x88, 0x33, + 0xa1, 0xcc, 0x04, 0xc9, 0xf4, 0x9d, 0xb7, 0x98, 0x67, 0x49, 0x94, 0xf9, 0xb3, 0x22, 0xf4, 0x9e, + 0x44, 0x27, 0x58, 0xab, 0x8c, 0x07, 0xc2, 0x4c, 0x1c, 0x57, 0x1d, 0xf2, 0x3b, 0xe9, 0x25, 0xbd, + 0x91, 0xbf, 0xa4, 0x9f, 0xf8, 0xb4, 0x7a, 0x62, 0x91, 0xfa, 0xf4, 0xd4, 0x7d, 0x15, 0x59, 0x85, + 0xa6, 0x1f, 0xc6, 0x63, 0x6e, 0xe7, 0xa2, 0x22, 0x20, 0xec, 0x10, 0x63, 0xc8, 0x84, 0x22, 0x9b, + 0x01, 0x14, 0x05, 0x06, 0x9f, 0xbb, 0xd0, 0x51, 0x6c, 0xd9, 0xc3, 0x24, 0x1a, 0x4d, 0x22, 0x4d, + 0x4b, 0x81, 0x1f, 0x25, 0xd1, 0xe8, 0x18, 0xdf, 0xde, 0x69, 0xba, 0x71, 0xc8, 0xfd, 0xc0, 0x56, + 0x97, 0xa0, 0x25, 0xab, 0xad, 0xe0, 0x9f, 0x09, 0xf0, 0x31, 0x13, 0xd1, 0x40, 0xac, 0x36, 0x89, + 0x3b, 0x22, 0xe8, 0xa9, 0xa8, 0x23, 0x18, 0xcd, 0x44, 0x9d, 0x91, 0xf3, 0x42, 0x20, 0x56, 0xf1, + 0x2d, 0x1e, 0x5c, 0x11, 0x63, 0x0a, 0xfc, 0x22, 0x17, 0x48, 0x1a, 0xf9, 0x40, 0x72, 0x0f, 0xaa, + 0x2c, 0x1a, 0x27, 0x2e, 0x65, 0xbd, 0x66, 0xfe, 0xc6, 0x3f, 0xa3, 0x40, 0x4b, 0xd3, 0x98, 0xbf, + 0x30, 0x60, 0x71, 0x96, 0x46, 0xc8, 0x87, 0x50, 0xc2, 0x08, 0x66, 0x28, 0xfb, 0x4f, 0x8f, 0xf7, + 0x66, 0x6b, 0xcf, 0x42, 0x6a, 0x72, 0x0f, 0x1a, 0x8c, 0x71, 0x3b, 0x1a, 0xf3, 0x78, 0xcc, 0x67, + 0x3f, 0x7f, 0x00, 0xc6, 0xf8, 0x33, 0x89, 0x27, 0xdb, 0x30, 0xaf, 0xd4, 0x8b, 0xb9, 0xf7, 0xd4, + 0x0f, 0xb9, 0xee, 0xbd, 0xd2, 0xca, 0x47, 0x7a, 0xac, 0x58, 0x63, 0xdf, 0x0f, 0xb9, 0xd5, 0x49, + 0x72, 0x63, 0x66, 0xfe, 0x11, 0xb4, 0xf3, 0x24, 0xdf, 0xf2, 0xf6, 0x73, 0x3a, 0x70, 0xc8, 0x33, + 0xcb, 0x97, 0x06, 0x0e, 0xf3, 0x0f, 0x61, 0x69, 0x96, 0x50, 0x18, 0xd9, 0x85, 0x36, 0xcb, 0x41, + 0x54, 0xa1, 0xf4, 0xd6, 0x75, 0xb2, 0xb4, 0xa6, 0xe6, 0x98, 0xff, 0x56, 0x80, 0x79, 0x45, 0xb8, + 0x33, 0xd1, 0x0e, 0xb6, 0x0f, 0x7a, 0x94, 0x5a, 0xaa, 0xa1, 0xdb, 0x07, 0x8d, 0x51, 0xc6, 0xba, + 0x01, 0x0b, 0x19, 0xea, 0xd4, 0x5e, 0xa5, 0x3f, 0xcd, 0x4f, 0x50, 0xda, 0x64, 0xf5, 0xf1, 0x77, + 0x31, 0x73, 0xfc, 0x2d, 0x62, 0x78, 0x34, 0x1a, 0xd1, 0x90, 0xeb, 0x93, 0x8f, 0x74, 0x4c, 0xde, + 0x82, 0xba, 0x93, 0x70, 0x7f, 0xe8, 0xb8, 0x5c, 0x9f, 0x2d, 0x4e, 0x00, 0xa2, 0xf4, 0x4c, 0x07, + 0xf6, 0xa9, 0xc3, 0x74, 0xbd, 0xd1, 0x4a, 0xa1, 0xfb, 0x0e, 0x3b, 0x25, 0xdf, 0x81, 0xce, 0x09, + 0x0d, 0x69, 0xe2, 0x70, 0xea, 0xa9, 0xd7, 0x33, 0xf2, 0xe4, 0xb1, 0x9d, 0x82, 0xe5, 0xa3, 0x99, + 0x69, 0x27, 0xae, 0x5d, 0x72, 0xe2, 0xe9, 0x40, 0x50, 0x9f, 0x0e, 0x04, 0xe6, 0x3f, 0x18, 0xb2, + 0x90, 0xdd, 0xf3, 0x7c, 0x3e, 0x33, 0x9a, 0x6d, 0xc2, 0x92, 0x47, 0x03, 0xca, 0xa9, 0x9d, 0x3e, + 0x61, 0x99, 0xbc, 0xe8, 0xa9, 0x5b, 0x0b, 0x12, 0x79, 0xa4, 0x70, 0x92, 0xb1, 0xc7, 0xb0, 0xa8, + 0xe6, 0x04, 0xd1, 0x49, 0x66, 0x8a, 0x34, 0xe8, 0x37, 0xd2, 0x4a, 0x0f, 0x69, 0xb2, 0xde, 0x48, + 0xe4, 0xb4, 0x27, 0x72, 0x96, 0xfc, 0xd8, 0x1d, 0x68, 0x79, 0x94, 0xf1, 0x64, 0xec, 0x72, 0x9b, + 0xd1, 0x60, 0xa8, 0x1e, 0xc1, 0x36, 0x35, 0xb0, 0x4f, 0x83, 0xa1, 0xf9, 0x07, 0xd0, 0xb5, 0xe8, + 0xf3, 0xc4, 0xe7, 0x9c, 0xca, 0x37, 0x33, 0x07, 0xbb, 0xe4, 0x3d, 0x98, 0x77, 0x42, 0x17, 0xfb, + 0x0f, 0x5b, 0xbf, 0x98, 0x50, 0x2f, 0x28, 0xba, 0x1a, 0xf1, 0x99, 0x82, 0x0b, 0xad, 0xa6, 0x34, + 0xb2, 0xbe, 0x4e, 0xc7, 0xe6, 0xff, 0x18, 0xd0, 0x3c, 0x08, 0x4f, 0x28, 0xe3, 0xd4, 0xeb, 0xf7, + 0x8f, 0x19, 0xd9, 0x11, 0xa9, 0x5a, 0xad, 0x66, 0xab, 0x97, 0x09, 0xd2, 0xa4, 0x7b, 0x13, 0x67, + 0xcd, 0x73, 0x23, 0xdc, 0x35, 0x0b, 0x61, 0x93, 0x33, 0x86, 0xc2, 0xd5, 0x67, 0x0c, 0x3d, 0xa8, + 0x39, 0xcc, 0xf6, 0x87, 0x93, 0x8a, 0xb7, 0xe2, 0xb0, 0x83, 0xe1, 0x31, 0x13, 0xe5, 0xa5, 0x2c, + 0xa1, 0xe5, 0x99, 0x11, 0x46, 0x0c, 0x65, 0x8e, 0x1d, 0x44, 0x1c, 0x21, 0x1c, 0xc3, 0xc0, 0x32, + 0xd4, 0x86, 0x7e, 0xe8, 0xb3, 0x53, 0xea, 0xa1, 0x51, 0xd6, 0xac, 0x74, 0x9c, 0x79, 0x7e, 0x38, + 0x1e, 0xfb, 0x9e, 0x7e, 0x8f, 0x23, 0x41, 0x9f, 0x8d, 0x7d, 0xcf, 0x7c, 0x0e, 0xf3, 0x97, 0xf4, + 0xf4, 0x6d, 0xd3, 0x9e, 0xe0, 0xfa, 0xf9, 0x69, 0x24, 0xaf, 0x8e, 0x68, 0xbe, 0xff, 0xea, 0x20, + 0x42, 0x7c, 0x5d, 0x75, 0x60, 0xbf, 0x28, 0x40, 0xfd, 0xd0, 0x3f, 0x49, 0xf0, 0x2d, 0x27, 0x3e, + 0xb8, 0x48, 0xa8, 0xc3, 0xd5, 0x3b, 0x85, 0xba, 0xa5, 0x87, 0x64, 0x73, 0xf2, 0x0a, 0x59, 0x5e, + 0x31, 0xa5, 0x3a, 0x48, 0x67, 0xeb, 0x7e, 0x25, 0x7d, 0x9f, 0x7c, 0x0f, 0xea, 0xd4, 0xf3, 0xb9, + 0xad, 0x02, 0x7b, 0x71, 0xfa, 0x21, 0xac, 0xf0, 0x06, 0xab, 0x26, 0x48, 0x30, 0x21, 0xbf, 0x0d, + 0x4d, 0x9e, 0x8c, 0x43, 0x17, 0x3d, 0x92, 0x47, 0x2a, 0x5e, 0x34, 0x52, 0xd8, 0x71, 0x44, 0x3e, + 0x82, 0x46, 0x36, 0xc0, 0x4d, 0x59, 0xfa, 0xa5, 0xb8, 0x65, 0x65, 0xa9, 0x85, 0xc7, 0xa7, 0x26, + 0x9e, 0xde, 0x5b, 0x08, 0xef, 0x6a, 0x6b, 0xb0, 0xd4, 0xa6, 0x88, 0x76, 0xbe, 0x32, 0x44, 0x5b, + 0xa4, 0x17, 0x21, 0x78, 0xf9, 0x8e, 0xb9, 0x6e, 0x75, 0x35, 0xa6, 0xcf, 0xf8, 0x91, 0x80, 0xaf, + 0x3f, 0x85, 0xd5, 0x97, 0x3d, 0xb4, 0x27, 0x1d, 0x68, 0x7c, 0x86, 0x37, 0x62, 0xf8, 0x9e, 0xbc, + 0x3b, 0x47, 0x5a, 0x50, 0xff, 0x91, 0xe3, 0xf3, 0xad, 0x38, 0x0e, 0x2e, 0xba, 0x06, 0x01, 0xa8, + 0x3c, 0x42, 0x5b, 0xe9, 0x16, 0xd6, 0x3f, 0x85, 0x95, 0xeb, 0x1f, 0xc2, 0x93, 0x79, 0x68, 0xa5, + 0x93, 0x77, 0xa3, 0x50, 0x7c, 0x6f, 0x09, 0xe6, 0x33, 0x0b, 0xc8, 0x27, 0xc3, 0x5d, 0x63, 0xfd, + 0x77, 0xa1, 0x33, 0x55, 0x2d, 0x93, 0x06, 0x54, 0x3f, 0x7b, 0xfa, 0xf8, 0xe9, 0xb3, 0x1f, 0x3d, + 0xed, 0xce, 0x91, 0x2a, 0x14, 0x9f, 0x7c, 0xf1, 0xa1, 0x64, 0xa0, 0xff, 0x74, 0xeb, 0xe8, 0xe8, + 0xf7, 0xbb, 0x05, 0x52, 0x83, 0xd2, 0x17, 0xfd, 0xe3, 0xdd, 0x6e, 0x71, 0x7d, 0x35, 0x7d, 0xef, + 0x2e, 0x8a, 0xc1, 0x1a, 0x94, 0xfa, 0x3b, 0x5b, 0x62, 0x5a, 0x0d, 0x4a, 0x8f, 0x0e, 0x9e, 0xec, + 0x75, 0x8d, 0xf5, 0x5b, 0xd0, 0xc8, 0xb4, 0xaa, 0xa4, 0x02, 0x85, 0xcf, 0x3f, 0xe8, 0xce, 0xe1, + 0xdf, 0xcd, 0xae, 0xb1, 0x7e, 0x1b, 0x6a, 0xba, 0x90, 0x10, 0x4b, 0x48, 0x13, 0x97, 0xeb, 0x1e, + 0x8d, 0x05, 0x83, 0xeb, 0xd0, 0x9d, 0xb6, 0x1f, 0x31, 0xf9, 0xf0, 0x7d, 0xf9, 0x91, 0xc3, 0x0f, + 0xba, 0x06, 0xfe, 0xdd, 0xec, 0x16, 0x36, 0x7f, 0x5d, 0x80, 0x8a, 0x64, 0x87, 0x7c, 0x04, 0xea, + 0x1f, 0x30, 0xc8, 0xd2, 0xd4, 0x03, 0x43, 0x29, 0xf4, 0xe5, 0x1b, 0xd3, 0x60, 0x75, 0xa2, 0x30, + 0xf7, 0xbe, 0x41, 0x8e, 0x60, 0x01, 0xcf, 0xa6, 0xb2, 0x27, 0x44, 0xcf, 0x62, 0x92, 0x9a, 0xd1, + 0xa5, 0xe3, 0xac, 0xe5, 0xe5, 0x59, 0xa8, 0xcc, 0x17, 0x4f, 0x61, 0x69, 0xa6, 0xca, 0xc8, 0x3b, + 0xaf, 0xf2, 0xaf, 0x18, 0xcb, 0xef, 0xbe, 0x84, 0x4a, 0xae, 0xb4, 0x66, 0xbc, 0x6f, 0x90, 0x1f, + 0x42, 0x35, 0x96, 0x44, 0xe4, 0xc6, 0xd4, 0x2c, 0xfd, 0xb5, 0x9b, 0x97, 0xe0, 0x9a, 0x53, 0x31, + 0xdb, 0x95, 0xe7, 0x9c, 0x24, 0xf3, 0xe0, 0x29, 0x7b, 0x4e, 0x3a, 0x99, 0x3d, 0x75, 0x20, 0x6a, + 0xce, 0x6d, 0xfe, 0xbd, 0x01, 0x9d, 0xa9, 0xd3, 0x1a, 0xf2, 0x05, 0x54, 0xd5, 0x01, 0x16, 0x49, + 0x77, 0x71, 0xed, 0x41, 0xdb, 0xf2, 0xdd, 0x97, 0x91, 0xa5, 0xdc, 0xfe, 0x1e, 0x94, 0x98, 0x73, + 0x4e, 0x89, 0x79, 0xc5, 0x8c, 0xcc, 0x89, 0xd6, 0xf2, 0x9d, 0x6b, 0x69, 0xf4, 0x27, 0xb7, 0x37, + 0x7f, 0xf5, 0x57, 0x35, 0xe3, 0x97, 0x5f, 0xaf, 0x18, 0x5f, 0x7d, 0xbd, 0x62, 0xfc, 0xe7, 0xd7, + 0x2b, 0xc6, 0xcf, 0xbf, 0x59, 0x99, 0xfb, 0x8b, 0x6f, 0x56, 0xe6, 0xbe, 0xfa, 0x66, 0x65, 0xee, + 0x57, 0xdf, 0xac, 0xcc, 0x41, 0x37, 0x4a, 0x4e, 0x36, 0xb8, 0x7f, 0x76, 0xbe, 0x71, 0x76, 0x8e, + 0xff, 0x7b, 0x33, 0xa8, 0xe0, 0x9f, 0xfb, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x72, 0x3b, 0x3b, + 0x5c, 0xff, 0x33, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -9565,6 +9757,119 @@ func (m *MetaEdit) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *RewrittenTableID) 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 *RewrittenTableID) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RewrittenTableID) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Upstream != 0 { + i = encodeVarintBrpb(dAtA, i, uint64(m.Upstream)) + i-- + dAtA[i] = 0x10 + } + if m.AncestorUpstream != 0 { + i = encodeVarintBrpb(dAtA, i, uint64(m.AncestorUpstream)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *IngestedSSTs) 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 *IngestedSSTs) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *IngestedSSTs) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.BackupUuid) > 0 { + i -= len(m.BackupUuid) + copy(dAtA[i:], m.BackupUuid) + i = encodeVarintBrpb(dAtA, i, uint64(len(m.BackupUuid))) + i-- + dAtA[i] = 0x32 + } + if m.Finished { + i-- + if m.Finished { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x28 + } + if len(m.FilesPrefixHint) > 0 { + i -= len(m.FilesPrefixHint) + copy(dAtA[i:], m.FilesPrefixHint) + i = encodeVarintBrpb(dAtA, i, uint64(len(m.FilesPrefixHint))) + i-- + dAtA[i] = 0x22 + } + if m.AsIfTs != 0 { + i = encodeVarintBrpb(dAtA, i, uint64(m.AsIfTs)) + i-- + dAtA[i] = 0x18 + } + if len(m.Files) > 0 { + for iNdEx := len(m.Files) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Files[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintBrpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + } + if len(m.RewrittenTables) > 0 { + for iNdEx := len(m.RewrittenTables) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.RewrittenTables[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintBrpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + func (m *DeleteSpansOfFile) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -9634,6 +9939,15 @@ func (m *Migration) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.IngestedSstPaths) > 0 { + for iNdEx := len(m.IngestedSstPaths) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.IngestedSstPaths[iNdEx]) + copy(dAtA[i:], m.IngestedSstPaths[iNdEx]) + i = encodeVarintBrpb(dAtA, i, uint64(len(m.IngestedSstPaths[iNdEx]))) + i-- + dAtA[i] = 0x3a + } + } if m.Version != 0 { i = encodeVarintBrpb(dAtA, i, uint64(m.Version)) i-- @@ -11399,6 +11713,56 @@ func (m *MetaEdit) Size() (n int) { return n } +func (m *RewrittenTableID) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.AncestorUpstream != 0 { + n += 1 + sovBrpb(uint64(m.AncestorUpstream)) + } + if m.Upstream != 0 { + n += 1 + sovBrpb(uint64(m.Upstream)) + } + return n +} + +func (m *IngestedSSTs) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.RewrittenTables) > 0 { + for _, e := range m.RewrittenTables { + l = e.Size() + n += 1 + l + sovBrpb(uint64(l)) + } + } + if len(m.Files) > 0 { + for _, e := range m.Files { + l = e.Size() + n += 1 + l + sovBrpb(uint64(l)) + } + } + if m.AsIfTs != 0 { + n += 1 + sovBrpb(uint64(m.AsIfTs)) + } + l = len(m.FilesPrefixHint) + if l > 0 { + n += 1 + l + sovBrpb(uint64(l)) + } + if m.Finished { + n += 2 + } + l = len(m.BackupUuid) + if l > 0 { + n += 1 + l + sovBrpb(uint64(l)) + } + return n +} + func (m *DeleteSpansOfFile) Size() (n int) { if m == nil { return 0 @@ -11455,6 +11819,12 @@ func (m *Migration) Size() (n int) { if m.Version != 0 { n += 1 + sovBrpb(uint64(m.Version)) } + if len(m.IngestedSstPaths) > 0 { + for _, s := range m.IngestedSstPaths { + l = len(s) + n += 1 + l + sovBrpb(uint64(l)) + } + } return n } @@ -22204,7 +22574,7 @@ func (m *MetaEdit) Unmarshal(dAtA []byte) error { } return nil } -func (m *DeleteSpansOfFile) Unmarshal(dAtA []byte) error { +func (m *RewrittenTableID) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -22227,17 +22597,17 @@ func (m *DeleteSpansOfFile) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: DeleteSpansOfFile: wiretype end group for non-group") + return fmt.Errorf("proto: RewrittenTableID: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: DeleteSpansOfFile: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RewrittenTableID: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Path", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field AncestorUpstream", wireType) } - var stringLen uint64 + m.AncestorUpstream = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowBrpb @@ -22247,29 +22617,16 @@ func (m *DeleteSpansOfFile) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + m.AncestorUpstream |= int64(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthBrpb - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthBrpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Path = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Spans", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Upstream", wireType) } - var msglen int + m.Upstream = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowBrpb @@ -22279,12 +22636,336 @@ func (m *DeleteSpansOfFile) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + m.Upstream |= int64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + 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 + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *IngestedSSTs) 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: IngestedSSTs: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: IngestedSSTs: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RewrittenTables", 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.RewrittenTables = append(m.RewrittenTables, &RewrittenTableID{}) + if err := m.RewrittenTables[len(m.RewrittenTables)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Files", 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.Files = append(m.Files, &File{}) + if err := m.Files[len(m.Files)-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 AsIfTs", wireType) + } + m.AsIfTs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.AsIfTs |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field FilesPrefixHint", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + 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 ErrInvalidLengthBrpb + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthBrpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.FilesPrefixHint = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Finished", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Finished = bool(v != 0) + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field BackupUuid", 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.BackupUuid = append(m.BackupUuid[:0], dAtA[iNdEx:postIndex]...) + if m.BackupUuid == nil { + m.BackupUuid = []byte{} + } + 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 + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *DeleteSpansOfFile) 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: DeleteSpansOfFile: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: DeleteSpansOfFile: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Path", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + 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 ErrInvalidLengthBrpb + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthBrpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Path = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Spans", 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 @@ -22538,6 +23219,38 @@ func (m *Migration) Unmarshal(dAtA []byte) error { break } } + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field IngestedSstPaths", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + 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 ErrInvalidLengthBrpb + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthBrpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.IngestedSstPaths = append(m.IngestedSstPaths, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipBrpb(dAtA[iNdEx:]) diff --git a/proto/brpb.proto b/proto/brpb.proto index d3e4f77f3..182c7e426 100644 --- a/proto/brpb.proto +++ b/proto/brpb.proto @@ -898,6 +898,49 @@ message MetaEdit { bool destruct_self = 4; } +// RewrittenTableID records a sort of modification over the SSTs during restoring. +// +// When "backing up" this "restored" SST, we want to backup the original SST before any rewrite. +// But in some cases, SSTs are not restored "as is", TiKV may rewrite or truncate its +// content by the client's request. +message RewrittenTableID { + // The table ID in the backup data. + int64 ancestor_upstream = 1; + // The rewritten table ID during restoring. + int64 upstream = 2; +} + +// IngestedSSTs is created by a client that wants to put data to the cluster by `Ingest` APIs, +// these write cannot be directly recorded by log backup. The client should put a migration +// that contains the SSTs it uploaded. +message IngestedSSTs { + // The table IDs rewritten during restoring. + repeated RewrittenTableID rewritten_tables = 1; + // The SST files restored. + repeated File files = 2; + // Treating the whole batch of SSTs as an huge atomic + // write as this timestamp. + // That is, when user wants to PiTR to sometime after this, + // everything restored will present after the PiTR. + // Otherwise nothing will present. + uint64 as_if_ts = 3; + // The hint of the common prefix of the files. + // Used for speed up garbage collecting. + string files_prefix_hint = 4; + // Whether this batch have finished. + // If not, `as_if_ts` should be ignored and this should only + // be restored when there is a finished backup with the same + // `backup_uuid`. + bool finished = 5; + // When checkpoint enabled, one restoration may be separated to many + // of `IngestedSST`s. + // `IngestedSST`s sharing the same UUID should be treated as one. + // That is: + // - The `as_if_ts` should be the largest one among all finished ingested SST batches. + // - When restoring, all batches sharing the same uuid should be restored or not. + bytes backup_uuid = 6; +} + // An extended version of `SpansOfFile`, added more metadata for the // execution of delayed deletion. message DeleteSpansOfFile { @@ -914,6 +957,8 @@ enum MigrationVersion { M0 = 0; // Added `creator` and `version`. M1 = 1; + // Added `ingested_sst_paths`. + M2 = 2; } message Migration { @@ -925,5 +970,8 @@ message Migration { repeated LogFileCompaction compactions = 3; // Delete all files matches this prefix. repeated string destruct_prefix = 4; + // The ingested SSTs. + // It is mutable during restoring, hence a reference. + repeated string ingested_sst_paths = 7; } diff --git a/scripts/proto.lock b/scripts/proto.lock index 18a38a8f5..1c134a50b 100644 --- a/scripts/proto.lock +++ b/scripts/proto.lock @@ -266,6 +266,10 @@ { "name": "M1", "integer": 1 + }, + { + "name": "M2", + "integer": 2 } ] } @@ -1998,6 +2002,58 @@ } ] }, + { + "name": "RewrittenTableID", + "fields": [ + { + "id": 1, + "name": "ancestor_upstream", + "type": "int64" + }, + { + "id": 2, + "name": "upstream", + "type": "int64" + } + ] + }, + { + "name": "IngestedSSTs", + "fields": [ + { + "id": 1, + "name": "rewritten_tables", + "type": "RewrittenTableID", + "is_repeated": true + }, + { + "id": 2, + "name": "files", + "type": "File", + "is_repeated": true + }, + { + "id": 3, + "name": "as_if_ts", + "type": "uint64" + }, + { + "id": 4, + "name": "files_prefix_hint", + "type": "string" + }, + { + "id": 5, + "name": "finished", + "type": "bool" + }, + { + "id": 6, + "name": "backup_uuid", + "type": "bytes" + } + ] + }, { "name": "DeleteSpansOfFile", "fields": [ @@ -2054,6 +2110,12 @@ "name": "destruct_prefix", "type": "string", "is_repeated": true + }, + { + "id": 7, + "name": "ingested_sst_paths", + "type": "string", + "is_repeated": true } ] }