diff --git a/pkg/ccl/backupccl/restore_planning.go b/pkg/ccl/backupccl/restore_planning.go index 1033e2ceb890..597760f3dfe5 100644 --- a/pkg/ccl/backupccl/restore_planning.go +++ b/pkg/ccl/backupccl/restore_planning.go @@ -1017,15 +1017,16 @@ func rewriteDatabaseDescs(databases []*dbdesc.Mutable, descriptorRewrites DescRe // Rewrite the name-to-ID mapping for the database's child schemas. newSchemas := make(map[string]descpb.DatabaseDescriptor_SchemaInfo) - for schemaName, schemaInfo := range db.Schemas { - if schemaInfo.Dropped { - continue - } - rewrite, ok := descriptorRewrites[schemaInfo.ID] + err := db.ForEachNonDroppedSchema(func(id descpb.ID, name string) error { + rewrite, ok := descriptorRewrites[id] if !ok { return errors.Errorf("missing rewrite for schema %d", db.ID) } - newSchemas[schemaName] = descpb.DatabaseDescriptor_SchemaInfo{ID: rewrite.ID} + newSchemas[name] = descpb.DatabaseDescriptor_SchemaInfo{ID: rewrite.ID} + return nil + }) + if err != nil { + return err } db.Schemas = newSchemas } diff --git a/pkg/ccl/importccl/import_stmt.go b/pkg/ccl/importccl/import_stmt.go index 3d15c7d34652..cde30b76f3d7 100644 --- a/pkg/ccl/importccl/import_stmt.go +++ b/pkg/ccl/importccl/import_stmt.go @@ -1503,7 +1503,7 @@ func (r *importResumer) prepareSchemasForIngestion( // Update the parent database with this schema information. dbDesc.Schemas[newMutableSchemaDescriptor.Name] = - descpb.DatabaseDescriptor_SchemaInfo{ID: newMutableSchemaDescriptor.ID, Dropped: false} + descpb.DatabaseDescriptor_SchemaInfo{ID: newMutableSchemaDescriptor.ID} schemaMetadata.schemaRewrites[desc.Desc.ID] = &jobspb.RestoreDetails_DescriptorRewrite{ ID: id, @@ -2567,9 +2567,12 @@ func (r *importResumer) dropSchemas( return nil, errors.Newf("unable to resolve schema desc with ID %d", schema.Desc.ID) } - schemaDesc.DrainingNames = append(schemaDesc.DrainingNames, - descpb.NameInfo{ParentID: details.ParentID, ParentSchemaID: keys.RootNamespaceID, - Name: schemaDesc.Name}) + //lint:ignore SA1019 deprecated method call is OK + schemaDesc.AddDrainingName(descpb.NameInfo{ + ParentID: details.ParentID, + ParentSchemaID: keys.RootNamespaceID, + Name: schemaDesc.Name, + }) // Update the parent database with information about the dropped schema. if dbDesc.Schemas == nil { @@ -2583,6 +2586,7 @@ func (r *importResumer) dropSchemas( droppedSchemaIDs = append(droppedSchemaIDs, schemaDesc.GetID()) b := txn.NewBatch() + if err := descsCol.WriteDescToBatch(ctx, p.ExtendedEvalContext().Tracing.KVTracingEnabled(), schemaDesc, b); err != nil { return nil, err diff --git a/pkg/sql/alter_schema.go b/pkg/sql/alter_schema.go index a07de13ad428..c74e7e0bf585 100644 --- a/pkg/sql/alter_schema.go +++ b/pkg/sql/alter_schema.go @@ -14,6 +14,7 @@ import ( "context" "fmt" + "github.com/cockroachdb/cockroach/pkg/keys" "github.com/cockroachdb/cockroach/pkg/security" "github.com/cockroachdb/cockroach/pkg/sql/catalog" "github.com/cockroachdb/cockroach/pkg/sql/catalog/catalogkeys" @@ -206,6 +207,11 @@ func (p *planner) renameSchema( // Set the new name for the descriptor. oldName := desc.Name + desc.AddDrainingName(descpb.NameInfo{ + ParentID: desc.ParentID, + ParentSchemaID: keys.RootNamespaceID, + Name: desc.Name, + }) desc.SetName(newName) // Write a new namespace entry for the new name. @@ -244,10 +250,7 @@ func (p *planner) renameSchema( Dropped: true, } // Create an entry for the new schema name. - db.Schemas[newName] = descpb.DatabaseDescriptor_SchemaInfo{ - ID: desc.ID, - Dropped: false, - } + db.Schemas[newName] = descpb.DatabaseDescriptor_SchemaInfo{ID: desc.ID} if err := p.writeNonDropDatabaseChange( ctx, db, fmt.Sprintf("updating parent database %s for %s", db.GetName(), jobDesc), diff --git a/pkg/sql/backfill.go b/pkg/sql/backfill.go index 7d2766aa0bda..aaac2e5b1abf 100644 --- a/pkg/sql/backfill.go +++ b/pkg/sql/backfill.go @@ -1988,16 +1988,20 @@ func (sc *SchemaChanger) truncateAndBackfillColumns( func runSchemaChangesInTxn( ctx context.Context, planner *planner, tableDesc *tabledesc.Mutable, traceKV bool, ) error { - if len(tableDesc.DrainingNames) > 0 { + // TODO(postamar): remove if-block in 22.2 + //lint:ignore SA1019 removal of deprecated method call scheduled for 22.2 + if len(tableDesc.GetDrainingNames()) > 0 { // Reclaim all the old names. Leave the data and descriptor // cleanup for later. - for _, drain := range tableDesc.DrainingNames { + //lint:ignore SA1019 removal of deprecated method call scheduled for 22.2 + for _, drain := range tableDesc.GetDrainingNames() { key := catalogkeys.EncodeNameKey(planner.ExecCfg().Codec, drain) if err := planner.Txn().Del(ctx, key); err != nil { return err } } - tableDesc.DrainingNames = nil + //lint:ignore SA1019 removal of deprecated method call scheduled for 22.2 + tableDesc.SetDrainingNames(nil) } if tableDesc.Dropped() { diff --git a/pkg/sql/catalog/catalog.go b/pkg/sql/catalog/catalog.go index 5e8d7a03053d..89b544b02ed4 100644 --- a/pkg/sql/catalog/catalog.go +++ b/pkg/sql/catalog/catalog.go @@ -26,8 +26,15 @@ type MutableDescriptor interface { // descriptor should increment the version on the mutable copy from the // outset. MaybeIncrementVersion() + // SetDrainingNames sets the draining names for the descriptor. - SetDrainingNames([]descpb.NameInfo) + // + // TODO(postamar): remove SetDrainingNames method in 22.2 + SetDrainingNames([]descpb.NameInfo) // Deprecated + // AddDrainingName adds a draining name to the descriptor. + // + // TODO(postamar): remove AddDrainingName method in 22.2 + AddDrainingName(descpb.NameInfo) // Deprecated // Accessors for the original state of the descriptor prior to the mutations. OriginalName() string diff --git a/pkg/sql/catalog/dbdesc/database_desc.go b/pkg/sql/catalog/dbdesc/database_desc.go index 9c7f795fb269..8b87b23710a5 100644 --- a/pkg/sql/catalog/dbdesc/database_desc.go +++ b/pkg/sql/catalog/dbdesc/database_desc.go @@ -81,6 +81,8 @@ func (desc *immutable) DatabaseDesc() *descpb.DatabaseDescriptor { } // SetDrainingNames implements the MutableDescriptor interface. +// +// Deprecated: Do not use. func (desc *Mutable) SetDrainingNames(names []descpb.NameInfo) { desc.DrainingNames = names } @@ -181,6 +183,24 @@ func (desc *immutable) ForEachSchemaInfo( return nil } +// ForEachNonDroppedSchema iterates f over each schema id and name mapping in +// the descriptor, excluding dropped entries. +// iterutil.StopIteration is supported. +func (desc *immutable) ForEachNonDroppedSchema(f func(id descpb.ID, name string) error) error { + for name, info := range desc.Schemas { + if info.Dropped { + continue + } + if err := f(info.ID, name); err != nil { + if iterutil.Done(err) { + return nil + } + return err + } + } + return nil +} + // GetSchemaID returns the ID in the schema mapping entry for the // given name, 0 otherwise. func (desc *immutable) GetSchemaID(name string) descpb.ID { @@ -371,6 +391,8 @@ func (desc *Mutable) SetOffline(reason string) { // AddDrainingName adds a draining name to the DatabaseDescriptor's slice of // draining names. +// +// Deprecated: Do not use. func (desc *Mutable) AddDrainingName(name descpb.NameInfo) { desc.DrainingNames = append(desc.DrainingNames, name) } diff --git a/pkg/sql/catalog/dbdesc/database_test.go b/pkg/sql/catalog/dbdesc/database_test.go index fb030982c550..69f4b3ac2bdc 100644 --- a/pkg/sql/catalog/dbdesc/database_test.go +++ b/pkg/sql/catalog/dbdesc/database_test.go @@ -143,7 +143,7 @@ func TestValidateCrossDatabaseReferences(t *testing.T) { ID: 51, Name: "db1", Schemas: map[string]descpb.DatabaseDescriptor_SchemaInfo{ - "schema1": {ID: 52, Dropped: false}, + "schema1": {ID: 52}, }, }, schemaDescs: []descpb.SchemaDescriptor{ @@ -169,7 +169,7 @@ func TestValidateCrossDatabaseReferences(t *testing.T) { ID: 51, Name: "db1", Schemas: map[string]descpb.DatabaseDescriptor_SchemaInfo{ - "schema1": {ID: 500, Dropped: false}, + "schema1": {ID: 500}, }, }, }, @@ -179,7 +179,7 @@ func TestValidateCrossDatabaseReferences(t *testing.T) { ID: 51, Name: "db1", Schemas: map[string]descpb.DatabaseDescriptor_SchemaInfo{ - "schema1": {ID: 52, Dropped: false}, + "schema1": {ID: 52}, }, }, schemaDescs: []descpb.SchemaDescriptor{ diff --git a/pkg/sql/catalog/descpb/structured.pb.go b/pkg/sql/catalog/descpb/structured.pb.go index 8beda13adc97..1a2e475c6cde 100644 --- a/pkg/sql/catalog/descpb/structured.pb.go +++ b/pkg/sql/catalog/descpb/structured.pb.go @@ -2130,7 +2130,9 @@ type TableDescriptor struct { // descriptor and ensuring that there are no leases on prior // versions of the descriptor. This field is then cleared and the version // of the descriptor incremented. - DrainingNames []NameInfo `protobuf:"bytes,21,rep,name=draining_names,json=drainingNames" json:"draining_names"` + // + // TODO(postamar): remove draining_names field in 22.2 + DrainingNames []NameInfo `protobuf:"bytes,21,rep,name=draining_names,json=drainingNames" json:"draining_names"` // Deprecated: Do not use. // ID of the parent database. ParentID ID `protobuf:"varint,4,opt,name=parent_id,json=parentId,casttype=ID" json:"parent_id"` // ID of the parent schema. For backwards compatibility, 0 means the table is @@ -2315,6 +2317,7 @@ func (m *TableDescriptor) GetModificationTime() hlc.Timestamp { return hlc.Timestamp{} } +// Deprecated: Do not use. func (m *TableDescriptor) GetDrainingNames() []NameInfo { if m != nil { return m.DrainingNames @@ -3148,10 +3151,11 @@ type DatabaseDescriptor struct { Name string `protobuf:"bytes,1,opt,name=name" json:"name"` ID ID `protobuf:"varint,2,opt,name=id,casttype=ID" json:"id"` // Last modification time of the descriptor. - ModificationTime hlc.Timestamp `protobuf:"bytes,4,opt,name=modification_time,json=modificationTime" json:"modification_time"` - Version DescriptorVersion `protobuf:"varint,5,opt,name=version,casttype=DescriptorVersion" json:"version"` - DrainingNames []NameInfo `protobuf:"bytes,6,rep,name=draining_names,json=drainingNames" json:"draining_names"` - Privileges *PrivilegeDescriptor `protobuf:"bytes,3,opt,name=privileges" json:"privileges,omitempty"` + ModificationTime hlc.Timestamp `protobuf:"bytes,4,opt,name=modification_time,json=modificationTime" json:"modification_time"` + Version DescriptorVersion `protobuf:"varint,5,opt,name=version,casttype=DescriptorVersion" json:"version"` + // TODO(postamar): remove draining_names field in 22.2 + DrainingNames []NameInfo `protobuf:"bytes,6,rep,name=draining_names,json=drainingNames" json:"draining_names"` // Deprecated: Do not use. + Privileges *PrivilegeDescriptor `protobuf:"bytes,3,opt,name=privileges" json:"privileges,omitempty"` // schemas is a mapping from child schema name to ID. It is used during // name resolution to know without a KV lookup whether a database has a // child schema with a target name. Temporary schemas are not stored here. @@ -3221,6 +3225,7 @@ func (m *DatabaseDescriptor) GetVersion() DescriptorVersion { return 0 } +// Deprecated: Do not use. func (m *DatabaseDescriptor) GetDrainingNames() []NameInfo { if m != nil { return m.DrainingNames @@ -3276,7 +3281,9 @@ type DatabaseDescriptor_SchemaInfo struct { ID ID `protobuf:"varint,1,opt,name=id,casttype=ID" json:"id"` // dropped represents whether the schema is dropped or not. This field // is used in a similar way as the draining_names. - Dropped bool `protobuf:"varint,2,opt,name=dropped" json:"dropped"` + // + // TODO(postamar): remove dropped field in 22.2 + Dropped bool `protobuf:"varint,2,opt,name=dropped" json:"dropped"` // Deprecated: Do not use. } func (m *DatabaseDescriptor_SchemaInfo) Reset() { *m = DatabaseDescriptor_SchemaInfo{} } @@ -3361,7 +3368,8 @@ type TypeDescriptor struct { Version DescriptorVersion `protobuf:"varint,9,opt,name=version,casttype=DescriptorVersion" json:"version"` // Last modification time of the descriptor. ModificationTime hlc.Timestamp `protobuf:"bytes,10,opt,name=modification_time,json=modificationTime" json:"modification_time"` - DrainingNames []NameInfo `protobuf:"bytes,11,rep,name=draining_names,json=drainingNames" json:"draining_names"` + // TODO(postamar): remove draining_names field in 22.2 + DrainingNames []NameInfo `protobuf:"bytes,11,rep,name=draining_names,json=drainingNames" json:"draining_names"` // Deprecated: Do not use. // privileges contains the privileges for the type. Privileges *PrivilegeDescriptor `protobuf:"bytes,14,opt,name=privileges" json:"privileges,omitempty"` // parent_id represents the ID of the database that this type resides in. @@ -3441,6 +3449,7 @@ func (m *TypeDescriptor) GetModificationTime() hlc.Timestamp { return hlc.Timestamp{} } +// Deprecated: Do not use. func (m *TypeDescriptor) GetDrainingNames() []NameInfo { if m != nil { return m.DrainingNames @@ -3610,7 +3619,8 @@ type SchemaDescriptor struct { // Last modification time of the descriptor. ModificationTime hlc.Timestamp `protobuf:"bytes,5,opt,name=modification_time,json=modificationTime" json:"modification_time"` Version DescriptorVersion `protobuf:"varint,6,opt,name=version,casttype=DescriptorVersion" json:"version"` - DrainingNames []NameInfo `protobuf:"bytes,7,rep,name=draining_names,json=drainingNames" json:"draining_names"` + // TODO(postamar): remove draining_names field in 22.2 + DrainingNames []NameInfo `protobuf:"bytes,7,rep,name=draining_names,json=drainingNames" json:"draining_names"` // Deprecated: Do not use. // parent_id refers to the database the schema is in. ParentID ID `protobuf:"varint,1,opt,name=parent_id,json=parentId,casttype=ID" json:"parent_id"` // privileges contains the privileges for the schema. @@ -3688,6 +3698,7 @@ func (m *SchemaDescriptor) GetVersion() DescriptorVersion { return 0 } +// Deprecated: Do not use. func (m *SchemaDescriptor) GetDrainingNames() []NameInfo { if m != nil { return m.DrainingNames @@ -3885,358 +3896,358 @@ func init() { } var fileDescriptor_12dcc21c3bcc9571 = []byte{ - // 5612 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x3c, 0x4d, 0x73, 0x23, 0xc7, - 0x75, 0xc4, 0x37, 0xf0, 0xf0, 0x35, 0xec, 0xe5, 0xee, 0x42, 0xf4, 0x8a, 0xe4, 0x62, 0xb5, 0x12, - 0xb5, 0x92, 0xb8, 0x2b, 0x4a, 0xb6, 0x57, 0x92, 0xed, 0x08, 0x20, 0xc0, 0x25, 0x76, 0x49, 0x80, - 0x1a, 0x82, 0xbb, 0x92, 0x9d, 0x78, 0x3c, 0xc4, 0x34, 0xc1, 0x11, 0x07, 0x33, 0xd8, 0x99, 0xc1, - 0x72, 0xe1, 0xca, 0x21, 0xe5, 0x53, 0x4e, 0x49, 0x0e, 0xb9, 0xa5, 0x5c, 0x71, 0xa5, 0x5c, 0x89, - 0x6f, 0x2e, 0x57, 0xaa, 0x92, 0xaa, 0x1c, 0x72, 0x8d, 0x8f, 0x4e, 0xa5, 0xca, 0xe5, 0x13, 0x2b, - 0xa1, 0x2f, 0xf9, 0x01, 0x39, 0xe9, 0x92, 0x54, 0x7f, 0xcd, 0x07, 0x3e, 0x28, 0x90, 0xdc, 0xf8, - 0x20, 0x15, 0xe7, 0xf5, 0x7b, 0xaf, 0xbb, 0x5f, 0xbf, 0xef, 0x6e, 0x2c, 0xdc, 0x71, 0x9e, 0x1b, - 0xf7, 0x3b, 0xaa, 0xab, 0x1a, 0x56, 0xf7, 0xbe, 0x86, 0x9d, 0x4e, 0xff, 0xe0, 0xbe, 0xe3, 0xda, - 0x83, 0x8e, 0x3b, 0xb0, 0xb1, 0xb6, 0xd6, 0xb7, 0x2d, 0xd7, 0x42, 0xd7, 0x3b, 0x56, 0xe7, 0xd8, - 0xb6, 0xd4, 0xce, 0xd1, 0x9a, 0xf3, 0xdc, 0x20, 0xff, 0x1d, 0xa8, 0x0e, 0x5e, 0x2c, 0x0d, 0x5c, - 0xdd, 0xb8, 0x7f, 0x64, 0x74, 0xee, 0xbb, 0x7a, 0x0f, 0x3b, 0xae, 0xda, 0xeb, 0x33, 0x82, 0xc5, - 0xf2, 0x04, 0xae, 0x7d, 0x5b, 0x7f, 0xa1, 0x1b, 0xb8, 0x8b, 0x39, 0xce, 0x75, 0x82, 0xe3, 0x0e, - 0xfb, 0xd8, 0x61, 0xff, 0xe7, 0xe0, 0xd7, 0xba, 0xd8, 0xba, 0xdf, 0xc5, 0x96, 0x6e, 0x6a, 0xf8, - 0xe5, 0xfd, 0x8e, 0x65, 0x1e, 0xea, 0x5d, 0x3e, 0xb4, 0xd0, 0xb5, 0xba, 0x16, 0xfd, 0xf3, 0x3e, - 0xf9, 0x8b, 0x41, 0xcb, 0x3f, 0x49, 0xc0, 0xb5, 0x4d, 0xcb, 0xc6, 0x7a, 0xd7, 0x7c, 0x82, 0x87, - 0x32, 0x3e, 0xc4, 0x36, 0x36, 0x3b, 0x18, 0xad, 0x40, 0xc2, 0x55, 0x0f, 0x0c, 0x5c, 0x8a, 0xac, - 0x44, 0x56, 0xf3, 0x55, 0xf8, 0xf5, 0xe9, 0xf2, 0xdc, 0x57, 0xa7, 0xcb, 0xd1, 0x46, 0x4d, 0x66, - 0x03, 0xe8, 0x2e, 0x24, 0xe8, 0x2c, 0xa5, 0x28, 0xc5, 0x28, 0x72, 0x8c, 0x54, 0x83, 0x00, 0x09, - 0x1a, 0x1d, 0x45, 0x25, 0x88, 0x9b, 0x6a, 0x0f, 0x97, 0x62, 0x2b, 0x91, 0xd5, 0x4c, 0x35, 0x4e, - 0xb0, 0x64, 0x0a, 0x41, 0x4f, 0x20, 0xfd, 0x42, 0x35, 0x74, 0x4d, 0x77, 0x87, 0xa5, 0xf8, 0x4a, - 0x64, 0xb5, 0xb0, 0xfe, 0xf6, 0xda, 0x44, 0x51, 0xad, 0x6d, 0x58, 0xa6, 0xe3, 0xda, 0xaa, 0x6e, - 0xba, 0x4f, 0x39, 0x01, 0x67, 0xe4, 0x31, 0x40, 0x0f, 0x60, 0xde, 0x39, 0x52, 0x6d, 0xac, 0x29, - 0x7d, 0x1b, 0x1f, 0xea, 0x2f, 0x15, 0x03, 0x9b, 0xa5, 0xc4, 0x4a, 0x64, 0x35, 0xc1, 0x51, 0x8b, - 0x6c, 0x78, 0x97, 0x8e, 0x6e, 0x63, 0x13, 0xb5, 0x21, 0x63, 0x99, 0x8a, 0x86, 0x0d, 0xec, 0xe2, - 0x52, 0x92, 0xce, 0xff, 0xfe, 0x94, 0xf9, 0x27, 0x08, 0x68, 0xad, 0xd2, 0x71, 0x75, 0xcb, 0x14, - 0xeb, 0xb0, 0xcc, 0x1a, 0x65, 0xc4, 0xb9, 0x0e, 0xfa, 0x9a, 0xea, 0xe2, 0x52, 0xea, 0xca, 0x5c, - 0xf7, 0x29, 0x23, 0xb4, 0x0d, 0x89, 0x9e, 0xea, 0x76, 0x8e, 0x4a, 0x69, 0xca, 0xf1, 0xc1, 0x05, - 0x38, 0xee, 0x10, 0x3a, 0xce, 0x90, 0x31, 0x29, 0x3f, 0x83, 0x24, 0x9b, 0x07, 0xe5, 0x21, 0xd3, - 0x6c, 0x29, 0x95, 0x8d, 0x76, 0xa3, 0xd5, 0x94, 0xe6, 0x50, 0x0e, 0xd2, 0x72, 0x7d, 0xaf, 0x2d, - 0x37, 0x36, 0xda, 0x52, 0x84, 0x7c, 0xed, 0xd5, 0xdb, 0x4a, 0x73, 0x7f, 0x7b, 0x5b, 0x8a, 0xa2, - 0x22, 0x64, 0xc9, 0x57, 0xad, 0xbe, 0x59, 0xd9, 0xdf, 0x6e, 0x4b, 0x31, 0x94, 0x85, 0xd4, 0x46, - 0x65, 0x6f, 0xa3, 0x52, 0xab, 0x4b, 0xf1, 0xc5, 0xf8, 0x2f, 0x7e, 0xbe, 0x34, 0x57, 0x7e, 0x00, - 0x09, 0x3a, 0x1d, 0x02, 0x48, 0xee, 0x35, 0x76, 0x76, 0xb7, 0xeb, 0xd2, 0x1c, 0x4a, 0x43, 0x7c, - 0x93, 0xb0, 0x88, 0x10, 0x8a, 0xdd, 0x8a, 0xdc, 0x6e, 0x54, 0xb6, 0xa5, 0x28, 0xa3, 0xf8, 0x38, - 0xfe, 0xdf, 0x3f, 0x5b, 0x8e, 0x94, 0xff, 0x3d, 0x01, 0x0b, 0xfe, 0xda, 0xfd, 0xd3, 0x46, 0x1b, - 0x50, 0xb4, 0x6c, 0xbd, 0xab, 0x9b, 0x0a, 0xd5, 0x39, 0x45, 0xd7, 0xb8, 0x3e, 0x7e, 0x83, 0xec, - 0xe7, 0xec, 0x74, 0x39, 0xdf, 0xa2, 0xc3, 0x6d, 0x32, 0xda, 0xa8, 0x71, 0x05, 0xcd, 0x5b, 0x01, - 0xa0, 0x86, 0x9e, 0xc0, 0x3c, 0x67, 0xd2, 0xb1, 0x8c, 0x41, 0xcf, 0x54, 0x74, 0xcd, 0x29, 0x45, - 0x57, 0x62, 0xab, 0xf9, 0xea, 0xf2, 0xd9, 0xe9, 0x72, 0x91, 0xb1, 0xd8, 0xa0, 0x63, 0x8d, 0x9a, - 0xf3, 0xd5, 0xe9, 0x72, 0x5a, 0x7c, 0xc8, 0x7c, 0x7a, 0xfe, 0xad, 0x39, 0xe8, 0x19, 0x5c, 0xb7, - 0x85, 0x6c, 0xb5, 0x20, 0xc3, 0x18, 0x65, 0x78, 0xe7, 0xec, 0x74, 0xf9, 0x9a, 0x27, 0x7c, 0x6d, - 0x32, 0xd3, 0x6b, 0xf6, 0x28, 0x82, 0xe6, 0xa0, 0x16, 0x04, 0xc0, 0xfe, 0x76, 0xe3, 0x74, 0xbb, - 0xcb, 0x7c, 0xbb, 0xf3, 0x3e, 0xeb, 0xf0, 0x96, 0xe7, 0xed, 0x91, 0x01, 0xcd, 0x33, 0xbc, 0xc4, - 0xb9, 0x86, 0x97, 0xbc, 0xaa, 0xe1, 0x85, 0xcc, 0x28, 0xf5, 0xff, 0x62, 0x46, 0xe9, 0x57, 0x6e, - 0x46, 0x99, 0x57, 0x60, 0x46, 0x4c, 0x77, 0x1f, 0xc7, 0xd3, 0x20, 0x65, 0x1f, 0xc7, 0xd3, 0x59, - 0x29, 0xf7, 0x38, 0x9e, 0xce, 0x49, 0xf9, 0xc7, 0xf1, 0x74, 0x5e, 0x2a, 0x94, 0xff, 0x26, 0x0a, - 0xb7, 0xf6, 0x4d, 0xfd, 0xf9, 0x00, 0x3f, 0xd3, 0xdd, 0x23, 0x6b, 0xe0, 0x52, 0xbf, 0x18, 0xd0, - 0xed, 0x07, 0x90, 0x1e, 0x51, 0xea, 0xeb, 0xfc, 0x94, 0x53, 0xe1, 0xb3, 0x4d, 0xb9, 0xfc, 0x44, - 0x1f, 0x02, 0x8c, 0x69, 0xf0, 0x6b, 0x67, 0xa7, 0xcb, 0x99, 0xc9, 0x6a, 0x96, 0xe9, 0x78, 0xca, - 0xf5, 0x07, 0x72, 0xc2, 0x65, 0xc8, 0xf4, 0x6d, 0xac, 0xe9, 0x1d, 0x72, 0x6a, 0x41, 0xbd, 0xf3, - 0xc1, 0xdc, 0xe2, 0xff, 0x3e, 0x05, 0x12, 0x5b, 0x68, 0x0d, 0x3b, 0x1d, 0x5b, 0xef, 0xbb, 0x96, - 0xed, 0xad, 0x32, 0x32, 0xb6, 0xca, 0x37, 0x21, 0xaa, 0x6b, 0x3c, 0xd0, 0xdc, 0xe0, 0x52, 0x8a, - 0x52, 0x01, 0xf9, 0xdb, 0x8d, 0xea, 0x1a, 0x5a, 0x83, 0x38, 0x89, 0x86, 0x74, 0x9f, 0xd9, 0xf5, - 0xc5, 0xd1, 0x9d, 0xe0, 0xde, 0x1a, 0x0b, 0x96, 0x6d, 0x99, 0xe2, 0xa1, 0x15, 0x48, 0x9b, 0x03, - 0xc3, 0xa0, 0x81, 0x8e, 0xec, 0x3e, 0x2d, 0xb6, 0x24, 0xa0, 0xe8, 0x36, 0xe4, 0x34, 0x7c, 0xa8, - 0x0e, 0x0c, 0x57, 0xc1, 0x2f, 0xfb, 0x36, 0xdb, 0x95, 0x9c, 0xe5, 0xb0, 0xfa, 0xcb, 0xbe, 0x8d, - 0xde, 0x80, 0x82, 0xa7, 0xab, 0x0c, 0x09, 0x51, 0xa4, 0x9c, 0xd0, 0x3b, 0x8a, 0x75, 0x0b, 0x92, - 0x47, 0xba, 0xa6, 0x61, 0x93, 0x9a, 0x9c, 0x98, 0x88, 0xc3, 0xd0, 0x2a, 0xe4, 0x74, 0x53, 0xed, - 0x74, 0xb0, 0xe3, 0xe8, 0x64, 0x31, 0xf3, 0x01, 0x9c, 0xd0, 0x08, 0x7a, 0x0e, 0x8b, 0x5d, 0x6c, - 0x62, 0x5b, 0x75, 0xb1, 0xa6, 0xa8, 0x8e, 0xa2, 0x6b, 0xd8, 0x74, 0x75, 0x77, 0xa8, 0xd0, 0x8d, - 0x5f, 0xa3, 0x47, 0xb8, 0x36, 0xe5, 0x08, 0x1f, 0x09, 0xc2, 0x8a, 0xd3, 0xe0, 0x64, 0xed, 0x61, - 0x1f, 0xf3, 0x79, 0x6e, 0x76, 0x27, 0x0f, 0xa3, 0x5d, 0xb8, 0x3b, 0x79, 0x4a, 0x07, 0x3f, 0x1f, - 0x10, 0xeb, 0x50, 0xac, 0x3e, 0xb1, 0xb7, 0xd2, 0x02, 0xdd, 0xf7, 0xed, 0x09, 0x7c, 0xf6, 0x38, - 0x66, 0x8b, 0x22, 0xa2, 0x75, 0x98, 0x1f, 0x38, 0xd8, 0xf1, 0x19, 0x10, 0x85, 0x06, 0xaa, 0xd0, - 0x49, 0xae, 0xf5, 0x45, 0x82, 0x20, 0xc8, 0x88, 0x0e, 0xaf, 0xc3, 0xbc, 0x75, 0x62, 0x8e, 0xd0, - 0xe4, 0xc2, 0x34, 0x04, 0x21, 0x48, 0x73, 0x1b, 0x72, 0x1d, 0xab, 0xd7, 0x1f, 0x88, 0x83, 0xc9, - 0xb2, 0xd3, 0xe3, 0x30, 0x7a, 0x2e, 0x4b, 0x90, 0x7a, 0xa1, 0xdb, 0xee, 0x40, 0x35, 0x4a, 0x52, - 0x40, 0xe8, 0x02, 0x88, 0x3e, 0x05, 0xa9, 0xdf, 0x55, 0x54, 0xd7, 0xb5, 0xf5, 0x03, 0xc2, 0xc7, - 0x1c, 0xf4, 0x4a, 0xf9, 0x90, 0x22, 0x16, 0x76, 0x1f, 0x55, 0xc4, 0x70, 0x73, 0xd0, 0x93, 0x0b, - 0xfd, 0x6e, 0xf0, 0x1b, 0x6d, 0xc2, 0xeb, 0xaa, 0xe1, 0x62, 0x5b, 0x44, 0x0b, 0x72, 0x50, 0x8a, - 0x6e, 0x2a, 0x7d, 0xdb, 0xea, 0xda, 0xd8, 0x71, 0x4a, 0x85, 0xc0, 0xbc, 0xaf, 0x51, 0x54, 0xa6, - 0xd4, 0x44, 0xf8, 0x0d, 0x73, 0x97, 0xa3, 0xa1, 0x1f, 0x00, 0x72, 0x86, 0x8e, 0x8b, 0x7b, 0x82, - 0xd1, 0xb1, 0x6e, 0x6a, 0xa5, 0x22, 0x3d, 0xf1, 0xb7, 0xa6, 0x9c, 0xf8, 0x1e, 0x25, 0x60, 0xec, - 0x9e, 0xe8, 0xa6, 0xc6, 0x67, 0x91, 0x9c, 0x11, 0xb8, 0xe7, 0xcc, 0xd2, 0x52, 0xe6, 0x71, 0x3c, - 0x9d, 0x91, 0xe0, 0x71, 0x3c, 0x9d, 0x92, 0xd2, 0xe5, 0xbf, 0x88, 0xc2, 0x0d, 0x86, 0xb6, 0xa9, - 0xf6, 0x74, 0x63, 0x78, 0x55, 0x73, 0x65, 0x5c, 0xb8, 0xb9, 0xd2, 0xe3, 0xa1, 0x5b, 0x21, 0x64, - 0x2c, 0x86, 0xd2, 0xe3, 0x21, 0xb0, 0x26, 0x01, 0x8d, 0xf8, 0xbc, 0xf8, 0x05, 0x7c, 0x5e, 0x0b, - 0xe6, 0x85, 0xe5, 0x7a, 0x1c, 0xa8, 0xf9, 0xe6, 0xab, 0x77, 0xf8, 0x9a, 0x8a, 0x35, 0x86, 0x20, - 0xc8, 0xc3, 0xa1, 0x5f, 0x0b, 0x0d, 0x72, 0x11, 0x95, 0xff, 0x39, 0x0a, 0x0b, 0x0d, 0xd3, 0xc5, - 0xb6, 0x81, 0xd5, 0x17, 0x38, 0x20, 0x8e, 0xcf, 0x21, 0xa3, 0x9a, 0x1d, 0xec, 0xb8, 0x96, 0xed, - 0x94, 0x22, 0x2b, 0xb1, 0xd5, 0xec, 0xfa, 0x87, 0x53, 0x4e, 0x65, 0x12, 0xfd, 0x5a, 0x85, 0x13, - 0x0b, 0x97, 0xe9, 0x31, 0x5b, 0xfc, 0xd7, 0x08, 0xa4, 0xc5, 0xe8, 0x25, 0xc2, 0xc6, 0x37, 0x21, - 0x4d, 0x53, 0x71, 0xc5, 0x3b, 0x93, 0x45, 0x41, 0xc1, 0x73, 0xf5, 0x60, 0xda, 0x9e, 0xa2, 0xb8, - 0x0d, 0x0d, 0x6d, 0x4c, 0xca, 0xa8, 0x63, 0x94, 0xfe, 0xa6, 0x90, 0xdf, 0x5e, 0x38, 0xa7, 0x1e, - 0x4b, 0xb2, 0x99, 0xcc, 0xb8, 0xe4, 0xfe, 0x29, 0x02, 0xf3, 0x84, 0x40, 0xc3, 0x5a, 0x40, 0x6c, - 0x77, 0x00, 0x74, 0x47, 0x71, 0x18, 0x9c, 0xee, 0x48, 0x98, 0x42, 0x46, 0x77, 0x38, 0xba, 0xa7, - 0x6a, 0xd1, 0x31, 0x55, 0xfb, 0x08, 0xf2, 0x94, 0x56, 0x39, 0x18, 0x74, 0x8e, 0xb1, 0xeb, 0xd0, - 0x15, 0x26, 0xaa, 0x0b, 0x7c, 0x85, 0x39, 0xca, 0xa1, 0xca, 0xc6, 0xe4, 0x9c, 0x13, 0xf8, 0x1a, - 0xd3, 0xbe, 0xf8, 0x98, 0xf6, 0xf1, 0x85, 0xff, 0x32, 0x0e, 0x37, 0x76, 0x55, 0xdb, 0xd5, 0x89, - 0xef, 0xd2, 0xcd, 0x6e, 0x60, 0xf5, 0x77, 0x21, 0x6b, 0x0e, 0x84, 0x41, 0x3a, 0xfc, 0x40, 0xd8, - 0xfa, 0xc0, 0x1c, 0x70, 0x03, 0x73, 0xd0, 0xb7, 0x60, 0x81, 0xa0, 0xe9, 0xbd, 0xbe, 0xa1, 0x77, - 0x74, 0xd7, 0xc3, 0x8f, 0x07, 0xf0, 0x91, 0x39, 0xe8, 0x35, 0x38, 0x82, 0xa0, 0xdb, 0x86, 0xb8, - 0xa1, 0x3b, 0x2e, 0x8d, 0xf5, 0xd9, 0xf5, 0xf5, 0x29, 0xea, 0x34, 0x79, 0x6d, 0x6b, 0xdb, 0xba, - 0xe3, 0x0a, 0x59, 0x11, 0x2e, 0xa8, 0x05, 0x09, 0x5b, 0x35, 0xbb, 0x98, 0xda, 0x59, 0x76, 0xfd, - 0x83, 0x8b, 0xb1, 0x93, 0x09, 0xa9, 0xc8, 0x80, 0x28, 0x9f, 0xc5, 0x9f, 0x46, 0x20, 0x4e, 0x66, - 0x39, 0xc7, 0x15, 0xdc, 0x80, 0xe4, 0x0b, 0xd5, 0x18, 0x60, 0x96, 0xaf, 0xe4, 0x64, 0xfe, 0x85, - 0xfe, 0x04, 0x8a, 0xce, 0xe0, 0xa0, 0x1f, 0x98, 0x8a, 0x07, 0xed, 0xf7, 0x2e, 0xb4, 0x2a, 0xaf, - 0xb8, 0x0b, 0xf3, 0x62, 0x07, 0xb7, 0xf8, 0x1c, 0x12, 0x74, 0xd5, 0xe7, 0xac, 0xef, 0x2e, 0x14, - 0x0e, 0x6d, 0xab, 0xa7, 0xe8, 0x66, 0xc7, 0x18, 0x38, 0xfa, 0x0b, 0x96, 0x3b, 0xe4, 0xe4, 0x3c, - 0x81, 0x36, 0x04, 0x90, 0xe8, 0x8a, 0x6b, 0x29, 0xf8, 0xa5, 0x40, 0x8a, 0x52, 0xa4, 0xac, 0x6b, - 0xd5, 0x05, 0x28, 0xa4, 0xea, 0xff, 0x92, 0x83, 0x22, 0x35, 0xa8, 0x99, 0xdc, 0xe5, 0xdd, 0x80, - 0xbb, 0xbc, 0x1e, 0x72, 0x97, 0x9e, 0x55, 0x12, 0x6f, 0x79, 0x0b, 0x92, 0x03, 0x9a, 0x50, 0xd2, - 0x25, 0x7a, 0x19, 0x04, 0x83, 0xa1, 0x87, 0x90, 0x7a, 0x81, 0x6d, 0x87, 0x84, 0x61, 0x44, 0x39, - 0x2d, 0xf1, 0x82, 0xfc, 0xc6, 0xc8, 0x42, 0x9e, 0x32, 0x2c, 0x59, 0xa0, 0xa3, 0x55, 0x90, 0x8e, - 0xf1, 0x50, 0x99, 0x60, 0x0b, 0x85, 0x63, 0x52, 0x8d, 0xf9, 0xce, 0x58, 0x83, 0xeb, 0x01, 0x4c, - 0x4d, 0xb7, 0x31, 0xcd, 0xb3, 0x9d, 0x52, 0x7a, 0x25, 0x76, 0x4e, 0x3e, 0x3d, 0xb2, 0x80, 0xb5, - 0x9a, 0x20, 0x94, 0xaf, 0x79, 0x13, 0x78, 0x30, 0x07, 0xbd, 0x0b, 0x88, 0x78, 0x3a, 0x1c, 0x5e, - 0x51, 0x82, 0xae, 0x48, 0xa2, 0x23, 0xc1, 0x35, 0x55, 0xa1, 0x10, 0x58, 0x13, 0x09, 0x12, 0x49, - 0x1a, 0x24, 0x6e, 0x11, 0xeb, 0x7f, 0x22, 0xd8, 0x8f, 0xc6, 0x89, 0x9c, 0x37, 0x31, 0x09, 0x15, - 0xfb, 0x6c, 0x5f, 0xce, 0xe0, 0x90, 0xf8, 0xb9, 0x00, 0xab, 0x14, 0x65, 0x55, 0x3e, 0x3b, 0x5d, - 0x46, 0x4f, 0xf0, 0x70, 0x8f, 0x8e, 0x4f, 0x66, 0x88, 0x8e, 0x47, 0xc6, 0x35, 0x07, 0x6d, 0x81, - 0x14, 0xda, 0x08, 0xe1, 0x58, 0xa0, 0x1c, 0x97, 0x48, 0xda, 0xb0, 0xe7, 0x6f, 0x65, 0x94, 0x5b, - 0x21, 0xb0, 0x4d, 0xc2, 0xa9, 0x0d, 0x0b, 0x24, 0x67, 0xb1, 0x1c, 0xdd, 0x0d, 0x71, 0xcb, 0xfb, - 0xeb, 0xdb, 0x10, 0xe3, 0x53, 0xd6, 0xd7, 0x19, 0x19, 0xd7, 0x1c, 0xb4, 0x07, 0xd9, 0x43, 0x56, - 0xea, 0x28, 0xc7, 0x78, 0x48, 0x8b, 0xa2, 0xec, 0xfa, 0xbd, 0xd9, 0x8b, 0xa2, 0x6a, 0x92, 0xa8, - 0x58, 0x29, 0x22, 0xc3, 0xa1, 0x37, 0x88, 0x9e, 0x41, 0x3e, 0x50, 0xc7, 0x1e, 0x0c, 0x69, 0x5a, - 0x77, 0x39, 0xb6, 0x39, 0x9f, 0x51, 0x75, 0x88, 0x3e, 0x03, 0xd0, 0xbd, 0xb8, 0x49, 0x33, 0xb9, - 0xec, 0xfa, 0x3b, 0x17, 0x08, 0xb0, 0xc2, 0x2d, 0xfb, 0x4c, 0xd0, 0x33, 0x28, 0xf8, 0x5f, 0x74, - 0xb1, 0xb9, 0x0b, 0x2f, 0x96, 0x71, 0xcd, 0x07, 0xf8, 0x54, 0x89, 0x10, 0x72, 0x21, 0xd7, 0x56, - 0xbc, 0xbc, 0x6b, 0x0b, 0x31, 0x42, 0x75, 0x5e, 0xe0, 0x48, 0x34, 0xeb, 0x7b, 0x67, 0x46, 0x83, - 0x0b, 0x24, 0xf9, 0xac, 0xee, 0xf9, 0x00, 0x50, 0xc7, 0xc6, 0x34, 0x9f, 0xc7, 0x2f, 0x59, 0xc8, - 0x31, 0x86, 0xa1, 0xa2, 0x63, 0x9e, 0x8f, 0xd7, 0xbd, 0x61, 0xb4, 0x05, 0x79, 0x6c, 0x76, 0x2c, - 0x4d, 0x37, 0xbb, 0x7e, 0xb1, 0xc1, 0x93, 0xa9, 0xaf, 0x4e, 0x97, 0xbf, 0x31, 0x32, 0x6b, 0x9d, - 0xe3, 0x92, 0xc9, 0xe5, 0x1c, 0x0e, 0x7c, 0xa1, 0x2d, 0x48, 0x89, 0x80, 0xbf, 0x40, 0x25, 0xb3, - 0x3a, 0x2d, 0x7d, 0x1d, 0x4d, 0x17, 0x44, 0x76, 0xce, 0xc9, 0x49, 0x01, 0xa7, 0xe9, 0x0e, 0x49, - 0x74, 0xb4, 0xd2, 0xf5, 0x60, 0x01, 0x27, 0xa0, 0x68, 0x03, 0xa0, 0x8b, 0x2d, 0x85, 0xb5, 0x42, - 0x4b, 0x37, 0xe8, 0x74, 0x4b, 0x81, 0xe9, 0xba, 0xd8, 0x5a, 0x13, 0x0d, 0x53, 0x52, 0xe3, 0x1e, - 0xea, 0x5d, 0x91, 0x7f, 0x74, 0xb1, 0xc5, 0x00, 0xe1, 0xc2, 0xf6, 0xe6, 0xc4, 0xc2, 0xb6, 0xbc, - 0x04, 0x19, 0xcf, 0x89, 0xa1, 0x14, 0xc4, 0x2a, 0x7b, 0x1b, 0xac, 0xfb, 0x55, 0xab, 0xef, 0x6d, - 0x48, 0x91, 0xf2, 0x6d, 0x88, 0xd3, 0xcd, 0x67, 0x21, 0xb5, 0xd9, 0x92, 0x9f, 0x55, 0xe4, 0x1a, - 0xeb, 0xb8, 0x35, 0x9a, 0x4f, 0xeb, 0x72, 0xbb, 0x5e, 0x93, 0x44, 0xf0, 0x38, 0x8d, 0x03, 0xf2, - 0x8b, 0xed, 0xb6, 0xc5, 0x9b, 0x17, 0x5d, 0x28, 0x76, 0x3c, 0x28, 0x3b, 0x80, 0xc8, 0x4a, 0x74, - 0xb5, 0xb0, 0xfe, 0xf0, 0x6b, 0x0b, 0x76, 0xc1, 0x23, 0x08, 0xf2, 0x55, 0xa2, 0xd0, 0x09, 0x41, - 0x03, 0xc9, 0x56, 0x74, 0x24, 0x50, 0xc9, 0x90, 0xe8, 0x1c, 0xe1, 0xce, 0x31, 0x0f, 0xd5, 0xdf, - 0x9a, 0x32, 0x31, 0xcd, 0x43, 0x03, 0xea, 0xb7, 0x41, 0x68, 0xfc, 0xa9, 0x45, 0x0e, 0x41, 0x59, - 0x21, 0x39, 0xec, 0x84, 0xe2, 0xe7, 0xda, 0xf5, 0xa4, 0x26, 0xa1, 0xb0, 0xeb, 0x80, 0x0f, 0x7a, - 0x08, 0x45, 0xd3, 0x72, 0x15, 0x52, 0xc4, 0x73, 0x6f, 0x49, 0x8b, 0xee, 0x7c, 0x55, 0xe2, 0xba, - 0xea, 0xfb, 0xc5, 0xbc, 0x69, 0xb9, 0xcd, 0x81, 0x61, 0x30, 0x00, 0xfa, 0xb3, 0x08, 0x2c, 0xb3, - 0x80, 0xaa, 0x9c, 0xb0, 0xb6, 0x8d, 0xc2, 0x72, 0x67, 0x5f, 0x46, 0xb4, 0xc9, 0x35, 0x3d, 0x7b, - 0x3a, 0xaf, 0xe7, 0xc3, 0x97, 0x7a, 0x6b, 0x70, 0x0e, 0x4e, 0xb9, 0x0d, 0x85, 0xf0, 0x31, 0xa1, - 0x0c, 0x24, 0x36, 0xb6, 0xea, 0x1b, 0x4f, 0xa4, 0x39, 0x54, 0x84, 0xec, 0x66, 0x4b, 0xae, 0x37, - 0x1e, 0x35, 0x95, 0x27, 0xf5, 0x2f, 0x58, 0x93, 0xb6, 0xd9, 0xf2, 0x9a, 0xb4, 0x25, 0x58, 0xd8, - 0x6f, 0x36, 0x3e, 0xdb, 0xaf, 0x2b, 0xcf, 0x1a, 0xed, 0xad, 0xd6, 0x7e, 0x5b, 0x69, 0x34, 0x6b, - 0xf5, 0xcf, 0xa5, 0x98, 0x57, 0xdf, 0x25, 0xa4, 0x64, 0xf9, 0x3f, 0x92, 0x50, 0xd8, 0xb5, 0xf5, - 0x9e, 0x6a, 0x0f, 0x49, 0x54, 0x3b, 0x51, 0xfb, 0xe8, 0x53, 0x58, 0xb0, 0x0c, 0x92, 0xe9, 0x53, - 0xa8, 0xe2, 0xd5, 0x0b, 0xf1, 0xc9, 0xbd, 0xfd, 0x79, 0xcb, 0xd0, 0x38, 0x87, 0x06, 0x2f, 0x17, - 0x3e, 0x85, 0x05, 0x13, 0x9f, 0x8c, 0x73, 0x88, 0x4c, 0xe1, 0x60, 0xe2, 0x93, 0x11, 0x0e, 0xef, - 0x42, 0x96, 0xac, 0x81, 0x52, 0x62, 0xd1, 0xdf, 0xca, 0x06, 0x89, 0xc0, 0x32, 0xb4, 0x06, 0x1b, - 0x26, 0xd8, 0x64, 0x3e, 0x81, 0x1d, 0x9b, 0x80, 0x6d, 0xe2, 0x13, 0x81, 0xfd, 0x11, 0xdc, 0x18, - 0x5f, 0xdd, 0x58, 0x7b, 0xf4, 0xda, 0xc8, 0xa2, 0x48, 0x86, 0x81, 0xbe, 0x84, 0x05, 0xc3, 0xea, - 0xa8, 0x86, 0xee, 0x0e, 0xb9, 0x17, 0x51, 0x9c, 0x13, 0xb5, 0x4f, 0x35, 0x2a, 0x3b, 0xd5, 0xf8, - 0xc2, 0xf2, 0x5d, 0xdb, 0xe6, 0x1c, 0x98, 0x3f, 0x21, 0x20, 0x19, 0x19, 0x63, 0xb0, 0xc5, 0x7f, - 0x8c, 0x01, 0x1a, 0x47, 0x45, 0xc7, 0x70, 0x8d, 0x48, 0x66, 0x64, 0x19, 0x54, 0xb4, 0xd9, 0xf5, - 0x6f, 0xce, 0x68, 0x85, 0x61, 0xbe, 0xc2, 0xcd, 0x5b, 0x86, 0x16, 0x1e, 0x20, 0x93, 0x11, 0x51, - 0x8d, 0x4e, 0x16, 0x7d, 0x05, 0x93, 0x99, 0xf8, 0x64, 0x64, 0x32, 0x1d, 0x5e, 0x27, 0x93, 0xd9, - 0xb8, 0xab, 0x5b, 0xa6, 0x6a, 0x28, 0x07, 0x43, 0xc5, 0xb6, 0x4e, 0x02, 0x05, 0x3b, 0x2b, 0x38, - 0x57, 0xcf, 0x4e, 0x97, 0x4b, 0x4d, 0x7c, 0x22, 0x73, 0xbc, 0xea, 0x50, 0xb6, 0x4e, 0x26, 0x56, - 0xed, 0x25, 0x73, 0x32, 0x96, 0x86, 0x64, 0x78, 0xeb, 0x9c, 0xa9, 0x42, 0x4d, 0xbe, 0x38, 0xeb, - 0x63, 0x4d, 0x66, 0x55, 0xf3, 0x5b, 0x7f, 0xa1, 0x9c, 0xff, 0x97, 0x11, 0xa0, 0x49, 0xd8, 0xc0, - 0x15, 0x6d, 0x7d, 0x7a, 0x76, 0x1f, 0x42, 0x9e, 0x4c, 0xeb, 0xef, 0x28, 0x32, 0xc5, 0x13, 0x11, - 0x75, 0xf6, 0x16, 0xfb, 0x21, 0xe4, 0xc9, 0x89, 0xfb, 0x54, 0xd1, 0x69, 0x54, 0x96, 0xe1, 0x5d, - 0x22, 0xa0, 0xb7, 0x20, 0xa7, 0x9b, 0x24, 0xad, 0xe7, 0xed, 0xae, 0x60, 0xbb, 0x37, 0xcb, 0x47, - 0xfc, 0x75, 0x97, 0x7f, 0x15, 0x85, 0x9b, 0x3b, 0xaa, 0x8b, 0x6d, 0x5d, 0x35, 0xf4, 0x1f, 0x63, - 0xed, 0xa9, 0x4e, 0x36, 0x7c, 0x68, 0x63, 0xe7, 0x08, 0x7d, 0x0e, 0xf3, 0x63, 0x06, 0xc3, 0x15, - 0xee, 0xcd, 0xd9, 0xb2, 0x0e, 0x51, 0x9a, 0x8d, 0xd8, 0x14, 0xda, 0x09, 0x1b, 0x2e, 0x2b, 0x6d, - 0x2f, 0xc6, 0x33, 0x68, 0xd9, 0x0f, 0x21, 0xa1, 0x3a, 0x8a, 0x75, 0xc8, 0x63, 0xd2, 0xeb, 0x01, - 0x46, 0x03, 0x57, 0x37, 0xd6, 0x8e, 0x8c, 0xce, 0x5a, 0x5b, 0x5c, 0xb0, 0x8a, 0x68, 0xa6, 0x3a, - 0xad, 0x43, 0xf4, 0x1e, 0x14, 0x9d, 0x23, 0x6b, 0x60, 0x68, 0xca, 0x81, 0xda, 0x39, 0x3e, 0xd4, - 0x0d, 0x23, 0xd4, 0x03, 0x2e, 0xb0, 0xc1, 0x2a, 0x1f, 0xe3, 0x32, 0xfb, 0xcb, 0x14, 0x20, 0x7f, - 0x3d, 0x3b, 0x03, 0x57, 0xa5, 0xf1, 0xbe, 0x02, 0x49, 0x1e, 0x68, 0x98, 0x8c, 0xde, 0x9a, 0x1a, - 0x93, 0xc3, 0x3d, 0xef, 0xad, 0x39, 0x99, 0x13, 0xa2, 0xef, 0x05, 0xef, 0x53, 0x67, 0x96, 0xc8, - 0xd6, 0x9c, 0xb8, 0x68, 0x7d, 0x02, 0x10, 0x08, 0x52, 0x69, 0xca, 0xe4, 0xed, 0x99, 0x53, 0x83, - 0xad, 0x39, 0x39, 0x40, 0x8e, 0x5a, 0x50, 0xe8, 0x87, 0x3c, 0x18, 0xaf, 0x0e, 0xee, 0xce, 0xe4, - 0xee, 0xb6, 0xe6, 0xe4, 0x11, 0x72, 0xf4, 0x03, 0x40, 0x9d, 0x31, 0xe3, 0x28, 0xc1, 0xd7, 0xac, - 0x72, 0x94, 0x60, 0x6b, 0x4e, 0x9e, 0xc0, 0x06, 0x7d, 0x09, 0x37, 0x7b, 0x93, 0xf5, 0x98, 0xd7, - 0x09, 0xd3, 0x1a, 0xe2, 0x53, 0xb4, 0x7f, 0x6b, 0x4e, 0x9e, 0xc6, 0x10, 0x3d, 0x81, 0x84, 0xe3, - 0x92, 0x34, 0x30, 0x46, 0x53, 0xf0, 0xfb, 0x53, 0x38, 0x8f, 0xeb, 0xc8, 0xda, 0x1e, 0x21, 0x13, - 0xc9, 0x0f, 0xe5, 0x81, 0x9e, 0x41, 0xc6, 0xab, 0xa2, 0xf9, 0xf5, 0xcb, 0x07, 0xb3, 0x33, 0xf4, - 0xd2, 0x4d, 0x91, 0x8c, 0x7a, 0xbc, 0x50, 0x05, 0xb2, 0x3d, 0x8e, 0xe6, 0xb7, 0x3d, 0x57, 0x78, - 0x6f, 0x01, 0x04, 0x07, 0xea, 0x3b, 0x03, 0x5f, 0x32, 0x08, 0xa2, 0x06, 0x4d, 0xad, 0x6d, 0xcb, - 0x30, 0x88, 0x6d, 0xd0, 0x94, 0xc7, 0x4b, 0xad, 0x05, 0xb4, 0xfc, 0x29, 0x24, 0xe8, 0x9e, 0x48, - 0x4a, 0xbb, 0xdf, 0x7c, 0xd2, 0x6c, 0x3d, 0x6b, 0xb2, 0x14, 0xa5, 0x56, 0xdf, 0xae, 0xb7, 0xeb, - 0x4a, 0xab, 0xb9, 0x4d, 0x52, 0x94, 0xd7, 0xe0, 0x3a, 0x07, 0x54, 0x9a, 0x35, 0xe5, 0x99, 0xdc, - 0x10, 0x43, 0xd1, 0xf2, 0x6a, 0x30, 0x67, 0x4e, 0x43, 0xbc, 0xd9, 0x6a, 0xd6, 0xa5, 0x39, 0x9a, - 0x3d, 0xd7, 0x6a, 0x52, 0x84, 0x66, 0xcf, 0x72, 0x6b, 0x57, 0x8a, 0x32, 0xeb, 0xab, 0xe6, 0x00, - 0x34, 0x4f, 0x0e, 0x8f, 0xe3, 0xe9, 0xa4, 0x94, 0x2a, 0xff, 0x43, 0x04, 0xd2, 0x24, 0x50, 0x37, - 0xcc, 0x43, 0x0b, 0x7d, 0x00, 0x99, 0xbe, 0x6a, 0x63, 0xd3, 0xf5, 0x3d, 0xad, 0x68, 0x40, 0xa7, - 0x77, 0xe9, 0x80, 0xd7, 0x1f, 0x4d, 0x33, 0xc4, 0x86, 0x86, 0x36, 0x41, 0xe2, 0x44, 0x4e, 0xe7, - 0x08, 0xf7, 0x54, 0x3f, 0xee, 0xdc, 0xf2, 0x5a, 0xfc, 0x74, 0x7c, 0x8f, 0x0e, 0x7b, 0x1c, 0x0a, - 0xfd, 0x20, 0xf4, 0x9c, 0x2e, 0x25, 0xf7, 0x1d, 0x7f, 0xfd, 0x36, 0x14, 0x47, 0x02, 0xe5, 0x39, - 0x5d, 0xa1, 0x15, 0xda, 0x15, 0x8a, 0xf9, 0x7e, 0xdf, 0xeb, 0x0a, 0x45, 0x79, 0x43, 0xe8, 0x03, - 0xbf, 0xe5, 0x43, 0x0e, 0x38, 0x5e, 0x7d, 0x8d, 0x87, 0x87, 0xf9, 0x73, 0xba, 0x3d, 0xbb, 0x30, - 0xdf, 0xb3, 0x34, 0xfd, 0x90, 0x14, 0x2d, 0x44, 0x3b, 0x5c, 0xbd, 0x87, 0x79, 0x4a, 0x3b, 0x93, - 0xef, 0x94, 0x82, 0xd4, 0x64, 0x10, 0x6d, 0x43, 0x41, 0x23, 0x5e, 0x83, 0xd4, 0x85, 0xac, 0x57, - 0x73, 0x9d, 0xfa, 0xf4, 0xe5, 0x29, 0x9a, 0x2c, 0x0e, 0x4b, 0x94, 0xce, 0x82, 0x98, 0xf5, 0x73, - 0x42, 0x27, 0x18, 0x9f, 0xf1, 0x04, 0x0f, 0x60, 0x71, 0x60, 0xe2, 0x97, 0x7d, 0xcb, 0xc1, 0x9a, - 0x32, 0x76, 0x96, 0xab, 0x94, 0xcb, 0x5d, 0xce, 0xe5, 0xe6, 0xbe, 0xc0, 0x9c, 0x78, 0xa8, 0x37, - 0x07, 0x13, 0x87, 0x35, 0xf4, 0x08, 0x52, 0xa2, 0x6d, 0x9b, 0xa6, 0xfb, 0x9b, 0xd5, 0xc7, 0x8b, - 0x9a, 0x95, 0x53, 0xa3, 0x4d, 0x28, 0x98, 0xf8, 0x65, 0xf0, 0x56, 0x22, 0x13, 0x32, 0xcf, 0x5c, - 0x13, 0xbf, 0x9c, 0x7c, 0x25, 0x91, 0x33, 0xfd, 0x11, 0x0d, 0xb5, 0x20, 0x7d, 0xa8, 0xf6, 0x74, - 0x43, 0xc7, 0x4e, 0xe9, 0x06, 0x5d, 0xd1, 0x7b, 0xe7, 0xae, 0x68, 0xf4, 0x02, 0x47, 0xd8, 0xb3, - 0x60, 0xe2, 0x2d, 0x8c, 0x02, 0x86, 0x64, 0x61, 0x37, 0xc7, 0x17, 0x26, 0x2e, 0x70, 0x42, 0x97, - 0x39, 0x74, 0x61, 0xfc, 0x4b, 0x43, 0x9f, 0x41, 0x3e, 0x9c, 0x37, 0xc0, 0x25, 0xf2, 0x86, 0x5c, - 0x3f, 0x98, 0x34, 0x6c, 0x42, 0x4a, 0x24, 0x0c, 0xd9, 0x4b, 0x24, 0x0c, 0x82, 0x18, 0x55, 0x49, - 0x36, 0xf6, 0xd2, 0xf5, 0xcb, 0x93, 0x9c, 0xdf, 0x2b, 0x3d, 0x3b, 0x5d, 0xce, 0x92, 0x1d, 0x4e, - 0xb8, 0x14, 0xc9, 0x9a, 0x1e, 0x5c, 0x43, 0x8f, 0x01, 0xbc, 0xd7, 0x58, 0x0e, 0xbd, 0x0b, 0x9c, - 0xde, 0x31, 0xda, 0x15, 0x88, 0xfe, 0x92, 0xe4, 0x00, 0x35, 0xda, 0x81, 0x8c, 0x70, 0xb9, 0xac, - 0x37, 0x38, 0x3d, 0x1a, 0x8e, 0x07, 0x00, 0xe1, 0xf6, 0x3d, 0x0e, 0xa4, 0x40, 0x37, 0xb0, 0xea, - 0x60, 0xde, 0x70, 0x7a, 0x38, 0x63, 0xb6, 0xce, 0x74, 0x7c, 0xe3, 0x48, 0x35, 0xbb, 0x78, 0x9b, - 0xd0, 0x57, 0xa3, 0xa5, 0x88, 0xcc, 0x58, 0xa1, 0x26, 0x48, 0x54, 0x64, 0xc1, 0x78, 0x22, 0x51, - 0xa9, 0xbd, 0x21, 0xbc, 0x23, 0x91, 0xda, 0xd4, 0x98, 0x42, 0x75, 0x6a, 0xc7, 0x8f, 0x2b, 0xdf, - 0x81, 0xc2, 0xa1, 0x65, 0xf7, 0x54, 0x57, 0x11, 0xce, 0x6b, 0xde, 0xef, 0x7c, 0x7f, 0x75, 0xba, - 0x9c, 0xdf, 0xa4, 0xa3, 0xc2, 0x71, 0xe5, 0x0f, 0x83, 0x9f, 0xa8, 0x2a, 0xc2, 0x2f, 0xbb, 0xe9, - 0x7e, 0xf3, 0x6b, 0x85, 0x35, 0x21, 0xea, 0xbe, 0x03, 0x05, 0xeb, 0xf0, 0xd0, 0xd0, 0x4d, 0xac, - 0xd8, 0x58, 0x75, 0x2c, 0xb3, 0xf4, 0x66, 0xc0, 0xfb, 0xe6, 0xf9, 0x98, 0x4c, 0x87, 0x50, 0x13, - 0x92, 0xb4, 0x51, 0xe1, 0x94, 0x16, 0xe8, 0xf1, 0x5c, 0xb2, 0xe9, 0x21, 0x73, 0x2e, 0xe8, 0x0e, - 0xc0, 0x0b, 0x1d, 0x9f, 0x28, 0xcf, 0x07, 0xd8, 0x1e, 0x96, 0x4a, 0xc1, 0x5e, 0x12, 0x81, 0x7f, - 0x46, 0xc0, 0xe8, 0x5b, 0xb0, 0xa0, 0x3b, 0x4a, 0x30, 0x05, 0x51, 0xc8, 0x60, 0xe9, 0xed, 0x40, - 0x1c, 0x46, 0xba, 0x33, 0x9a, 0xbe, 0xa0, 0xf7, 0x21, 0xa3, 0xe1, 0x3e, 0x36, 0x35, 0xa7, 0x65, - 0x96, 0x5e, 0xa3, 0x25, 0xf1, 0xb5, 0xb3, 0xd3, 0xe5, 0x4c, 0x4d, 0x00, 0xb9, 0x93, 0xf3, 0xb1, - 0xd0, 0xa7, 0x50, 0xf0, 0x3e, 0xda, 0xc3, 0x3e, 0x76, 0x4a, 0xef, 0x51, 0xba, 0x12, 0x39, 0xd8, - 0x5a, 0x68, 0x44, 0x84, 0xbd, 0x30, 0x3e, 0xfa, 0x12, 0x72, 0x0c, 0x82, 0xb5, 0x96, 0x59, 0x1d, - 0x96, 0x16, 0xa9, 0x9c, 0x1e, 0xcc, 0x28, 0x27, 0xbf, 0x93, 0xea, 0xdd, 0xd9, 0xd5, 0x02, 0xdc, - 0xe4, 0x10, 0x6f, 0xf4, 0xc7, 0x90, 0x13, 0x7a, 0xf8, 0xd8, 0x3a, 0x70, 0x4a, 0xdf, 0x38, 0xf7, - 0x62, 0x6c, 0x74, 0xae, 0x1d, 0x9f, 0x54, 0x78, 0x99, 0x20, 0x37, 0xd4, 0x06, 0x52, 0x3e, 0x8a, - 0xc8, 0xd1, 0xa1, 0xf6, 0xa0, 0x7c, 0x69, 0x1d, 0x10, 0x95, 0x5f, 0x5b, 0x89, 0xac, 0xc6, 0xbc, - 0x84, 0x60, 0xa1, 0x89, 0x4f, 0x82, 0x56, 0xf3, 0xd8, 0x3a, 0x68, 0xd4, 0xe4, 0x05, 0x73, 0x1c, - 0xaa, 0xa1, 0xcf, 0x21, 0x1f, 0x7c, 0x28, 0xe1, 0x94, 0x6e, 0x9d, 0xdb, 0x40, 0x1a, 0x33, 0x4e, - 0xff, 0xe9, 0x84, 0x23, 0xe7, 0x9c, 0xc0, 0x17, 0xba, 0x0d, 0x19, 0xcd, 0xb6, 0xfa, 0x2c, 0x86, - 0xbf, 0x4e, 0x17, 0x28, 0xda, 0x9f, 0xb6, 0xd5, 0xa7, 0xc1, 0x59, 0x81, 0x82, 0x8d, 0xfb, 0x86, - 0xda, 0xc1, 0x3d, 0x12, 0x14, 0xad, 0xc3, 0xd2, 0x12, 0x9d, 0x7d, 0x7d, 0xe6, 0xe3, 0xf1, 0x88, - 0x85, 0x7d, 0x04, 0xf8, 0xb5, 0x0e, 0xd1, 0x3e, 0x80, 0x3a, 0xd0, 0x74, 0x57, 0xe9, 0x59, 0x1a, - 0x2e, 0x2d, 0x9f, 0xfb, 0xb0, 0x6a, 0x94, 0x79, 0x85, 0x10, 0xee, 0x58, 0x1a, 0xf6, 0xee, 0xbc, - 0x05, 0x00, 0xbd, 0x0f, 0x59, 0xba, 0x35, 0x2e, 0xfd, 0x15, 0xba, 0xb9, 0x79, 0x2e, 0xfd, 0x4c, - 0xcd, 0xb6, 0xfa, 0x4c, 0xe4, 0x54, 0x00, 0x4c, 0xce, 0x0e, 0xe4, 0xba, 0x1d, 0xc5, 0x77, 0xa7, - 0xb7, 0xa9, 0x6e, 0x7c, 0x32, 0xe3, 0x5a, 0x1e, 0x6d, 0x4c, 0x70, 0xb0, 0xd7, 0x44, 0x5c, 0x78, - 0xb4, 0x21, 0x60, 0x8e, 0x9c, 0xed, 0x76, 0xbc, 0x0f, 0x52, 0x72, 0xb3, 0x4e, 0x39, 0x37, 0xe8, - 0x72, 0xb0, 0xe4, 0x66, 0x23, 0xcc, 0xa4, 0x9b, 0xc0, 0x5b, 0xea, 0x0a, 0x2d, 0x57, 0xd9, 0x99, - 0xdd, 0x99, 0x3d, 0xef, 0x2a, 0x30, 0xea, 0x8a, 0xd3, 0x3a, 0xa4, 0x07, 0xdb, 0x81, 0x9c, 0x35, - 0x70, 0x0f, 0xac, 0x81, 0xa9, 0x29, 0x87, 0xc7, 0x4e, 0xe9, 0x0d, 0xba, 0xdb, 0x0b, 0x35, 0x4e, - 0xbd, 0xdd, 0xb5, 0x38, 0xa3, 0xcd, 0x27, 0x8e, 0x9c, 0x15, 0x5c, 0x37, 0x8f, 0x1d, 0xf4, 0x23, - 0xc8, 0xea, 0xa6, 0x3f, 0xc7, 0xdd, 0x8b, 0xcf, 0x81, 0x44, 0xcd, 0xd1, 0x30, 0xbd, 0x29, 0x80, - 0xf3, 0x24, 0x33, 0xfc, 0x24, 0x02, 0x2b, 0x5f, 0xd3, 0x70, 0x75, 0x4a, 0xef, 0x9c, 0x7b, 0x5f, - 0x3d, 0x43, 0xc7, 0xf5, 0xf5, 0xf3, 0x3a, 0xae, 0x0e, 0x2a, 0x43, 0xc6, 0xc5, 0xbd, 0xbe, 0x65, - 0xab, 0xf6, 0xb0, 0xf4, 0x56, 0xf0, 0x09, 0x82, 0x07, 0x46, 0x3f, 0x84, 0xe2, 0x68, 0x4b, 0xec, - 0xde, 0x15, 0x5a, 0x62, 0x72, 0x21, 0xdc, 0xfe, 0x43, 0x6b, 0xb4, 0x08, 0x61, 0x37, 0x3d, 0x8a, - 0x6a, 0x18, 0xca, 0xc1, 0xb0, 0xf4, 0x6e, 0xb0, 0x1d, 0xe1, 0x8d, 0x56, 0x0c, 0xa3, 0x3a, 0x5c, - 0xfc, 0x45, 0x04, 0xe6, 0xc7, 0xe2, 0x36, 0xfa, 0x21, 0xa4, 0x4c, 0x4b, 0x0b, 0x3c, 0x0e, 0xa9, - 0x73, 0xf9, 0x27, 0x9b, 0x96, 0xc6, 0xde, 0x86, 0x7c, 0xd0, 0xd5, 0xdd, 0xa3, 0xc1, 0xc1, 0x5a, - 0xc7, 0xea, 0xdd, 0xf7, 0x56, 0xae, 0x1d, 0xf8, 0x7f, 0xdf, 0xef, 0x1f, 0x77, 0xef, 0xd3, 0xbf, - 0xfa, 0x07, 0x6b, 0x8c, 0x4c, 0x4e, 0x12, 0xae, 0x0d, 0x0d, 0xbd, 0x07, 0x45, 0xfc, 0xb2, 0xaf, - 0xdb, 0x81, 0xda, 0x21, 0x1a, 0xf0, 0x3b, 0x05, 0x7f, 0x90, 0x28, 0x29, 0xbf, 0x86, 0xff, 0x55, - 0x14, 0x8a, 0x23, 0xe1, 0x90, 0xd4, 0x3d, 0xb4, 0x45, 0x15, 0xaa, 0x7b, 0x08, 0xe4, 0x9c, 0xb7, - 0x1e, 0xc1, 0xb7, 0x8a, 0xb1, 0xab, 0xbe, 0x55, 0x0c, 0x3f, 0x2c, 0x4a, 0x5c, 0xe0, 0x61, 0xd1, - 0x47, 0x70, 0x43, 0x77, 0x14, 0xd3, 0x32, 0xc5, 0x05, 0x83, 0xd7, 0x74, 0x09, 0xbe, 0xec, 0xbb, - 0xa6, 0x3b, 0x4d, 0xcb, 0x64, 0x57, 0x0b, 0xde, 0xae, 0xfd, 0x47, 0x80, 0xa9, 0xf1, 0x47, 0x80, - 0x5e, 0x8f, 0x3e, 0x2e, 0x25, 0x16, 0xff, 0x2d, 0x02, 0x99, 0xe0, 0x6b, 0xfc, 0x68, 0xb8, 0x73, - 0x38, 0x56, 0x0b, 0x5e, 0xf2, 0x91, 0x4f, 0x58, 0x0a, 0xb1, 0x0b, 0x48, 0xe1, 0x36, 0x24, 0x0e, - 0x86, 0xa2, 0x46, 0x4b, 0x57, 0x73, 0x7c, 0xb6, 0x78, 0x95, 0xd4, 0x03, 0xf1, 0x83, 0xa1, 0x78, - 0x30, 0xb5, 0xf8, 0xa7, 0x90, 0x0d, 0xc4, 0xdd, 0xd1, 0xce, 0x44, 0xe4, 0x12, 0x9d, 0x89, 0x37, - 0x20, 0xc9, 0xc3, 0x02, 0xd3, 0xbd, 0x3c, 0xa7, 0x4e, 0xb0, 0x90, 0x90, 0xf8, 0x92, 0x84, 0x03, - 0x3e, 0xfb, 0xff, 0xc4, 0x20, 0x17, 0x8c, 0xa0, 0xc4, 0xd6, 0x75, 0xb3, 0x63, 0xd3, 0xf0, 0x45, - 0x67, 0x8f, 0x79, 0xcf, 0x8d, 0x04, 0x98, 0xc4, 0xd5, 0x9e, 0x6e, 0x2a, 0xf4, 0xa9, 0x4a, 0x48, - 0xbf, 0xd3, 0x3d, 0xdd, 0x7c, 0x4a, 0xa0, 0x14, 0x45, 0x7d, 0xc9, 0x51, 0x62, 0x21, 0x14, 0xf5, - 0x25, 0x43, 0x59, 0xa4, 0xa9, 0xaa, 0xed, 0x52, 0x09, 0xc5, 0x02, 0x29, 0xa8, 0xed, 0x06, 0x5f, - 0x1d, 0x26, 0x26, 0xbd, 0x3a, 0x34, 0xa1, 0xe0, 0xe7, 0x0c, 0x27, 0x26, 0xb6, 0xf9, 0x75, 0x43, - 0xe5, 0x12, 0x49, 0x83, 0xff, 0x41, 0x18, 0x89, 0x28, 0xee, 0x04, 0x81, 0x24, 0x2b, 0xed, 0xa8, - 0x9d, 0x23, 0xac, 0x38, 0xfa, 0x8f, 0x59, 0x3b, 0xc0, 0x13, 0x0b, 0x85, 0xef, 0xe9, 0x3f, 0xc6, - 0x8b, 0x7f, 0x17, 0x81, 0x7c, 0x88, 0x17, 0x6a, 0x40, 0x91, 0xae, 0x6e, 0xac, 0xbd, 0x7d, 0xdb, - 0x7b, 0x9f, 0x4f, 0x86, 0x27, 0x16, 0xb3, 0x79, 0x2b, 0x30, 0xa4, 0x91, 0x3c, 0x94, 0xb1, 0xf2, - 0x5e, 0xb7, 0x85, 0xd5, 0x38, 0x47, 0x39, 0x85, 0x9f, 0xb8, 0xe5, 0x2c, 0x1f, 0xa6, 0x05, 0x9b, - 0xf1, 0x8b, 0x26, 0x64, 0x03, 0x99, 0xcb, 0x0c, 0xf6, 0xf3, 0x6d, 0x88, 0x7b, 0xde, 0x6c, 0xd6, - 0x2e, 0xb2, 0xeb, 0xbb, 0xb8, 0x9f, 0x45, 0x60, 0x61, 0x52, 0x06, 0x11, 0xb2, 0x4b, 0xa6, 0x6d, - 0x33, 0xd9, 0xe5, 0x9d, 0x60, 0x66, 0xc7, 0x34, 0x50, 0xbc, 0x8a, 0xf0, 0x73, 0xbb, 0x37, 0x3d, - 0x3b, 0x60, 0x0a, 0x58, 0x0c, 0xd9, 0x01, 0xa9, 0xe0, 0x82, 0x96, 0xf0, 0xdb, 0x18, 0x14, 0x46, - 0x6e, 0x5f, 0x9e, 0x42, 0xb2, 0x6b, 0x58, 0x07, 0xaa, 0xc1, 0xbb, 0xd6, 0xdf, 0xb9, 0x54, 0x28, - 0x5b, 0x7b, 0x44, 0x79, 0x6c, 0xcd, 0xc9, 0x9c, 0x1b, 0x72, 0x60, 0x3e, 0x78, 0xcd, 0xc2, 0x7e, - 0x48, 0xc4, 0x24, 0x5b, 0xbf, 0xdc, 0x14, 0xfe, 0x3d, 0x0c, 0x45, 0xdc, 0x9a, 0x93, 0x8b, 0x76, - 0x18, 0x84, 0x7a, 0x50, 0x1c, 0xb9, 0xdb, 0xe1, 0x57, 0x02, 0x1b, 0x57, 0x9d, 0x52, 0xb6, 0x4e, - 0xb6, 0x68, 0xde, 0x1b, 0x00, 0x2c, 0xfe, 0x11, 0x14, 0x47, 0x16, 0x45, 0xce, 0x83, 0xe1, 0xf0, - 0xa8, 0x56, 0x20, 0x3e, 0x8c, 0x21, 0x35, 0xd5, 0x1e, 0x96, 0xf9, 0x28, 0x3f, 0x8f, 0xbb, 0x90, - 0x0f, 0x4d, 0x81, 0x0a, 0x10, 0x55, 0xd9, 0x13, 0xc2, 0x8c, 0x1c, 0x55, 0xf9, 0xe3, 0xc3, 0xc5, - 0x02, 0x24, 0x99, 0x7c, 0x83, 0xfa, 0x5d, 0x05, 0x48, 0x8b, 0xfc, 0xa1, 0xbc, 0x0a, 0x19, 0x2f, - 0x91, 0x46, 0x39, 0x48, 0xd7, 0x1a, 0x7b, 0x95, 0xea, 0x76, 0xbd, 0x26, 0xcd, 0xa1, 0x3c, 0x64, - 0xe4, 0x7a, 0xa5, 0x46, 0x7b, 0xae, 0x52, 0xe4, 0xe3, 0xf4, 0x9f, 0xff, 0x6c, 0x39, 0xc2, 0x83, - 0x4c, 0x52, 0x4a, 0x3d, 0x8e, 0xa7, 0x91, 0x74, 0xad, 0xfc, 0xbf, 0x19, 0x40, 0x35, 0xd5, 0x55, - 0x89, 0x50, 0x2e, 0xd0, 0x99, 0x8c, 0x9e, 0x63, 0x4d, 0x13, 0x9b, 0x8c, 0xf1, 0xab, 0x34, 0x19, - 0x2f, 0xd5, 0xeb, 0x1c, 0xef, 0x4c, 0x26, 0xaf, 0xd0, 0x99, 0x0c, 0xf7, 0x7d, 0x62, 0x57, 0xea, - 0xfb, 0x3c, 0x85, 0x14, 0xab, 0x32, 0xd9, 0x1b, 0xb3, 0xe9, 0x6d, 0x85, 0xf1, 0x83, 0xe1, 0xdd, - 0x1a, 0xa7, 0x6e, 0xba, 0xf6, 0xd0, 0x7b, 0x0f, 0xc3, 0x60, 0x7e, 0x7b, 0x24, 0xfd, 0x2a, 0xdb, - 0x23, 0x99, 0xe9, 0xed, 0x91, 0x1f, 0x00, 0xb7, 0x0b, 0x91, 0x14, 0xc3, 0xb9, 0x4f, 0x43, 0x26, - 0x6c, 0x87, 0x19, 0x01, 0xcf, 0x8a, 0x73, 0x76, 0xe0, 0x0b, 0xfd, 0x08, 0x90, 0xb8, 0x97, 0x0d, - 0x48, 0x9e, 0x5d, 0xe9, 0xbc, 0x3f, 0x75, 0x6b, 0x94, 0x60, 0xd2, 0x01, 0x88, 0xf7, 0xe0, 0xde, - 0x98, 0xb3, 0xd8, 0x06, 0xe0, 0x0d, 0x5e, 0xf3, 0xd0, 0x9a, 0x21, 0x4c, 0x2c, 0x41, 0x8a, 0xb8, - 0xdf, 0x3e, 0x66, 0xfa, 0xef, 0xc5, 0x6d, 0x0e, 0xe4, 0x36, 0xdb, 0x87, 0x5c, 0xf0, 0x90, 0x90, - 0x04, 0xb1, 0x63, 0x3c, 0xe4, 0xa6, 0x4d, 0xfe, 0x44, 0x8f, 0x21, 0xe1, 0x67, 0x17, 0xd3, 0x1f, - 0x8a, 0x4f, 0x3d, 0x7d, 0xb2, 0x5c, 0x99, 0xb1, 0xf8, 0x38, 0xfa, 0x90, 0xa6, 0xd8, 0xb9, 0xa0, - 0x20, 0x51, 0x13, 0xf2, 0xce, 0xc0, 0x7e, 0xa1, 0xbf, 0x50, 0x0d, 0xa5, 0x6b, 0xa9, 0x06, 0x9d, - 0xa8, 0xb0, 0x7e, 0x67, 0xda, 0x43, 0x2b, 0x8e, 0xfb, 0xc8, 0x52, 0x0d, 0xd1, 0x1a, 0x71, 0x02, - 0x30, 0xf4, 0x91, 0x77, 0x21, 0xc8, 0x6f, 0xd0, 0xf9, 0xe5, 0x32, 0xe2, 0x66, 0x18, 0xf4, 0x73, - 0xa2, 0xfb, 0xcb, 0x40, 0x24, 0xb2, 0x73, 0x15, 0xc1, 0xf4, 0x11, 0xb4, 0x68, 0xeb, 0x7b, 0x91, - 0x9d, 0xe1, 0xd5, 0xcd, 0x41, 0xcf, 0x8f, 0xec, 0xb6, 0x0f, 0xd3, 0xd0, 0x16, 0x64, 0xbc, 0x58, - 0x4e, 0xcd, 0xbf, 0xb0, 0xfe, 0xc6, 0x39, 0x12, 0xdb, 0x1d, 0xe9, 0x58, 0xf8, 0xc4, 0x5e, 0x8a, - 0x1d, 0x91, 0xa2, 0xbe, 0x37, 0x2c, 0xff, 0x36, 0x07, 0x85, 0xf6, 0xb0, 0x3f, 0xc9, 0xfb, 0xc5, - 0xa6, 0x78, 0xbf, 0xf8, 0x6c, 0xf7, 0x32, 0x99, 0xab, 0xdd, 0xcb, 0xc0, 0xab, 0xbd, 0x97, 0xc9, - 0xbe, 0x32, 0xef, 0x57, 0xb8, 0x92, 0xf7, 0x7b, 0x65, 0xb7, 0x74, 0xd1, 0x4b, 0xdc, 0xd2, 0x7d, - 0x17, 0xf2, 0xaa, 0x6d, 0xab, 0x43, 0xfe, 0x3b, 0x1c, 0x8d, 0xba, 0xca, 0x3c, 0x3b, 0xa3, 0xb3, - 0xd3, 0xe5, 0x6c, 0x85, 0x0c, 0xd2, 0x9f, 0xde, 0x08, 0x0e, 0x59, 0xd5, 0x03, 0x69, 0xbe, 0x87, - 0xcd, 0xbf, 0x4a, 0x0f, 0x5b, 0x9c, 0xee, 0x61, 0x6b, 0x10, 0xa7, 0x3f, 0xf4, 0x61, 0x7a, 0x3f, - 0x4d, 0xe4, 0x61, 0xf5, 0x5d, 0x0b, 0xfc, 0xd6, 0x87, 0x52, 0xa3, 0x1f, 0xc1, 0xa2, 0x78, 0x4d, - 0x4b, 0xf4, 0xc1, 0xbf, 0x45, 0x0d, 0xfc, 0x8c, 0xaa, 0x7c, 0x76, 0xba, 0x5c, 0x92, 0x7d, 0x2c, - 0x9f, 0x1f, 0xab, 0x03, 0x89, 0x2c, 0x4a, 0xf6, 0xc4, 0x71, 0xcd, 0x41, 0x5f, 0x40, 0x8e, 0xda, - 0x77, 0x0f, 0xf7, 0x0e, 0xb0, 0x2d, 0x42, 0xed, 0x83, 0xd9, 0xd6, 0x4b, 0x0c, 0x7d, 0x87, 0x12, - 0x8a, 0xde, 0x19, 0xf6, 0x20, 0x0e, 0x7a, 0x00, 0x09, 0xd5, 0xd0, 0x69, 0xac, 0xfc, 0xba, 0xdf, - 0xf5, 0x31, 0x44, 0xf6, 0x0a, 0x39, 0x18, 0x96, 0xa4, 0xf3, 0xbb, 0x9e, 0xe1, 0xd5, 0x4c, 0x0f, - 0x49, 0x8b, 0x3f, 0x8d, 0x01, 0xf8, 0x8b, 0x45, 0xdf, 0x86, 0x9b, 0xfd, 0xa3, 0xa1, 0xa3, 0x77, - 0x54, 0x43, 0xb1, 0x71, 0xdf, 0xc6, 0x0e, 0x36, 0x59, 0xe6, 0x4f, 0xf5, 0x3a, 0x27, 0xdf, 0x10, - 0xc3, 0x72, 0x68, 0x14, 0x7d, 0x02, 0x37, 0x0c, 0xab, 0x3b, 0x89, 0x2e, 0xd8, 0xf7, 0xb8, 0xce, - 0x71, 0x46, 0x88, 0x55, 0x52, 0xad, 0xf5, 0xd5, 0x03, 0xdd, 0xf0, 0x5b, 0x21, 0x9f, 0x5c, 0x54, - 0xd0, 0x6b, 0x1b, 0x1e, 0x0b, 0xf1, 0xac, 0xc6, 0x67, 0x8a, 0x7e, 0x38, 0xfe, 0x32, 0xe1, 0xe3, - 0x0b, 0xcf, 0x30, 0xfd, 0x81, 0x42, 0xf9, 0x0d, 0x00, 0x7f, 0x7e, 0x7a, 0xe1, 0xbf, 0xbd, 0xed, - 0x27, 0xac, 0xfc, 0xe9, 0x40, 0xf9, 0xde, 0xd7, 0xbc, 0x0f, 0x00, 0x48, 0xca, 0xf5, 0x9d, 0xd6, - 0xd3, 0xba, 0x78, 0x21, 0xb0, 0xd8, 0x1a, 0x89, 0x83, 0xe3, 0x71, 0x2b, 0x32, 0x63, 0xdc, 0xe2, - 0x97, 0xf6, 0xef, 0x43, 0x9c, 0x18, 0x13, 0x99, 0xbd, 0xde, 0xdc, 0xdf, 0x91, 0xe6, 0x50, 0x06, - 0x12, 0x95, 0xed, 0x46, 0x65, 0x4f, 0x8a, 0xa0, 0x05, 0x90, 0x76, 0xf6, 0xb7, 0xdb, 0x0d, 0xb9, - 0xfe, 0xa8, 0xd1, 0x6a, 0x2a, 0x14, 0x21, 0x18, 0x58, 0xfe, 0x36, 0x0e, 0x12, 0x73, 0x3c, 0x13, - 0x42, 0x4b, 0xf4, 0x12, 0x57, 0xfe, 0x7f, 0xf0, 0xfc, 0x6e, 0x62, 0x58, 0x4a, 0xbc, 0xa2, 0x4c, - 0x3e, 0x79, 0x85, 0x4c, 0x3e, 0xf5, 0xaa, 0xde, 0x18, 0xcc, 0x1a, 0x7f, 0xc2, 0x01, 0x30, 0x7e, - 0x95, 0x00, 0x18, 0xd0, 0x90, 0x9f, 0x47, 0x01, 0x02, 0xba, 0xf1, 0xbd, 0xe0, 0x3f, 0xbb, 0x31, - 0xfd, 0x96, 0x7b, 0xa4, 0x74, 0xdd, 0x9a, 0x13, 0xff, 0x28, 0xc7, 0x23, 0x48, 0x6b, 0x3c, 0x67, - 0xe4, 0xa9, 0xe5, 0xdb, 0x33, 0xa7, 0x96, 0x5b, 0x73, 0xb2, 0x47, 0x8c, 0x3e, 0x09, 0xfd, 0x92, - 0xfa, 0xee, 0x4c, 0xa6, 0xbf, 0x25, 0x7e, 0x5e, 0x50, 0x81, 0x24, 0x8b, 0xd1, 0x5c, 0x4c, 0x53, - 0x7f, 0x9d, 0x3a, 0x62, 0x1a, 0x5b, 0x73, 0x32, 0x27, 0xe4, 0x65, 0x6e, 0x0a, 0x12, 0x03, 0x53, - 0xb7, 0xcc, 0x7b, 0x72, 0xf0, 0x49, 0xbc, 0xe8, 0xe9, 0x12, 0x6f, 0x41, 0xff, 0x56, 0x5d, 0xac, - 0xb1, 0x97, 0x47, 0xfb, 0xe6, 0x0b, 0x0f, 0x10, 0x41, 0x05, 0x00, 0x3e, 0xae, 0x9b, 0x5d, 0x29, - 0x4a, 0x8b, 0x63, 0x92, 0xa8, 0x93, 0xaf, 0xd8, 0xbd, 0xef, 0x82, 0x34, 0xfa, 0xf3, 0xd8, 0x80, - 0x8f, 0x99, 0x87, 0xfc, 0xce, 0xd3, 0x8d, 0x8d, 0x76, 0x63, 0xa7, 0xbe, 0xd7, 0xae, 0xec, 0xec, - 0xb2, 0xb7, 0xd6, 0x6d, 0x52, 0x59, 0xb7, 0x1a, 0x35, 0x29, 0x7a, 0xef, 0x00, 0x6e, 0x4e, 0xf9, - 0x3d, 0x35, 0xba, 0x09, 0xd7, 0x9a, 0xad, 0xb6, 0xd2, 0xa8, 0xd5, 0x9b, 0xed, 0x46, 0xfb, 0x0b, - 0x65, 0xa3, 0xb5, 0xbd, 0xbf, 0xd3, 0x94, 0xe6, 0x88, 0xbf, 0x78, 0x54, 0x6f, 0xd6, 0xe5, 0x4a, - 0xbb, 0x5e, 0x53, 0x2a, 0xdb, 0xcf, 0x2a, 0x5f, 0x10, 0x2f, 0x52, 0x82, 0x05, 0x1f, 0x5a, 0xfd, - 0xc2, 0xfb, 0x37, 0x36, 0xa2, 0xf7, 0xbe, 0x0b, 0xc5, 0x11, 0x53, 0x26, 0x2e, 0x6f, 0x77, 0xbf, - 0xba, 0xdd, 0xd8, 0x98, 0xf8, 0x4e, 0x0a, 0x65, 0x21, 0xd5, 0xda, 0xdc, 0xdc, 0x6e, 0x34, 0xeb, - 0x52, 0xec, 0xde, 0x87, 0x90, 0x0b, 0x26, 0xf6, 0x48, 0x82, 0xdc, 0xf7, 0x5b, 0xcd, 0xba, 0xb2, - 0x59, 0x69, 0x6c, 0xef, 0xcb, 0x64, 0x97, 0x08, 0x0a, 0xdc, 0x77, 0x09, 0x58, 0xe4, 0xde, 0xbb, - 0x90, 0x0f, 0x65, 0xd1, 0x84, 0xa7, 0x58, 0xd2, 0x1c, 0x91, 0xa9, 0xf8, 0x37, 0x42, 0xea, 0x35, - 0x29, 0x52, 0x5d, 0xfd, 0xf5, 0x7f, 0x2d, 0xcd, 0xfd, 0xfa, 0x6c, 0x29, 0xf2, 0x9b, 0xb3, 0xa5, - 0xc8, 0xef, 0xce, 0x96, 0x22, 0xff, 0x79, 0xb6, 0x14, 0xf9, 0xab, 0xdf, 0x2f, 0xcd, 0xfd, 0xe6, - 0xf7, 0x4b, 0x73, 0xbf, 0xfb, 0xfd, 0xd2, 0xdc, 0xf7, 0x93, 0xec, 0x9f, 0xb0, 0xf9, 0xbf, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x66, 0xb7, 0x5a, 0x27, 0x2d, 0x47, 0x00, 0x00, + // 5615 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x7c, 0xcd, 0x73, 0x23, 0xc7, + 0x75, 0x38, 0xf1, 0x0d, 0x3c, 0x7c, 0x0d, 0x7b, 0xb9, 0xbb, 0x10, 0xbd, 0x22, 0xb9, 0x58, 0xad, + 0x44, 0xad, 0x24, 0xee, 0x8a, 0x92, 0xed, 0x95, 0x64, 0xfb, 0x27, 0x80, 0x00, 0x97, 0xd8, 0x25, + 0x01, 0x6a, 0x08, 0xee, 0x4a, 0xf6, 0x2f, 0x1e, 0x0f, 0x31, 0x4d, 0x70, 0xc4, 0xc1, 0x0c, 0x76, + 0x66, 0xb0, 0x5c, 0xb8, 0x72, 0x48, 0x39, 0x97, 0x9c, 0x92, 0x9c, 0x72, 0x49, 0xb9, 0xca, 0x49, + 0xb9, 0x12, 0xdf, 0x5c, 0xae, 0x54, 0x25, 0x55, 0x39, 0xe4, 0x1a, 0x1f, 0x9d, 0x4a, 0x55, 0xca, + 0x27, 0x56, 0x42, 0x5d, 0xf2, 0x07, 0xe4, 0xa4, 0x53, 0xaa, 0xbf, 0xe6, 0x03, 0x1f, 0x14, 0x48, + 0x6e, 0x7c, 0x90, 0x8a, 0xf3, 0xfa, 0xbd, 0xd7, 0xdd, 0xaf, 0xdf, 0x77, 0x37, 0x16, 0xee, 0x38, + 0xcf, 0x8d, 0xfb, 0x1d, 0xd5, 0x55, 0x0d, 0xab, 0x7b, 0x5f, 0xc3, 0x4e, 0xa7, 0x7f, 0x70, 0xdf, + 0x71, 0xed, 0x41, 0xc7, 0x1d, 0xd8, 0x58, 0x5b, 0xeb, 0xdb, 0x96, 0x6b, 0xa1, 0xeb, 0x1d, 0xab, + 0x73, 0x6c, 0x5b, 0x6a, 0xe7, 0x68, 0xcd, 0x79, 0x6e, 0x90, 0xff, 0x0e, 0x54, 0x07, 0x2f, 0x96, + 0x06, 0xae, 0x6e, 0xdc, 0x3f, 0x32, 0x3a, 0xf7, 0x5d, 0xbd, 0x87, 0x1d, 0x57, 0xed, 0xf5, 0x19, + 0xc1, 0x62, 0x79, 0x02, 0xd7, 0xbe, 0xad, 0xbf, 0xd0, 0x0d, 0xdc, 0xc5, 0x1c, 0xe7, 0x3a, 0xc1, + 0x71, 0x87, 0x7d, 0xec, 0xb0, 0xff, 0x73, 0xf0, 0x6b, 0x5d, 0x6c, 0xdd, 0xef, 0x62, 0x4b, 0x37, + 0x35, 0xfc, 0xf2, 0x7e, 0xc7, 0x32, 0x0f, 0xf5, 0x2e, 0x1f, 0x5a, 0xe8, 0x5a, 0x5d, 0x8b, 0xfe, + 0x79, 0x9f, 0xfc, 0xc5, 0xa0, 0xe5, 0x9f, 0x25, 0xe0, 0xda, 0xa6, 0x65, 0x63, 0xbd, 0x6b, 0x3e, + 0xc1, 0x43, 0x19, 0x1f, 0x62, 0x1b, 0x9b, 0x1d, 0x8c, 0x56, 0x20, 0xe1, 0xaa, 0x07, 0x06, 0x2e, + 0x45, 0x56, 0x22, 0xab, 0xf9, 0x2a, 0xfc, 0xf6, 0x74, 0x79, 0xee, 0xeb, 0xd3, 0xe5, 0x68, 0xa3, + 0x26, 0xb3, 0x01, 0x74, 0x17, 0x12, 0x74, 0x96, 0x52, 0x94, 0x62, 0x14, 0x39, 0x46, 0xaa, 0x41, + 0x80, 0x04, 0x8d, 0x8e, 0xa2, 0x12, 0xc4, 0x4d, 0xb5, 0x87, 0x4b, 0xb1, 0x95, 0xc8, 0x6a, 0xa6, + 0x1a, 0x27, 0x58, 0x32, 0x85, 0xa0, 0x27, 0x90, 0x7e, 0xa1, 0x1a, 0xba, 0xa6, 0xbb, 0xc3, 0x52, + 0x7c, 0x25, 0xb2, 0x5a, 0x58, 0x7f, 0x7b, 0x6d, 0xa2, 0xa8, 0xd6, 0x36, 0x2c, 0xd3, 0x71, 0x6d, + 0x55, 0x37, 0xdd, 0xa7, 0x9c, 0x80, 0x33, 0xf2, 0x18, 0xa0, 0x07, 0x30, 0xef, 0x1c, 0xa9, 0x36, + 0xd6, 0x94, 0xbe, 0x8d, 0x0f, 0xf5, 0x97, 0x8a, 0x81, 0xcd, 0x52, 0x62, 0x25, 0xb2, 0x9a, 0xe0, + 0xa8, 0x45, 0x36, 0xbc, 0x4b, 0x47, 0xb7, 0xb1, 0x89, 0xda, 0x90, 0xb1, 0x4c, 0x45, 0xc3, 0x06, + 0x76, 0x71, 0x29, 0x49, 0xe7, 0x7f, 0x7f, 0xca, 0xfc, 0x13, 0x04, 0xb4, 0x56, 0xe9, 0xb8, 0xba, + 0x65, 0x8a, 0x75, 0x58, 0x66, 0x8d, 0x32, 0xe2, 0x5c, 0x07, 0x7d, 0x4d, 0x75, 0x71, 0x29, 0x75, + 0x65, 0xae, 0xfb, 0x94, 0x11, 0xda, 0x86, 0x44, 0x4f, 0x75, 0x3b, 0x47, 0xa5, 0x34, 0xe5, 0xf8, + 0xe0, 0x02, 0x1c, 0x77, 0x08, 0x1d, 0x67, 0xc8, 0x98, 0x94, 0x9f, 0x41, 0x92, 0xcd, 0x83, 0xf2, + 0x90, 0x69, 0xb6, 0x94, 0xca, 0x46, 0xbb, 0xd1, 0x6a, 0x4a, 0x73, 0x28, 0x07, 0x69, 0xb9, 0xbe, + 0xd7, 0x96, 0x1b, 0x1b, 0x6d, 0x29, 0x42, 0xbe, 0xf6, 0xea, 0x6d, 0xa5, 0xb9, 0xbf, 0xbd, 0x2d, + 0x45, 0x51, 0x11, 0xb2, 0xe4, 0xab, 0x56, 0xdf, 0xac, 0xec, 0x6f, 0xb7, 0xa5, 0x18, 0xca, 0x42, + 0x6a, 0xa3, 0xb2, 0xb7, 0x51, 0xa9, 0xd5, 0xa5, 0xf8, 0x62, 0xfc, 0x57, 0xbf, 0x5c, 0x9a, 0x2b, + 0x3f, 0x80, 0x04, 0x9d, 0x0e, 0x01, 0x24, 0xf7, 0x1a, 0x3b, 0xbb, 0xdb, 0x75, 0x69, 0x0e, 0xa5, + 0x21, 0xbe, 0x49, 0x58, 0x44, 0x08, 0xc5, 0x6e, 0x45, 0x6e, 0x37, 0x2a, 0xdb, 0x52, 0x94, 0x51, + 0x7c, 0x1c, 0xff, 0xef, 0x5f, 0x2c, 0x47, 0xca, 0xff, 0x96, 0x80, 0x05, 0x7f, 0xed, 0xfe, 0x69, + 0xa3, 0x0d, 0x28, 0x5a, 0xb6, 0xde, 0xd5, 0x4d, 0x85, 0xea, 0x9c, 0xa2, 0x6b, 0x5c, 0x1f, 0xbf, + 0x45, 0xf6, 0x73, 0x76, 0xba, 0x9c, 0x6f, 0xd1, 0xe1, 0x36, 0x19, 0x6d, 0xd4, 0xb8, 0x82, 0xe6, + 0xad, 0x00, 0x50, 0x43, 0x4f, 0x60, 0x9e, 0x33, 0xe9, 0x58, 0xc6, 0xa0, 0x67, 0x2a, 0xba, 0xe6, + 0x94, 0xa2, 0x2b, 0xb1, 0xd5, 0x7c, 0x75, 0xf9, 0xec, 0x74, 0xb9, 0xc8, 0x58, 0x6c, 0xd0, 0xb1, + 0x46, 0xcd, 0xf9, 0xfa, 0x74, 0x39, 0x2d, 0x3e, 0x64, 0x3e, 0x3d, 0xff, 0xd6, 0x1c, 0xf4, 0x0c, + 0xae, 0xdb, 0x42, 0xb6, 0x5a, 0x90, 0x61, 0x8c, 0x32, 0xbc, 0x73, 0x76, 0xba, 0x7c, 0xcd, 0x13, + 0xbe, 0x36, 0x99, 0xe9, 0x35, 0x7b, 0x14, 0x41, 0x73, 0x50, 0x0b, 0x02, 0x60, 0x7f, 0xbb, 0x71, + 0xba, 0xdd, 0x65, 0xbe, 0xdd, 0x79, 0x9f, 0x75, 0x78, 0xcb, 0xf3, 0xf6, 0xc8, 0x80, 0xe6, 0x19, + 0x5e, 0xe2, 0x5c, 0xc3, 0x4b, 0x5e, 0xd5, 0xf0, 0x42, 0x66, 0x94, 0xfa, 0x3f, 0x31, 0xa3, 0xf4, + 0x2b, 0x37, 0xa3, 0xcc, 0x2b, 0x30, 0x23, 0xa6, 0xbb, 0x8f, 0xe3, 0x69, 0x90, 0xb2, 0x8f, 0xe3, + 0xe9, 0xac, 0x94, 0x7b, 0x1c, 0x4f, 0xe7, 0xa4, 0xfc, 0xe3, 0x78, 0x3a, 0x2f, 0x15, 0xca, 0x7f, + 0x1d, 0x85, 0x5b, 0xfb, 0xa6, 0xfe, 0x7c, 0x80, 0x9f, 0xe9, 0xee, 0x91, 0x35, 0x70, 0xa9, 0x5f, + 0x0c, 0xe8, 0xf6, 0x03, 0x48, 0x8f, 0x28, 0xf5, 0x75, 0x7e, 0xca, 0xa9, 0xf0, 0xd9, 0xa6, 0x5c, + 0x7e, 0xa2, 0x0f, 0x01, 0xc6, 0x34, 0xf8, 0xb5, 0xb3, 0xd3, 0xe5, 0xcc, 0x64, 0x35, 0xcb, 0x74, + 0x3c, 0xe5, 0xfa, 0x03, 0x39, 0xe1, 0x32, 0x64, 0xfa, 0x36, 0xd6, 0xf4, 0x0e, 0x39, 0xb5, 0xa0, + 0xde, 0xf9, 0x60, 0x6e, 0xf1, 0x7f, 0x97, 0x02, 0x89, 0x2d, 0xb4, 0x86, 0x9d, 0x8e, 0xad, 0xf7, + 0x5d, 0xcb, 0xf6, 0x56, 0x19, 0x19, 0x5b, 0xe5, 0x9b, 0x10, 0xd5, 0x35, 0x1e, 0x68, 0x6e, 0x70, + 0x29, 0x45, 0xa9, 0x80, 0xfc, 0xed, 0x46, 0x75, 0x0d, 0xad, 0x41, 0x9c, 0x44, 0x43, 0xba, 0xcf, + 0xec, 0xfa, 0xe2, 0xe8, 0x4e, 0x70, 0x6f, 0x8d, 0x05, 0xcb, 0xb6, 0x4c, 0xf1, 0xd0, 0x0a, 0xa4, + 0xcd, 0x81, 0x61, 0xd0, 0x40, 0x47, 0x76, 0x9f, 0x16, 0x5b, 0x12, 0x50, 0x74, 0x1b, 0x72, 0x1a, + 0x3e, 0x54, 0x07, 0x86, 0xab, 0xe0, 0x97, 0x7d, 0x9b, 0xed, 0x4a, 0xce, 0x72, 0x58, 0xfd, 0x65, + 0xdf, 0x46, 0x6f, 0x40, 0xc1, 0xd3, 0x55, 0x86, 0x84, 0x28, 0x52, 0x4e, 0xe8, 0x1d, 0xc5, 0xba, + 0x05, 0xc9, 0x23, 0x5d, 0xd3, 0xb0, 0x49, 0x4d, 0x4e, 0x4c, 0xc4, 0x61, 0x68, 0x15, 0x72, 0xba, + 0xa9, 0x76, 0x3a, 0xd8, 0x71, 0x74, 0xb2, 0x98, 0xf9, 0x00, 0x4e, 0x68, 0x04, 0x3d, 0x87, 0xc5, + 0x2e, 0x36, 0xb1, 0xad, 0xba, 0x58, 0x53, 0x54, 0x47, 0xd1, 0x35, 0x6c, 0xba, 0xba, 0x3b, 0x54, + 0xe8, 0xc6, 0xaf, 0xd1, 0x23, 0x5c, 0x9b, 0x72, 0x84, 0x8f, 0x04, 0x61, 0xc5, 0x69, 0x70, 0xb2, + 0xf6, 0xb0, 0x8f, 0xf9, 0x3c, 0x37, 0xbb, 0x93, 0x87, 0xd1, 0x2e, 0xdc, 0x9d, 0x3c, 0xa5, 0x83, + 0x9f, 0x0f, 0x88, 0x75, 0x28, 0x56, 0x9f, 0xd8, 0x5b, 0x69, 0x81, 0xee, 0xfb, 0xf6, 0x04, 0x3e, + 0x7b, 0x1c, 0xb3, 0x45, 0x11, 0xd1, 0x3a, 0xcc, 0x0f, 0x1c, 0xec, 0xf8, 0x0c, 0x88, 0x42, 0x03, + 0x55, 0xe8, 0x24, 0xd7, 0xfa, 0x22, 0x41, 0x10, 0x64, 0x44, 0x87, 0xd7, 0x61, 0xde, 0x3a, 0x31, + 0x47, 0x68, 0x72, 0x61, 0x1a, 0x82, 0x10, 0xa4, 0xb9, 0x0d, 0xb9, 0x8e, 0xd5, 0xeb, 0x0f, 0xc4, + 0xc1, 0x64, 0xd9, 0xe9, 0x71, 0x18, 0x3d, 0x97, 0x25, 0x48, 0xbd, 0xd0, 0x6d, 0x77, 0xa0, 0x1a, + 0x25, 0x29, 0x20, 0x74, 0x01, 0x44, 0x9f, 0x82, 0xd4, 0xef, 0x2a, 0xaa, 0xeb, 0xda, 0xfa, 0x01, + 0xe1, 0x63, 0x0e, 0x7a, 0xa5, 0x7c, 0x48, 0x11, 0x0b, 0xbb, 0x8f, 0x2a, 0x62, 0xb8, 0x39, 0xe8, + 0xc9, 0x85, 0x7e, 0x37, 0xf8, 0x8d, 0x36, 0xe1, 0x75, 0xd5, 0x70, 0xb1, 0x2d, 0xa2, 0x05, 0x39, + 0x28, 0x45, 0x37, 0x95, 0xbe, 0x6d, 0x75, 0x6d, 0xec, 0x38, 0xa5, 0x42, 0x60, 0xde, 0xd7, 0x28, + 0x2a, 0x53, 0x6a, 0x22, 0xfc, 0x86, 0xb9, 0xcb, 0xd1, 0xd0, 0x8f, 0x00, 0x39, 0x43, 0xc7, 0xc5, + 0x3d, 0xc1, 0xe8, 0x58, 0x37, 0xb5, 0x52, 0x91, 0x9e, 0xf8, 0x5b, 0x53, 0x4e, 0x7c, 0x8f, 0x12, + 0x30, 0x76, 0x4f, 0x74, 0x53, 0xe3, 0xb3, 0x48, 0xce, 0x08, 0xdc, 0x73, 0x66, 0x69, 0x29, 0xf3, + 0x38, 0x9e, 0xce, 0x48, 0xf0, 0x38, 0x9e, 0x4e, 0x49, 0xe9, 0xf2, 0x9f, 0x47, 0xe1, 0x06, 0x43, + 0xdb, 0x54, 0x7b, 0xba, 0x31, 0xbc, 0xaa, 0xb9, 0x32, 0x2e, 0xdc, 0x5c, 0xe9, 0xf1, 0xd0, 0xad, + 0x10, 0x32, 0x16, 0x43, 0xe9, 0xf1, 0x10, 0x58, 0x93, 0x80, 0x46, 0x7c, 0x5e, 0xfc, 0x02, 0x3e, + 0xaf, 0x05, 0xf3, 0xc2, 0x72, 0x3d, 0x0e, 0xd4, 0x7c, 0xf3, 0xd5, 0x3b, 0x7c, 0x4d, 0xc5, 0x1a, + 0x43, 0x10, 0xe4, 0xe1, 0xd0, 0xaf, 0x85, 0x06, 0xb9, 0x88, 0xca, 0xff, 0x14, 0x85, 0x85, 0x86, + 0xe9, 0x62, 0xdb, 0xc0, 0xea, 0x0b, 0x1c, 0x10, 0xc7, 0xe7, 0x90, 0x51, 0xcd, 0x0e, 0x76, 0x5c, + 0xcb, 0x76, 0x4a, 0x91, 0x95, 0xd8, 0x6a, 0x76, 0xfd, 0xc3, 0x29, 0xa7, 0x32, 0x89, 0x7e, 0xad, + 0xc2, 0x89, 0x85, 0xcb, 0xf4, 0x98, 0x2d, 0xfe, 0x4b, 0x04, 0xd2, 0x62, 0xf4, 0x12, 0x61, 0xe3, + 0xdb, 0x90, 0xa6, 0xa9, 0xb8, 0xe2, 0x9d, 0xc9, 0xa2, 0xa0, 0xe0, 0xb9, 0x7a, 0x30, 0x6d, 0x4f, + 0x51, 0xdc, 0x86, 0x86, 0x36, 0x26, 0x65, 0xd4, 0x31, 0x4a, 0x7f, 0x53, 0xc8, 0x6f, 0x2f, 0x9c, + 0x53, 0x8f, 0x25, 0xd9, 0x4c, 0x66, 0x5c, 0x72, 0xff, 0x18, 0x81, 0x79, 0x42, 0xa0, 0x61, 0x2d, + 0x20, 0xb6, 0x3b, 0x00, 0xba, 0xa3, 0x38, 0x0c, 0x4e, 0x77, 0x24, 0x4c, 0x21, 0xa3, 0x3b, 0x1c, + 0xdd, 0x53, 0xb5, 0xe8, 0x98, 0xaa, 0x7d, 0x04, 0x79, 0x4a, 0xab, 0x1c, 0x0c, 0x3a, 0xc7, 0xd8, + 0x75, 0xe8, 0x0a, 0x13, 0xd5, 0x05, 0xbe, 0xc2, 0x1c, 0xe5, 0x50, 0x65, 0x63, 0x72, 0xce, 0x09, + 0x7c, 0x8d, 0x69, 0x5f, 0x7c, 0x4c, 0xfb, 0xf8, 0xc2, 0x7f, 0x1d, 0x87, 0x1b, 0xbb, 0xaa, 0xed, + 0xea, 0xc4, 0x77, 0xe9, 0x66, 0x37, 0xb0, 0xfa, 0xbb, 0x90, 0x35, 0x07, 0xc2, 0x20, 0x1d, 0x7e, + 0x20, 0x6c, 0x7d, 0x60, 0x0e, 0xb8, 0x81, 0x39, 0xe8, 0x3b, 0xb0, 0x40, 0xd0, 0xf4, 0x5e, 0xdf, + 0xd0, 0x3b, 0xba, 0xeb, 0xe1, 0xc7, 0x03, 0xf8, 0xc8, 0x1c, 0xf4, 0x1a, 0x1c, 0x41, 0xd0, 0x6d, + 0x43, 0xdc, 0xd0, 0x1d, 0x97, 0xc6, 0xfa, 0xec, 0xfa, 0xfa, 0x14, 0x75, 0x9a, 0xbc, 0xb6, 0xb5, + 0x6d, 0xdd, 0x71, 0x85, 0xac, 0x08, 0x17, 0xd4, 0x82, 0x84, 0xad, 0x9a, 0x5d, 0x4c, 0xed, 0x2c, + 0xbb, 0xfe, 0xc1, 0xc5, 0xd8, 0xc9, 0x84, 0x54, 0x64, 0x40, 0x94, 0xcf, 0xe2, 0xcf, 0x23, 0x10, + 0x27, 0xb3, 0x9c, 0xe3, 0x0a, 0x6e, 0x40, 0xf2, 0x85, 0x6a, 0x0c, 0x30, 0xcb, 0x57, 0x72, 0x32, + 0xff, 0x42, 0x7f, 0x04, 0x45, 0x67, 0x70, 0xd0, 0x0f, 0x4c, 0xc5, 0x83, 0xf6, 0x7b, 0x17, 0x5a, + 0x95, 0x57, 0xdc, 0x85, 0x79, 0xb1, 0x83, 0x5b, 0x7c, 0x0e, 0x09, 0xba, 0xea, 0x73, 0xd6, 0x77, + 0x17, 0x0a, 0x87, 0xb6, 0xd5, 0x53, 0x74, 0xb3, 0x63, 0x0c, 0x1c, 0xfd, 0x05, 0xcb, 0x1d, 0x72, + 0x72, 0x9e, 0x40, 0x1b, 0x02, 0x48, 0x74, 0xc5, 0xb5, 0x14, 0xfc, 0x52, 0x20, 0x45, 0x29, 0x52, + 0xd6, 0xb5, 0xea, 0x02, 0x14, 0x52, 0xf5, 0x7f, 0xce, 0x41, 0x91, 0x1a, 0xd4, 0x4c, 0xee, 0xf2, + 0x6e, 0xc0, 0x5d, 0x5e, 0x0f, 0xb9, 0x4b, 0xcf, 0x2a, 0x89, 0xb7, 0xbc, 0x05, 0xc9, 0x01, 0x4d, + 0x28, 0xe9, 0x12, 0xbd, 0x0c, 0x82, 0xc1, 0xd0, 0x43, 0x48, 0xbd, 0xc0, 0xb6, 0x43, 0xc2, 0x30, + 0xa2, 0x9c, 0x96, 0x78, 0x41, 0x7e, 0x63, 0x64, 0x21, 0x4f, 0x19, 0x96, 0x2c, 0xd0, 0xd1, 0x2a, + 0x48, 0xc7, 0x78, 0xa8, 0x4c, 0xb0, 0x85, 0xc2, 0x31, 0xa9, 0xc6, 0x7c, 0x67, 0xac, 0xc1, 0xf5, + 0x00, 0xa6, 0xa6, 0xdb, 0x98, 0xe6, 0xd9, 0x4e, 0x29, 0xbd, 0x12, 0x3b, 0x27, 0x9f, 0x1e, 0x59, + 0xc0, 0x5a, 0x4d, 0x10, 0xca, 0xd7, 0xbc, 0x09, 0x3c, 0x98, 0x83, 0xde, 0x05, 0x44, 0x3c, 0x1d, + 0x0e, 0xaf, 0x28, 0x41, 0x57, 0x24, 0xd1, 0x91, 0xe0, 0x9a, 0xaa, 0x50, 0x08, 0xac, 0x89, 0x04, + 0x89, 0x24, 0x0d, 0x12, 0xb7, 0x88, 0xf5, 0x3f, 0x11, 0xec, 0x47, 0xe3, 0x44, 0xce, 0x9b, 0x98, + 0x84, 0x8a, 0x7d, 0xb6, 0x2f, 0x67, 0x70, 0x48, 0xfc, 0x5c, 0x80, 0x55, 0x8a, 0xb2, 0x2a, 0x9f, + 0x9d, 0x2e, 0xa3, 0x27, 0x78, 0xb8, 0x47, 0xc7, 0x27, 0x33, 0x44, 0xc7, 0x23, 0xe3, 0x9a, 0x83, + 0xb6, 0x40, 0x0a, 0x6d, 0x84, 0x70, 0x2c, 0x50, 0x8e, 0x4b, 0x24, 0x6d, 0xd8, 0xf3, 0xb7, 0x32, + 0xca, 0xad, 0x10, 0xd8, 0x26, 0xe1, 0xd4, 0x86, 0x05, 0x92, 0xb3, 0x58, 0x8e, 0xee, 0x86, 0xb8, + 0xe5, 0xfd, 0xf5, 0x6d, 0x88, 0xf1, 0x29, 0xeb, 0xeb, 0x8c, 0x8c, 0x6b, 0x0e, 0xda, 0x83, 0xec, + 0x21, 0x2b, 0x75, 0x94, 0x63, 0x3c, 0xa4, 0x45, 0x51, 0x76, 0xfd, 0xde, 0xec, 0x45, 0x51, 0x35, + 0x49, 0x54, 0xac, 0x14, 0x91, 0xe1, 0xd0, 0x1b, 0x44, 0xcf, 0x20, 0x1f, 0xa8, 0x63, 0x0f, 0x86, + 0x34, 0xad, 0xbb, 0x1c, 0xdb, 0x9c, 0xcf, 0xa8, 0x3a, 0x44, 0x9f, 0x01, 0xe8, 0x5e, 0xdc, 0xa4, + 0x99, 0x5c, 0x76, 0xfd, 0x9d, 0x0b, 0x04, 0x58, 0xe1, 0x96, 0x7d, 0x26, 0xe8, 0x19, 0x14, 0xfc, + 0x2f, 0xba, 0xd8, 0xdc, 0x85, 0x17, 0xcb, 0xb8, 0xe6, 0x03, 0x7c, 0xaa, 0x44, 0x08, 0xb9, 0x90, + 0x6b, 0x2b, 0x5e, 0xde, 0xb5, 0x85, 0x18, 0xa1, 0x3a, 0x2f, 0x70, 0x24, 0x9a, 0xf5, 0xbd, 0x33, + 0xa3, 0xc1, 0x05, 0x92, 0x7c, 0x56, 0xf7, 0x7c, 0x00, 0xa8, 0x63, 0x63, 0x9a, 0xcf, 0xe3, 0x97, + 0x2c, 0xe4, 0x18, 0xc3, 0x50, 0xd1, 0x31, 0xcf, 0xc7, 0xeb, 0xde, 0x30, 0xda, 0x82, 0x3c, 0x36, + 0x3b, 0x96, 0xa6, 0x9b, 0x5d, 0xbf, 0xd8, 0xe0, 0xc9, 0xd4, 0xd7, 0xa7, 0xcb, 0xdf, 0x1a, 0x99, + 0xb5, 0xce, 0x71, 0xc9, 0xe4, 0x72, 0x0e, 0x07, 0xbe, 0xd0, 0x16, 0xa4, 0x44, 0xc0, 0x5f, 0xa0, + 0x92, 0x59, 0x9d, 0x96, 0xbe, 0x8e, 0xa6, 0x0b, 0x22, 0x3b, 0xe7, 0xe4, 0xa4, 0x80, 0xd3, 0x74, + 0x87, 0x24, 0x3a, 0x5a, 0xe9, 0x7a, 0xb0, 0x80, 0x13, 0x50, 0xb4, 0x01, 0xd0, 0xc5, 0x96, 0xc2, + 0x5a, 0xa1, 0xa5, 0x1b, 0x74, 0xba, 0xa5, 0xc0, 0x74, 0x5d, 0x6c, 0xad, 0x89, 0x86, 0x29, 0xa9, + 0x71, 0x0f, 0xf5, 0xae, 0xc8, 0x3f, 0xba, 0xd8, 0x62, 0x80, 0x70, 0x61, 0x7b, 0x73, 0x62, 0x61, + 0x5b, 0x5e, 0x82, 0x8c, 0xe7, 0xc4, 0x50, 0x0a, 0x62, 0x95, 0xbd, 0x0d, 0xd6, 0xfd, 0xaa, 0xd5, + 0xf7, 0x36, 0xa4, 0x48, 0xf9, 0x36, 0xc4, 0xe9, 0xe6, 0xb3, 0x90, 0xda, 0x6c, 0xc9, 0xcf, 0x2a, + 0x72, 0x8d, 0x75, 0xdc, 0x1a, 0xcd, 0xa7, 0x75, 0xb9, 0x5d, 0xaf, 0x49, 0x22, 0x78, 0x9c, 0xc6, + 0x01, 0xf9, 0xc5, 0x76, 0xdb, 0xe2, 0xcd, 0x8b, 0x2e, 0x14, 0x3b, 0x1e, 0x94, 0x1d, 0x40, 0x64, + 0x25, 0xba, 0x5a, 0x58, 0x7f, 0xf8, 0x8d, 0x05, 0xbb, 0xe0, 0x11, 0x04, 0xf9, 0x2a, 0x51, 0xe8, + 0x84, 0xa0, 0x81, 0x64, 0x2b, 0x3a, 0x12, 0xa8, 0x64, 0x48, 0x74, 0x8e, 0x70, 0xe7, 0x98, 0x87, + 0xea, 0xef, 0x4c, 0x99, 0x98, 0xe6, 0xa1, 0x01, 0xf5, 0xdb, 0x20, 0x34, 0xfe, 0xd4, 0x22, 0x87, + 0xa0, 0xac, 0x90, 0x1c, 0x76, 0x42, 0xf1, 0x73, 0xed, 0x7a, 0x52, 0x93, 0x50, 0xd8, 0x75, 0xc0, + 0x07, 0x3d, 0x84, 0xa2, 0x69, 0xb9, 0x0a, 0x29, 0xe2, 0xb9, 0xb7, 0xa4, 0x45, 0x77, 0xbe, 0x2a, + 0x71, 0x5d, 0xf5, 0xfd, 0x62, 0xde, 0xb4, 0xdc, 0xe6, 0xc0, 0x30, 0x18, 0x00, 0xfd, 0x49, 0x04, + 0x96, 0x59, 0x40, 0x55, 0x4e, 0x58, 0xdb, 0x46, 0x61, 0xb9, 0xb3, 0x2f, 0x23, 0xda, 0xe4, 0x9a, + 0x9e, 0x3d, 0x9d, 0xd7, 0xf3, 0xe1, 0x4b, 0xbd, 0x35, 0x38, 0x07, 0xa7, 0xdc, 0x86, 0x42, 0xf8, + 0x98, 0x50, 0x06, 0x12, 0x1b, 0x5b, 0xf5, 0x8d, 0x27, 0xd2, 0x1c, 0x2a, 0x42, 0x76, 0xb3, 0x25, + 0xd7, 0x1b, 0x8f, 0x9a, 0xca, 0x93, 0xfa, 0x17, 0xac, 0x49, 0xdb, 0x6c, 0x79, 0x4d, 0xda, 0x12, + 0x2c, 0xec, 0x37, 0x1b, 0x9f, 0xed, 0xd7, 0x95, 0x67, 0x8d, 0xf6, 0x56, 0x6b, 0xbf, 0xad, 0x34, + 0x9a, 0xb5, 0xfa, 0xe7, 0x52, 0xcc, 0xab, 0xef, 0x12, 0x52, 0xb2, 0xfc, 0xef, 0x49, 0x28, 0xec, + 0xda, 0x7a, 0x4f, 0xb5, 0x87, 0x24, 0xaa, 0x9d, 0xa8, 0x7d, 0xf4, 0x29, 0x2c, 0x58, 0x06, 0xc9, + 0xf4, 0x29, 0x54, 0xf1, 0xea, 0x85, 0xf8, 0xe4, 0xde, 0xfe, 0xbc, 0x65, 0x68, 0x9c, 0x43, 0x83, + 0x97, 0x0b, 0x9f, 0xc2, 0x82, 0x89, 0x4f, 0xc6, 0x39, 0x44, 0xa6, 0x70, 0x30, 0xf1, 0xc9, 0x08, + 0x87, 0x77, 0x21, 0x4b, 0xd6, 0x40, 0x29, 0xb1, 0xe8, 0x6f, 0x65, 0x83, 0x44, 0x60, 0x19, 0x5a, + 0x83, 0x0d, 0x13, 0x6c, 0x32, 0x9f, 0xc0, 0x8e, 0x4d, 0xc0, 0x36, 0xf1, 0x89, 0xc0, 0xfe, 0x08, + 0x6e, 0x8c, 0xaf, 0x6e, 0xac, 0x3d, 0x7a, 0x6d, 0x64, 0x51, 0x24, 0xc3, 0x40, 0x5f, 0xc2, 0x82, + 0x61, 0x75, 0x54, 0x43, 0x77, 0x87, 0xdc, 0x8b, 0x28, 0xce, 0x89, 0xda, 0xa7, 0x1a, 0x95, 0x9d, + 0x6a, 0x7c, 0x61, 0xf9, 0xae, 0x6d, 0x73, 0x0e, 0xcc, 0x9f, 0x10, 0x90, 0x8c, 0x8c, 0x31, 0xd8, + 0xe2, 0x3f, 0xc4, 0x00, 0x8d, 0xa3, 0xa2, 0x63, 0xb8, 0x46, 0x24, 0x33, 0xb2, 0x0c, 0x2a, 0xda, + 0xec, 0xfa, 0xb7, 0x67, 0xb4, 0xc2, 0x30, 0x5f, 0xe1, 0xe6, 0x2d, 0x43, 0x0b, 0x0f, 0x90, 0xc9, + 0x88, 0xa8, 0x46, 0x27, 0x8b, 0xbe, 0x82, 0xc9, 0x4c, 0x7c, 0x32, 0x32, 0x99, 0x0e, 0xaf, 0x93, + 0xc9, 0x6c, 0xdc, 0xd5, 0x2d, 0x53, 0x35, 0x94, 0x83, 0xa1, 0x62, 0x5b, 0x27, 0x81, 0x82, 0x9d, + 0x15, 0x9c, 0xab, 0x67, 0xa7, 0xcb, 0xa5, 0x26, 0x3e, 0x91, 0x39, 0x5e, 0x75, 0x28, 0x5b, 0x27, + 0x13, 0xab, 0xf6, 0x92, 0x39, 0x19, 0x4b, 0x43, 0x32, 0xbc, 0x75, 0xce, 0x54, 0xa1, 0x26, 0x5f, + 0x9c, 0xf5, 0xb1, 0x26, 0xb3, 0xaa, 0xf9, 0xad, 0xbf, 0x50, 0xce, 0xff, 0xeb, 0x08, 0xd0, 0x24, + 0x6c, 0xe0, 0x8a, 0xb6, 0x3e, 0x3d, 0xbb, 0x0f, 0x21, 0x4f, 0xa6, 0xf5, 0x77, 0x14, 0x99, 0xe2, + 0x89, 0x88, 0x3a, 0x7b, 0x8b, 0xfd, 0x10, 0xf2, 0xe4, 0xc4, 0x7d, 0xaa, 0xe8, 0x34, 0x2a, 0xcb, + 0xf0, 0x2e, 0x11, 0xd0, 0x5b, 0x90, 0xd3, 0x4d, 0x92, 0xd6, 0xf3, 0x76, 0x57, 0xb0, 0xdd, 0x9b, + 0xe5, 0x23, 0xfe, 0xba, 0xcb, 0xbf, 0x89, 0xc2, 0xcd, 0x1d, 0xd5, 0xc5, 0xb6, 0xae, 0x1a, 0xfa, + 0x4f, 0xb1, 0xf6, 0x54, 0x27, 0x1b, 0x3e, 0xb4, 0xb1, 0x73, 0x84, 0x3e, 0x87, 0xf9, 0x31, 0x83, + 0xe1, 0x0a, 0xf7, 0xe6, 0x6c, 0x59, 0x87, 0x28, 0xcd, 0x46, 0x6c, 0x0a, 0xed, 0x84, 0x0d, 0x97, + 0x95, 0xb6, 0x17, 0xe3, 0x19, 0xb4, 0xec, 0x87, 0x90, 0x50, 0x1d, 0xc5, 0x3a, 0xe4, 0x31, 0xe9, + 0xf5, 0x00, 0xa3, 0x81, 0xab, 0x1b, 0x6b, 0x47, 0x46, 0x67, 0xad, 0x2d, 0x2e, 0x58, 0x45, 0x34, + 0x53, 0x9d, 0xd6, 0x21, 0x7a, 0x0f, 0x8a, 0xce, 0x91, 0x35, 0x30, 0x34, 0xe5, 0x40, 0xed, 0x1c, + 0x1f, 0xea, 0x86, 0x11, 0xea, 0x01, 0x17, 0xd8, 0x60, 0x95, 0x8f, 0x71, 0x99, 0xfd, 0x45, 0x0a, + 0x90, 0xbf, 0x9e, 0x9d, 0x81, 0xab, 0xd2, 0x78, 0x5f, 0x81, 0x24, 0x0f, 0x34, 0x4c, 0x46, 0x6f, + 0x4d, 0x8d, 0xc9, 0xe1, 0x9e, 0xf7, 0xd6, 0x9c, 0xcc, 0x09, 0xd1, 0x0f, 0x82, 0xf7, 0xa9, 0x33, + 0x4b, 0x64, 0x6b, 0x4e, 0x5c, 0xb4, 0x3e, 0x01, 0x08, 0x04, 0xa9, 0x34, 0x65, 0xf2, 0xf6, 0xcc, + 0xa9, 0xc1, 0xd6, 0x9c, 0x1c, 0x20, 0x47, 0x2d, 0x28, 0xf4, 0x43, 0x1e, 0x8c, 0x57, 0x07, 0x77, + 0x67, 0x72, 0x77, 0x5b, 0x73, 0xf2, 0x08, 0x39, 0xfa, 0x11, 0xa0, 0xce, 0x98, 0x71, 0x94, 0xe0, + 0x1b, 0x56, 0x39, 0x4a, 0xb0, 0x35, 0x27, 0x4f, 0x60, 0x83, 0xbe, 0x84, 0x9b, 0xbd, 0xc9, 0x7a, + 0xcc, 0xeb, 0x84, 0x69, 0x0d, 0xf1, 0x29, 0xda, 0xbf, 0x35, 0x27, 0x4f, 0x63, 0x88, 0x9e, 0x40, + 0xc2, 0x71, 0x49, 0x1a, 0x18, 0xa3, 0x29, 0xf8, 0xfd, 0x29, 0x9c, 0xc7, 0x75, 0x64, 0x6d, 0x8f, + 0x90, 0x89, 0xe4, 0x87, 0xf2, 0x40, 0xcf, 0x20, 0xe3, 0x55, 0xd1, 0xfc, 0xfa, 0xe5, 0x83, 0xd9, + 0x19, 0x7a, 0xe9, 0xa6, 0x48, 0x46, 0x3d, 0x5e, 0xa8, 0x02, 0xd9, 0x1e, 0x47, 0xf3, 0xdb, 0x9e, + 0x2b, 0xbc, 0xb7, 0x00, 0x82, 0x03, 0xf5, 0x9d, 0x81, 0x2f, 0x19, 0x04, 0x51, 0x83, 0xa6, 0xd6, + 0xb6, 0x65, 0x18, 0xc4, 0x36, 0x68, 0xca, 0xe3, 0xa5, 0xd6, 0x02, 0x5a, 0xfe, 0x14, 0x12, 0x74, + 0x4f, 0x24, 0xa5, 0xdd, 0x6f, 0x3e, 0x69, 0xb6, 0x9e, 0x35, 0x59, 0x8a, 0x52, 0xab, 0x6f, 0xd7, + 0xdb, 0x75, 0xa5, 0xd5, 0xdc, 0x26, 0x29, 0xca, 0x6b, 0x70, 0x9d, 0x03, 0x2a, 0xcd, 0x9a, 0xf2, + 0x4c, 0x6e, 0x88, 0xa1, 0x68, 0x79, 0x35, 0x98, 0x33, 0xa7, 0x21, 0xde, 0x6c, 0x35, 0xeb, 0xd2, + 0x1c, 0xcd, 0x9e, 0x6b, 0x35, 0x29, 0x42, 0xb3, 0x67, 0xb9, 0xb5, 0x2b, 0x45, 0x99, 0xf5, 0x55, + 0x73, 0x00, 0x9a, 0x27, 0x87, 0xc7, 0xf1, 0x74, 0x52, 0x4a, 0x95, 0xff, 0x3e, 0x02, 0x69, 0x12, + 0xa8, 0x1b, 0xe6, 0xa1, 0x85, 0x3e, 0x80, 0x4c, 0x5f, 0xb5, 0xb1, 0xe9, 0xfa, 0x9e, 0x56, 0x34, + 0xa0, 0xd3, 0xbb, 0x74, 0xc0, 0xeb, 0x8f, 0xa6, 0x19, 0x62, 0x43, 0x43, 0x9b, 0x20, 0x71, 0x22, + 0xa7, 0x73, 0x84, 0x7b, 0xaa, 0x1f, 0x77, 0x6e, 0x79, 0x2d, 0x7e, 0x3a, 0xbe, 0x47, 0x87, 0x3d, + 0x0e, 0x85, 0x7e, 0x10, 0x7a, 0x4e, 0x97, 0x92, 0xfb, 0x8e, 0xbf, 0x7a, 0x1b, 0x8a, 0x23, 0x81, + 0xf2, 0x9c, 0xae, 0xd0, 0x0a, 0xed, 0x0a, 0xc5, 0x7c, 0xbf, 0xef, 0x75, 0x85, 0xa2, 0xbc, 0x21, + 0xf4, 0x81, 0xdf, 0xf2, 0x21, 0x07, 0x1c, 0xaf, 0xbe, 0xc6, 0xc3, 0xc3, 0xfc, 0x39, 0xdd, 0x9e, + 0x5d, 0x98, 0xef, 0x59, 0x9a, 0x7e, 0x48, 0x8a, 0x16, 0xa2, 0x1d, 0xae, 0xde, 0xc3, 0x3c, 0xa5, + 0x9d, 0xc9, 0x77, 0x4a, 0x41, 0x6a, 0x32, 0x88, 0x9a, 0x50, 0xd0, 0x88, 0xd7, 0x20, 0x75, 0x21, + 0xeb, 0xd5, 0x5c, 0xa7, 0x3e, 0x7d, 0x79, 0x8a, 0x26, 0x8b, 0xc3, 0xf2, 0xea, 0xfc, 0xbc, 0x20, + 0x67, 0x1d, 0x9d, 0xd0, 0x19, 0xc6, 0x67, 0x3c, 0xc3, 0x03, 0x58, 0x1c, 0x98, 0xf8, 0x65, 0xdf, + 0x72, 0xb0, 0xa6, 0x8c, 0x9d, 0xe6, 0x2a, 0xe5, 0x72, 0x97, 0x73, 0xb9, 0xb9, 0x2f, 0x30, 0x27, + 0x1e, 0xeb, 0xcd, 0xc1, 0xc4, 0x61, 0x0d, 0x3d, 0x82, 0x94, 0x68, 0xdc, 0xa6, 0xe9, 0x0e, 0x67, + 0xf5, 0xf2, 0xa2, 0x6a, 0xe5, 0xd4, 0x68, 0x13, 0x0a, 0x26, 0x7e, 0x19, 0xbc, 0x97, 0xc8, 0x84, + 0x0c, 0x34, 0xd7, 0xc4, 0x2f, 0x27, 0x5f, 0x4a, 0xe4, 0x4c, 0x7f, 0x44, 0x43, 0x2d, 0x48, 0x1f, + 0xaa, 0x3d, 0xdd, 0xd0, 0xb1, 0x53, 0xba, 0x41, 0x57, 0xf4, 0xde, 0xb9, 0x2b, 0x1a, 0xbd, 0xc2, + 0x11, 0x16, 0x2d, 0x98, 0x78, 0x0b, 0xa3, 0x80, 0x21, 0x59, 0xd8, 0xcd, 0xf1, 0x85, 0x89, 0x2b, + 0x9c, 0xd0, 0x75, 0x0e, 0x5d, 0x18, 0xff, 0xd2, 0xd0, 0x67, 0x90, 0x0f, 0x67, 0x0e, 0x70, 0x89, + 0xcc, 0x21, 0xd7, 0x0f, 0xa6, 0x0d, 0x9b, 0x90, 0x12, 0x29, 0x43, 0xf6, 0x12, 0x29, 0x83, 0x20, + 0x46, 0x55, 0x92, 0x8f, 0xbd, 0x74, 0xfd, 0x02, 0x25, 0xe7, 0x77, 0x4b, 0xcf, 0x4e, 0x97, 0xb3, + 0x64, 0x87, 0x13, 0xae, 0x45, 0xb2, 0xa6, 0x07, 0xd7, 0xd0, 0x63, 0x00, 0xef, 0x3d, 0x96, 0x43, + 0x6f, 0x03, 0xa7, 0xf7, 0x8c, 0x76, 0x05, 0xa2, 0xbf, 0x24, 0x39, 0x40, 0x8d, 0x76, 0x20, 0x23, + 0x9c, 0x2e, 0xeb, 0x0e, 0x4e, 0x8f, 0x87, 0xe3, 0x21, 0x40, 0x38, 0x7e, 0x8f, 0x03, 0x29, 0xd1, + 0x0d, 0xac, 0x3a, 0x98, 0xb7, 0x9c, 0x1e, 0xce, 0x98, 0xaf, 0x33, 0x1d, 0xdf, 0x38, 0x52, 0xcd, + 0x2e, 0xde, 0x26, 0xf4, 0xd5, 0x68, 0x29, 0x22, 0x33, 0x56, 0xa8, 0x09, 0x12, 0x15, 0x59, 0x30, + 0xa2, 0x48, 0x54, 0x6a, 0x6f, 0x08, 0xff, 0x48, 0xa4, 0x36, 0x35, 0xaa, 0x50, 0x9d, 0xda, 0xf1, + 0x23, 0xcb, 0xf7, 0xa0, 0x70, 0x68, 0xd9, 0x3d, 0xd5, 0x55, 0x84, 0xfb, 0x9a, 0xf7, 0x7b, 0xdf, + 0x5f, 0x9f, 0x2e, 0xe7, 0x37, 0xe9, 0xa8, 0x70, 0x5d, 0xf9, 0xc3, 0xe0, 0x27, 0xaa, 0x8a, 0x00, + 0xcc, 0xee, 0xba, 0xdf, 0xfc, 0x46, 0x61, 0x4d, 0x88, 0xbb, 0xef, 0x40, 0xc1, 0x3a, 0x3c, 0x34, + 0x74, 0x13, 0x2b, 0x36, 0x56, 0x1d, 0xcb, 0x2c, 0xbd, 0x19, 0xf0, 0xbf, 0x79, 0x3e, 0x26, 0xd3, + 0x21, 0xd4, 0x84, 0x24, 0x6d, 0x55, 0x38, 0xa5, 0x05, 0x7a, 0x3c, 0x97, 0x6c, 0x7b, 0xc8, 0x9c, + 0x0b, 0xba, 0x03, 0xf0, 0x42, 0xc7, 0x27, 0xca, 0xf3, 0x01, 0xb6, 0x87, 0xa5, 0x52, 0xb0, 0x9b, + 0x44, 0xe0, 0x9f, 0x11, 0x30, 0xfa, 0x0e, 0x2c, 0xe8, 0x8e, 0x12, 0x4c, 0x42, 0x14, 0x32, 0x58, + 0x7a, 0x3b, 0x10, 0x89, 0x91, 0xee, 0x8c, 0x26, 0x30, 0xe8, 0x7d, 0xc8, 0x68, 0xb8, 0x8f, 0x4d, + 0xcd, 0x69, 0x99, 0xa5, 0xd7, 0x68, 0x51, 0x7c, 0xed, 0xec, 0x74, 0x39, 0x53, 0x13, 0x40, 0xee, + 0xe4, 0x7c, 0x2c, 0xf4, 0x29, 0x14, 0xbc, 0x8f, 0xf6, 0xb0, 0x8f, 0x9d, 0xd2, 0x7b, 0x94, 0xae, + 0x44, 0x0e, 0xb6, 0x16, 0x1a, 0x11, 0x81, 0x2f, 0x8c, 0x8f, 0xbe, 0x84, 0x1c, 0x83, 0x60, 0xad, + 0x65, 0x56, 0x87, 0xa5, 0x45, 0x2a, 0xa7, 0x07, 0x33, 0xca, 0xc9, 0xef, 0xa5, 0x7a, 0xb7, 0x76, + 0xb5, 0x00, 0x37, 0x39, 0xc4, 0x1b, 0xfd, 0x7f, 0xc8, 0x09, 0x3d, 0x7c, 0x6c, 0x1d, 0x38, 0xa5, + 0x6f, 0x9d, 0x7b, 0x35, 0x36, 0x3a, 0xd7, 0x8e, 0x4f, 0x2a, 0xbc, 0x4c, 0x90, 0x1b, 0x6a, 0x03, + 0x29, 0x20, 0x45, 0xe4, 0xe8, 0x50, 0x7b, 0x50, 0xbe, 0xb4, 0x0e, 0x88, 0xca, 0xaf, 0xad, 0x44, + 0x56, 0x63, 0x5e, 0x4a, 0xb0, 0xd0, 0xc4, 0x27, 0x41, 0xab, 0x79, 0x6c, 0x1d, 0x34, 0x6a, 0xf2, + 0x82, 0x39, 0x0e, 0xd5, 0xd0, 0xe7, 0x90, 0x0f, 0x3e, 0x95, 0x70, 0x4a, 0xb7, 0xce, 0x6d, 0x21, + 0x8d, 0x19, 0xa7, 0xff, 0x78, 0xc2, 0x91, 0x73, 0x4e, 0xe0, 0x0b, 0xdd, 0x86, 0x8c, 0x66, 0x5b, + 0x7d, 0x16, 0xc5, 0x5f, 0xa7, 0x0b, 0x14, 0x0d, 0x50, 0xdb, 0xea, 0xd3, 0xf0, 0xac, 0x40, 0xc1, + 0xc6, 0x7d, 0x43, 0xed, 0xe0, 0x1e, 0x09, 0x8a, 0xd6, 0x61, 0x69, 0x89, 0xce, 0xbe, 0x3e, 0xf3, + 0xf1, 0x78, 0xc4, 0xc2, 0x3e, 0x02, 0xfc, 0x5a, 0x87, 0x68, 0x1f, 0x40, 0x1d, 0x68, 0xba, 0xab, + 0xf4, 0x2c, 0x0d, 0x97, 0x96, 0xcf, 0x7d, 0x5a, 0x35, 0xca, 0xbc, 0x42, 0x08, 0x77, 0x2c, 0x0d, + 0x7b, 0xb7, 0xde, 0x02, 0x80, 0xde, 0x87, 0x2c, 0xdd, 0x1a, 0x97, 0xfe, 0x0a, 0xdd, 0xdc, 0x3c, + 0x97, 0x7e, 0xa6, 0x66, 0x5b, 0x7d, 0x26, 0x72, 0x2a, 0x00, 0x26, 0x67, 0x07, 0x72, 0xdd, 0x8e, + 0xe2, 0xbb, 0xd3, 0xdb, 0x54, 0x37, 0x3e, 0x99, 0x71, 0x2d, 0x8f, 0x36, 0x26, 0x38, 0xd8, 0x6b, + 0x22, 0x2e, 0x3c, 0xda, 0x10, 0x30, 0x47, 0xce, 0x76, 0x3b, 0xde, 0x07, 0x29, 0xba, 0x59, 0xaf, + 0x9c, 0x1b, 0x74, 0x39, 0x58, 0x74, 0xb3, 0x11, 0x66, 0xd2, 0x4d, 0xe0, 0x4d, 0x75, 0x85, 0x16, + 0xac, 0xec, 0xcc, 0xee, 0xcc, 0x9e, 0x79, 0x15, 0x18, 0x75, 0xc5, 0x69, 0x1d, 0xd2, 0x83, 0xed, + 0x40, 0xce, 0x1a, 0xb8, 0x07, 0xd6, 0xc0, 0xd4, 0x94, 0xc3, 0x63, 0xa7, 0xf4, 0x06, 0xdd, 0xed, + 0x85, 0x5a, 0xa7, 0xde, 0xee, 0x5a, 0x9c, 0xd1, 0xe6, 0x13, 0x47, 0xce, 0x0a, 0xae, 0x9b, 0xc7, + 0x0e, 0xfa, 0x09, 0x64, 0x75, 0xd3, 0x9f, 0xe3, 0xee, 0xc5, 0xe7, 0x40, 0xa2, 0xea, 0x68, 0x98, + 0xde, 0x14, 0xc0, 0x79, 0x92, 0x19, 0x7e, 0x16, 0x81, 0x95, 0x6f, 0x68, 0xb9, 0x3a, 0xa5, 0x77, + 0xce, 0xbd, 0xb1, 0x9e, 0xa1, 0xe7, 0xfa, 0xfa, 0x79, 0x3d, 0x57, 0x07, 0x95, 0x21, 0xe3, 0xe2, + 0x5e, 0xdf, 0xb2, 0x55, 0x7b, 0x58, 0x7a, 0x2b, 0xf8, 0x08, 0xc1, 0x03, 0xa3, 0x1f, 0x43, 0x71, + 0xb4, 0x29, 0x76, 0xef, 0x0a, 0x4d, 0x31, 0xb9, 0x10, 0x6e, 0x00, 0xa2, 0x35, 0x5a, 0x86, 0xb0, + 0xbb, 0x1e, 0x45, 0x35, 0x0c, 0xe5, 0x60, 0x58, 0x7a, 0x37, 0xd8, 0x90, 0xf0, 0x46, 0x2b, 0x86, + 0x51, 0x1d, 0x2e, 0xfe, 0x2a, 0x02, 0xf3, 0x63, 0x71, 0x1b, 0xfd, 0x18, 0x52, 0xa6, 0xa5, 0x05, + 0x9e, 0x87, 0xd4, 0xb9, 0xfc, 0x93, 0x4d, 0x4b, 0x63, 0xaf, 0x43, 0x3e, 0xe8, 0xea, 0xee, 0xd1, + 0xe0, 0x60, 0xad, 0x63, 0xf5, 0xee, 0x7b, 0x2b, 0xd7, 0x0e, 0xfc, 0xbf, 0xef, 0xf7, 0x8f, 0xbb, + 0xf7, 0xe9, 0x5f, 0xfd, 0x83, 0x35, 0x46, 0x26, 0x27, 0x09, 0xd7, 0x86, 0x86, 0xde, 0x83, 0x22, + 0x7e, 0xd9, 0xd7, 0xed, 0x40, 0xf5, 0x10, 0x0d, 0xf8, 0x9d, 0x82, 0x3f, 0x48, 0x94, 0x94, 0x5f, + 0xc4, 0xff, 0x26, 0x0a, 0xc5, 0x91, 0x70, 0x48, 0x2a, 0x1f, 0xda, 0xa4, 0x0a, 0x55, 0x3e, 0x04, + 0x72, 0xce, 0x6b, 0x8f, 0xe0, 0x6b, 0xc5, 0xd8, 0x55, 0x5f, 0x2b, 0x86, 0x9f, 0x16, 0x25, 0x2e, + 0xf0, 0xb4, 0xe8, 0x23, 0xb8, 0xa1, 0x3b, 0x8a, 0x69, 0x99, 0xe2, 0x8a, 0xc1, 0x6b, 0xbb, 0x04, + 0xdf, 0xf6, 0x5d, 0xd3, 0x9d, 0xa6, 0x65, 0xb2, 0xcb, 0x05, 0x6f, 0xd7, 0xfe, 0x33, 0xc0, 0xd4, + 0xf8, 0x33, 0x40, 0xaf, 0x4b, 0x1f, 0x97, 0x12, 0x8b, 0xff, 0x1a, 0x81, 0x4c, 0xf0, 0x3d, 0x7e, + 0x34, 0xdc, 0x3b, 0x1c, 0xab, 0x06, 0x2f, 0xf9, 0xcc, 0x27, 0x2c, 0x85, 0xd8, 0x05, 0xa4, 0x70, + 0x1b, 0x12, 0x07, 0x43, 0x51, 0xa3, 0xa5, 0xab, 0x39, 0x3e, 0x5b, 0xbc, 0x4a, 0xea, 0x81, 0xf8, + 0xc1, 0x50, 0x3c, 0x99, 0x5a, 0xfc, 0x63, 0xc8, 0x06, 0xe2, 0xee, 0x68, 0x6f, 0x22, 0x72, 0x89, + 0xde, 0xc4, 0x1b, 0x90, 0xe4, 0x61, 0x81, 0xe9, 0x5e, 0x9e, 0x53, 0x27, 0x58, 0x48, 0x48, 0x7c, + 0x49, 0xc2, 0x01, 0x9f, 0xfd, 0x7f, 0x62, 0x90, 0x0b, 0x46, 0x50, 0x62, 0xeb, 0xba, 0xd9, 0xb1, + 0x69, 0xf8, 0xa2, 0xb3, 0xc7, 0xbc, 0x07, 0x47, 0x02, 0x4c, 0xe2, 0x6a, 0x4f, 0x37, 0x15, 0xfa, + 0x58, 0x25, 0xa4, 0xdf, 0xe9, 0x9e, 0x6e, 0x3e, 0x25, 0x50, 0x8a, 0xa2, 0xbe, 0xe4, 0x28, 0xb1, + 0x10, 0x8a, 0xfa, 0x92, 0xa1, 0x2c, 0xd2, 0x54, 0xd5, 0x76, 0xa9, 0x84, 0x62, 0x81, 0x14, 0xd4, + 0x76, 0x83, 0xef, 0x0e, 0x13, 0x93, 0xde, 0x1d, 0x9a, 0x50, 0xf0, 0x73, 0x86, 0x13, 0x13, 0xdb, + 0xfc, 0xc2, 0xa1, 0x72, 0x89, 0xa4, 0xc1, 0xff, 0x20, 0x8c, 0x44, 0x14, 0x77, 0x82, 0x40, 0x92, + 0x95, 0x76, 0xd4, 0xce, 0x11, 0x56, 0x1c, 0xfd, 0xa7, 0xac, 0x21, 0xe0, 0x89, 0x85, 0xc2, 0xf7, + 0xf4, 0x9f, 0xe2, 0xc5, 0xbf, 0x8d, 0x40, 0x3e, 0xc4, 0x0b, 0x35, 0xa0, 0x48, 0x57, 0x37, 0xd6, + 0xe0, 0xbe, 0xed, 0xbd, 0xd0, 0x27, 0xc3, 0x13, 0x8b, 0xd9, 0xbc, 0x15, 0x18, 0xd2, 0x48, 0x1e, + 0xca, 0x58, 0x79, 0xef, 0xdb, 0xc2, 0x6a, 0x9c, 0xa3, 0x9c, 0xc2, 0x8f, 0xdc, 0x72, 0x96, 0x0f, + 0xd3, 0x82, 0xed, 0xf8, 0x45, 0x13, 0xb2, 0x81, 0xcc, 0x65, 0x06, 0xfb, 0xf9, 0x2e, 0xc4, 0x3d, + 0x6f, 0x36, 0x6b, 0x1f, 0xd9, 0xf5, 0x5d, 0xdc, 0x2f, 0x22, 0xb0, 0x30, 0x29, 0x83, 0x08, 0xd9, + 0x25, 0xd3, 0xb6, 0x99, 0xec, 0xf2, 0x4e, 0x30, 0xb3, 0x63, 0x1a, 0x28, 0xfa, 0x25, 0x7e, 0x6e, + 0xf7, 0xa6, 0x67, 0x07, 0x4c, 0x01, 0x8b, 0x21, 0x3b, 0x20, 0x15, 0x5c, 0xd0, 0x12, 0xfe, 0x23, + 0x06, 0x85, 0x91, 0xfb, 0x97, 0xa7, 0x90, 0xec, 0x1a, 0xd6, 0x81, 0x6a, 0xf0, 0xbe, 0xf5, 0xf7, + 0x2e, 0x15, 0xca, 0xd6, 0x1e, 0x51, 0x1e, 0x5b, 0x73, 0x32, 0xe7, 0x86, 0x1c, 0x98, 0x0f, 0x5e, + 0xb4, 0xb0, 0x9f, 0x12, 0x31, 0xc9, 0xd6, 0x2f, 0x37, 0x85, 0x7f, 0x13, 0x43, 0x11, 0xb7, 0xe6, + 0xe4, 0xa2, 0x1d, 0x06, 0xa1, 0x1e, 0x14, 0x47, 0x6e, 0x77, 0xf8, 0xa5, 0xc0, 0xc6, 0x55, 0xa7, + 0x94, 0xad, 0x93, 0x2d, 0x9a, 0xf7, 0x06, 0x00, 0x8b, 0xff, 0x0f, 0x8a, 0x23, 0x8b, 0x22, 0xe7, + 0xc1, 0x70, 0x78, 0x54, 0x2b, 0x10, 0x1f, 0xc6, 0x90, 0x9a, 0x6a, 0x0f, 0xcb, 0x7c, 0x94, 0x9f, + 0xc7, 0x5d, 0xc8, 0x87, 0xa6, 0x40, 0x05, 0x88, 0xaa, 0xec, 0x11, 0x61, 0x46, 0x8e, 0xaa, 0xfc, + 0xf9, 0xe1, 0x62, 0x01, 0x92, 0x4c, 0xbe, 0x41, 0xfd, 0xae, 0x02, 0xa4, 0x45, 0xfe, 0x50, 0x5e, + 0x85, 0x8c, 0x97, 0x48, 0xa3, 0x1c, 0xa4, 0x6b, 0x8d, 0xbd, 0x4a, 0x75, 0xbb, 0x5e, 0x93, 0xe6, + 0x50, 0x1e, 0x32, 0x72, 0xbd, 0x52, 0xa3, 0x5d, 0x57, 0x29, 0xf2, 0x71, 0xfa, 0xcf, 0x7e, 0xb1, + 0x1c, 0xe1, 0x41, 0x26, 0x29, 0xa5, 0x1e, 0xc7, 0xd3, 0x48, 0xba, 0x56, 0xfe, 0x53, 0x00, 0x54, + 0x53, 0x5d, 0x95, 0x08, 0xe5, 0x02, 0xbd, 0xc9, 0xe8, 0x39, 0xd6, 0x34, 0xb1, 0xcd, 0x18, 0xbf, + 0x4a, 0x9b, 0xf1, 0x52, 0xdd, 0xce, 0xf1, 0xde, 0x64, 0xf2, 0x4a, 0xbd, 0xc9, 0x70, 0xe7, 0x27, + 0x76, 0xa5, 0xce, 0xcf, 0x53, 0x48, 0xb1, 0x3a, 0x93, 0xbd, 0x33, 0x9b, 0xde, 0x58, 0x18, 0x3f, + 0x1a, 0xde, 0xaf, 0x71, 0xea, 0xa6, 0x6b, 0x0f, 0xbd, 0x37, 0x31, 0x0c, 0xe6, 0x37, 0x48, 0xd2, + 0xaf, 0xb2, 0x41, 0x92, 0x99, 0xde, 0x20, 0xf9, 0x11, 0x70, 0xcb, 0x10, 0x69, 0x31, 0x9c, 0xfb, + 0x3c, 0x64, 0xc2, 0x76, 0x98, 0x19, 0xf0, 0xbc, 0x38, 0x67, 0x07, 0xbe, 0xd0, 0x4f, 0x00, 0x89, + 0xbb, 0xd9, 0x80, 0xe4, 0xd9, 0xb5, 0xce, 0xfb, 0x53, 0xb7, 0x46, 0x09, 0x26, 0x1d, 0x80, 0x78, + 0x13, 0xee, 0x8d, 0x39, 0x8b, 0x4f, 0x01, 0x78, 0x8b, 0xd7, 0x3c, 0xb4, 0x66, 0x08, 0x14, 0x2b, + 0x90, 0x22, 0x0e, 0xb8, 0x8f, 0x99, 0x05, 0xa4, 0x3d, 0x5d, 0x11, 0x60, 0x6e, 0xb7, 0x7d, 0xc8, + 0x05, 0x8f, 0x09, 0x49, 0x10, 0x3b, 0xc6, 0x43, 0x6e, 0xde, 0xe4, 0x4f, 0xf4, 0x18, 0x12, 0x7e, + 0x86, 0x31, 0xfd, 0xb9, 0xf8, 0xd4, 0xf3, 0x27, 0x0b, 0x96, 0x19, 0x8b, 0x8f, 0xa3, 0x0f, 0x69, + 0x9a, 0x9d, 0x0b, 0x8a, 0x12, 0x35, 0x21, 0xef, 0x0c, 0xec, 0x17, 0xfa, 0x0b, 0xd5, 0x50, 0xba, + 0x96, 0x6a, 0xd0, 0x89, 0x0a, 0xeb, 0x77, 0xa6, 0x3d, 0xb7, 0xe2, 0xb8, 0x8f, 0x2c, 0xd5, 0x10, + 0xed, 0x11, 0x27, 0x00, 0x43, 0x1f, 0x79, 0xd7, 0x82, 0xfc, 0x1e, 0x9d, 0x5f, 0x31, 0x23, 0x6e, + 0x8a, 0x41, 0x5f, 0x27, 0x3a, 0xc0, 0x0c, 0x44, 0xa2, 0x3b, 0x57, 0x12, 0x4c, 0x9f, 0x42, 0x8b, + 0xd6, 0xbe, 0x17, 0xdd, 0x19, 0x5e, 0xdd, 0x1c, 0xf4, 0xfc, 0xe8, 0x6e, 0xfb, 0x30, 0x0d, 0x6d, + 0x41, 0xc6, 0x8b, 0xe7, 0xd4, 0x05, 0x14, 0xd6, 0xdf, 0x38, 0x47, 0x62, 0xbb, 0x23, 0x5d, 0x0b, + 0x9f, 0xd8, 0x4b, 0xb3, 0x23, 0x52, 0xd4, 0xf7, 0x88, 0xe5, 0xdf, 0xe7, 0xa0, 0xd0, 0x1e, 0xf6, + 0x27, 0x79, 0xc0, 0xd8, 0x14, 0x0f, 0x18, 0x9f, 0xed, 0x76, 0x26, 0x73, 0xb5, 0xdb, 0x19, 0x78, + 0xb5, 0xb7, 0x33, 0xd9, 0x57, 0xe8, 0x01, 0x0b, 0x57, 0xf2, 0x80, 0xaf, 0xec, 0xb6, 0x2e, 0x7a, + 0x89, 0xdb, 0xba, 0xef, 0x43, 0x5e, 0xb5, 0x6d, 0x75, 0xc8, 0x7f, 0x8f, 0xa3, 0x51, 0x77, 0x99, + 0x67, 0xa7, 0x74, 0x76, 0xba, 0x9c, 0xad, 0x90, 0x41, 0xfa, 0x13, 0x1c, 0xc1, 0x21, 0xab, 0x7a, + 0x20, 0xcd, 0xf7, 0xb2, 0xf9, 0x57, 0xe9, 0x65, 0x8b, 0xd3, 0xbd, 0x6c, 0x0d, 0xe2, 0xf4, 0x07, + 0x3f, 0x4c, 0xf3, 0xa7, 0x89, 0x3c, 0xac, 0xc0, 0x6b, 0x81, 0xdf, 0xfc, 0x50, 0x6a, 0xf4, 0x13, + 0x58, 0x14, 0xaf, 0x6a, 0x89, 0x46, 0xf8, 0xb7, 0xa9, 0x81, 0x9f, 0x53, 0x95, 0xcf, 0x4e, 0x97, + 0x4b, 0xb2, 0x8f, 0xe5, 0xf3, 0x63, 0xd5, 0x20, 0x91, 0x45, 0xc9, 0x9e, 0x38, 0xae, 0x39, 0xe8, + 0x0b, 0xc8, 0x51, 0x0b, 0xef, 0xe1, 0xde, 0x01, 0xb6, 0x45, 0xc0, 0x7d, 0x30, 0xdb, 0x7a, 0x89, + 0xa9, 0xef, 0x50, 0x42, 0xd1, 0x41, 0xc3, 0x1e, 0xc4, 0x41, 0x0f, 0x20, 0xa1, 0x1a, 0x3a, 0x8d, + 0x97, 0xdf, 0xf4, 0xfb, 0x3e, 0x86, 0xc8, 0x5e, 0x23, 0x07, 0x43, 0x93, 0x74, 0x7e, 0xef, 0x33, + 0xbc, 0x9a, 0xe9, 0x61, 0x69, 0xf1, 0xe7, 0x31, 0x00, 0x7f, 0xb1, 0xe8, 0xbb, 0x70, 0xb3, 0x7f, + 0x34, 0x74, 0xf4, 0x8e, 0x6a, 0x28, 0x36, 0xee, 0xdb, 0xd8, 0xc1, 0x26, 0xcb, 0xff, 0xa9, 0x5e, + 0xe7, 0xe4, 0x1b, 0x62, 0x58, 0x0e, 0x8d, 0xa2, 0x4f, 0xe0, 0x86, 0x61, 0x75, 0x27, 0xd1, 0x05, + 0xbb, 0x1f, 0xd7, 0x39, 0xce, 0x08, 0xb1, 0x4a, 0x6a, 0xb6, 0xbe, 0x7a, 0xa0, 0x1b, 0x7e, 0x43, + 0xe4, 0x93, 0x8b, 0x0a, 0x7a, 0x6d, 0xc3, 0x63, 0x21, 0x9e, 0xd7, 0xf8, 0x4c, 0xd1, 0x8f, 0xc7, + 0x5f, 0x28, 0x7c, 0x7c, 0xe1, 0x19, 0xa6, 0x3f, 0x54, 0x28, 0xbf, 0x01, 0xe0, 0xcf, 0x4f, 0x2f, + 0xfe, 0xb7, 0xb7, 0xfd, 0xb4, 0x95, 0x3f, 0x21, 0x28, 0xdf, 0xfb, 0x86, 0x77, 0x02, 0x00, 0x49, + 0xb9, 0xbe, 0xd3, 0x7a, 0x5a, 0x17, 0x2f, 0x05, 0x16, 0x5b, 0x23, 0x91, 0x70, 0x3c, 0x72, 0x45, + 0x66, 0x8c, 0x5c, 0xfc, 0xf2, 0xfe, 0x7d, 0x88, 0x13, 0x63, 0x22, 0xb3, 0xd7, 0x9b, 0xfb, 0x3b, + 0xd2, 0x1c, 0xca, 0x40, 0xa2, 0xb2, 0xdd, 0xa8, 0xec, 0x49, 0x11, 0xb4, 0x00, 0xd2, 0xce, 0xfe, + 0x76, 0xbb, 0x21, 0xd7, 0x1f, 0x35, 0x5a, 0x4d, 0x85, 0x22, 0x04, 0x43, 0xcb, 0xdf, 0xc4, 0x41, + 0x62, 0x8e, 0x67, 0x42, 0x70, 0x89, 0x5e, 0xe2, 0xea, 0xff, 0x0f, 0x9e, 0xe3, 0x4d, 0x0c, 0x4c, + 0x89, 0x57, 0x94, 0xcf, 0x27, 0xaf, 0x90, 0xcf, 0xa7, 0x5e, 0xdd, 0x5b, 0x83, 0x59, 0x23, 0x50, + 0x38, 0x04, 0xc6, 0xaf, 0x12, 0x02, 0x03, 0x3a, 0xf2, 0xcb, 0x28, 0x40, 0x40, 0x3b, 0x7e, 0x10, + 0xfc, 0x07, 0x38, 0xa6, 0xdf, 0x76, 0x8f, 0x94, 0xb0, 0x5b, 0x73, 0xe2, 0x9f, 0xe7, 0x78, 0x04, + 0x69, 0x8d, 0xe7, 0x8d, 0x3c, 0xbd, 0x7c, 0x7b, 0xe6, 0xf4, 0x72, 0x6b, 0x4e, 0xf6, 0x88, 0xd1, + 0x27, 0xa1, 0xdf, 0x54, 0xdf, 0x9d, 0xc9, 0xf8, 0xb7, 0xc4, 0x0f, 0x0d, 0x2a, 0x90, 0x64, 0x51, + 0x9a, 0x8b, 0x69, 0xea, 0xef, 0x54, 0x47, 0x8c, 0x63, 0x6b, 0x4e, 0xe6, 0x84, 0xbc, 0xdc, 0x4d, + 0x41, 0x62, 0x60, 0xea, 0x96, 0x79, 0x4f, 0x0e, 0x3e, 0x8e, 0x17, 0xbd, 0x5d, 0xe2, 0x2f, 0xe8, + 0xdf, 0xaa, 0x8b, 0x35, 0xf6, 0x06, 0x69, 0xdf, 0x7c, 0xe1, 0x01, 0x22, 0xa8, 0x00, 0xc0, 0xc7, + 0x75, 0xb3, 0x2b, 0x45, 0x69, 0x91, 0x4c, 0x92, 0x75, 0xf2, 0x15, 0xbb, 0xf7, 0x7d, 0x90, 0x46, + 0x7f, 0x28, 0x1b, 0xf0, 0x32, 0xf3, 0x90, 0xdf, 0x79, 0xba, 0xb1, 0xd1, 0x6e, 0xec, 0xd4, 0xf7, + 0xda, 0x95, 0x9d, 0x5d, 0xf6, 0xea, 0xba, 0x4d, 0x2a, 0xec, 0x56, 0xa3, 0x26, 0x45, 0xef, 0x1d, + 0xc0, 0xcd, 0x29, 0xbf, 0xac, 0x46, 0x37, 0xe1, 0x5a, 0xb3, 0xd5, 0x56, 0x1a, 0xb5, 0x7a, 0xb3, + 0xdd, 0x68, 0x7f, 0xa1, 0x6c, 0xb4, 0xb6, 0xf7, 0x77, 0x9a, 0xd2, 0x1c, 0xf1, 0x18, 0x8f, 0xea, + 0xcd, 0xba, 0x5c, 0x69, 0xd7, 0x6b, 0x4a, 0x65, 0xfb, 0x59, 0xe5, 0x0b, 0xe2, 0x47, 0x4a, 0xb0, + 0xe0, 0x43, 0xab, 0x5f, 0x78, 0xff, 0xda, 0x46, 0xf4, 0xde, 0xf7, 0xa1, 0x38, 0x62, 0xcc, 0xc4, + 0xe9, 0xed, 0xee, 0x57, 0xb7, 0x1b, 0x1b, 0x13, 0x5f, 0x4c, 0xa1, 0x2c, 0xa4, 0x5a, 0x9b, 0x9b, + 0xdb, 0x8d, 0x66, 0x5d, 0x8a, 0xdd, 0xfb, 0x10, 0x72, 0xc1, 0xe4, 0x1e, 0x49, 0x90, 0xfb, 0x61, + 0xab, 0x59, 0x57, 0x36, 0x2b, 0x8d, 0xed, 0x7d, 0x99, 0xec, 0x12, 0x41, 0x81, 0x7b, 0x2f, 0x01, + 0x8b, 0xdc, 0x7b, 0x17, 0xf2, 0xa1, 0x4c, 0x9a, 0xf0, 0x14, 0x4b, 0x9a, 0x23, 0x32, 0x15, 0xff, + 0x5a, 0x48, 0xbd, 0x26, 0x45, 0xaa, 0xab, 0xbf, 0xfd, 0xaf, 0xa5, 0xb9, 0xdf, 0x9e, 0x2d, 0x45, + 0x7e, 0x77, 0xb6, 0x14, 0xf9, 0xfd, 0xd9, 0x52, 0xe4, 0x3f, 0xcf, 0x96, 0x22, 0x7f, 0xf9, 0xd5, + 0xd2, 0xdc, 0xef, 0xbe, 0x5a, 0x9a, 0xfb, 0xfd, 0x57, 0x4b, 0x73, 0x3f, 0x4c, 0xb2, 0x7f, 0xcc, + 0xe6, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xa7, 0x21, 0x39, 0xd8, 0x37, 0x47, 0x00, 0x00, } func (this *ForeignKeyReference) Equal(that interface{}) bool { diff --git a/pkg/sql/catalog/descpb/structured.proto b/pkg/sql/catalog/descpb/structured.proto index bb7cb968be03..771cceac238b 100644 --- a/pkg/sql/catalog/descpb/structured.proto +++ b/pkg/sql/catalog/descpb/structured.proto @@ -859,6 +859,8 @@ message TableDescriptor { // leasable. The reason that they do not exist in a message of their own is // to ease the migration burden as not all descriptors initially had all of // these fields but many had some. + // + // TODO(postamar): remove draining_names from this comment in 22.2 // The table name. It should be normalized using NormalizeName() before // comparing it. @@ -892,12 +894,15 @@ message TableDescriptor { // hlc timestamp to ensure that this field is set properly when extracted from // a Descriptor. optional util.hlc.Timestamp modification_time = 7 [(gogoproto.nullable) = false]; + // A list of draining names. The draining name entries are drained from // the cluster wide name caches by incrementing the version for this // descriptor and ensuring that there are no leases on prior // versions of the descriptor. This field is then cleared and the version // of the descriptor incremented. - repeated NameInfo draining_names = 21 [(gogoproto.nullable) = false]; + // + // TODO(postamar): remove draining_names field in 22.2 + repeated NameInfo draining_names = 21 [deprecated = true, (gogoproto.nullable) = false]; // ID of the parent database. optional uint32 parent_id = 4 [(gogoproto.nullable) = false, @@ -1265,7 +1270,9 @@ message DatabaseDescriptor { // Last modification time of the descriptor. optional util.hlc.Timestamp modification_time = 4 [(gogoproto.nullable) = false]; optional uint64 version = 5 [(gogoproto.nullable) = false, (gogoproto.casttype) = "DescriptorVersion"]; - repeated NameInfo draining_names = 6 [(gogoproto.nullable) = false]; + + // TODO(postamar): remove draining_names field in 22.2 + repeated NameInfo draining_names = 6 [deprecated = true, (gogoproto.nullable) = false]; optional PrivilegeDescriptor privileges = 3; @@ -1276,7 +1283,9 @@ message DatabaseDescriptor { optional uint32 id = 1 [(gogoproto.nullable) = false, (gogoproto.customname) = "ID", (gogoproto.casttype) = "ID"]; // dropped represents whether the schema is dropped or not. This field // is used in a similar way as the draining_names. - optional bool dropped = 2 [(gogoproto.nullable) = false]; + // + // TODO(postamar): remove dropped field in 22.2 + optional bool dropped = 2 [deprecated = true, (gogoproto.nullable) = false]; } // schemas is a mapping from child schema name to ID. It is used during @@ -1331,7 +1340,9 @@ message TypeDescriptor { optional uint64 version = 9 [(gogoproto.nullable) = false, (gogoproto.casttype) = "DescriptorVersion"]; // Last modification time of the descriptor. optional util.hlc.Timestamp modification_time = 10 [(gogoproto.nullable) = false]; - repeated NameInfo draining_names = 11 [(gogoproto.nullable) = false]; + + // TODO(postamar): remove draining_names field in 22.2 + repeated NameInfo draining_names = 11 [deprecated = true, (gogoproto.nullable) = false]; // privileges contains the privileges for the type. optional PrivilegeDescriptor privileges = 14; @@ -1448,7 +1459,9 @@ message SchemaDescriptor { // Last modification time of the descriptor. optional util.hlc.Timestamp modification_time = 5 [(gogoproto.nullable) = false]; optional uint64 version = 6 [(gogoproto.nullable) = false, (gogoproto.casttype) = "DescriptorVersion"]; - repeated NameInfo draining_names = 7 [(gogoproto.nullable) = false]; + + // TODO(postamar): remove draining_names field in 22.2 + repeated NameInfo draining_names = 7 [deprecated = true, (gogoproto.nullable) = false]; // parent_id refers to the database the schema is in. optional uint32 parent_id = 1 diff --git a/pkg/sql/catalog/descriptor.go b/pkg/sql/catalog/descriptor.go index a0b8ef2c7b6e..114f351b2ca3 100644 --- a/pkg/sql/catalog/descriptor.go +++ b/pkg/sql/catalog/descriptor.go @@ -137,7 +137,9 @@ type Descriptor interface { // Metadata for descriptor leasing. GetVersion() descpb.DescriptorVersion GetModificationTime() hlc.Timestamp - GetDrainingNames() []descpb.NameInfo + + // TODO(postamar): remove GetDrainingNames method in 22.2 + GetDrainingNames() []descpb.NameInfo // Deprecated GetPrivileges() *descpb.PrivilegeDescriptor DescriptorType() DescriptorType @@ -176,7 +178,10 @@ type DatabaseDescriptor interface { IsMultiRegion() bool PrimaryRegionName() (descpb.RegionName, error) MultiRegionEnumID() (descpb.ID, error) - ForEachSchemaInfo(func(id descpb.ID, name string, isDropped bool) error) error + + // TODO(postamar): remove ForEachSchemaInfo method in 22.2 + ForEachSchemaInfo(func(id descpb.ID, name string, isDropped bool) error) error // Deprecated + ForEachNonDroppedSchema(func(id descpb.ID, name string) error) error GetSchemaID(name string) descpb.ID GetNonDroppedSchemaName(schemaID descpb.ID) string GetDefaultPrivilegeDescriptor() DefaultPrivilegeDescriptor diff --git a/pkg/sql/catalog/descriptor_test.go b/pkg/sql/catalog/descriptor_test.go index ba40d63714df..fc8dea462752 100644 --- a/pkg/sql/catalog/descriptor_test.go +++ b/pkg/sql/catalog/descriptor_test.go @@ -65,6 +65,7 @@ func TestFormatSafeDescriptorProperties(t *testing.T) { State: descpb.DescriptorState_PUBLIC, }).BuildExistingMutableTable() desc.MaybeIncrementVersion() + //lint:ignore SA1019 deprecated method call is OK desc.AddDrainingName(descpb.NameInfo{ ParentID: 12, ParentSchemaID: 51, diff --git a/pkg/sql/catalog/descs/collection_test.go b/pkg/sql/catalog/descs/collection_test.go index 9d0e62b28f7d..21e63b817002 100644 --- a/pkg/sql/catalog/descs/collection_test.go +++ b/pkg/sql/catalog/descs/collection_test.go @@ -246,6 +246,7 @@ func TestAddUncommittedDescriptorAndMutableResolution(t *testing.T) { require.Same(t, immByName, immByID) mut.Name = "new_name" + //lint:ignore SA1019 deprecated method call is OK mut.SetDrainingNames([]descpb.NameInfo{{ Name: "db", }}) diff --git a/pkg/sql/catalog/schemadesc/schema_desc.go b/pkg/sql/catalog/schemadesc/schema_desc.go index 55dc683a21aa..2fa30f35d910 100644 --- a/pkg/sql/catalog/schemadesc/schema_desc.go +++ b/pkg/sql/catalog/schemadesc/schema_desc.go @@ -83,10 +83,19 @@ type Mutable struct { var _ redact.SafeMessager = (*immutable)(nil) // SetDrainingNames implements the MutableDescriptor interface. +// +// Deprecated: Do not use. func (desc *Mutable) SetDrainingNames(names []descpb.NameInfo) { desc.DrainingNames = names } +// AddDrainingName implements the MutableDescriptor interface. +// +// Deprecated: Do not use. +func (desc *Mutable) AddDrainingName(name descpb.NameInfo) { + desc.DrainingNames = append(desc.DrainingNames, name) +} + // GetParentSchemaID implements the Descriptor interface. func (desc *immutable) GetParentSchemaID() descpb.ID { return keys.RootNamespaceID @@ -272,14 +281,8 @@ func (desc *Mutable) SetOffline(reason string) { desc.OfflineReason = reason } -// SetName sets the name of the schema. It handles installing a draining name -// for the old name of the descriptor. +// SetName sets the name of the schema. func (desc *Mutable) SetName(name string) { - desc.DrainingNames = append(desc.DrainingNames, descpb.NameInfo{ - ParentID: desc.ParentID, - ParentSchemaID: keys.RootNamespaceID, - Name: desc.Name, - }) desc.Name = name } diff --git a/pkg/sql/catalog/schemadesc/synthetic_schema_desc.go b/pkg/sql/catalog/schemadesc/synthetic_schema_desc.go index 5a3755fd16cc..726813f385e6 100644 --- a/pkg/sql/catalog/schemadesc/synthetic_schema_desc.go +++ b/pkg/sql/catalog/schemadesc/synthetic_schema_desc.go @@ -45,6 +45,8 @@ func (p synthetic) GetVersion() descpb.DescriptorVersion { func (p synthetic) GetModificationTime() hlc.Timestamp { return hlc.Timestamp{} } + +// Deprecated: Do not use. func (p synthetic) GetDrainingNames() []descpb.NameInfo { return nil } diff --git a/pkg/sql/catalog/tabledesc/structured.go b/pkg/sql/catalog/tabledesc/structured.go index fbc070d02b8d..a469f1667313 100644 --- a/pkg/sql/catalog/tabledesc/structured.go +++ b/pkg/sql/catalog/tabledesc/structured.go @@ -2380,6 +2380,8 @@ func (desc *Mutable) SetParentSchemaID(schemaID descpb.ID) { // AddDrainingName adds a draining name to the TableDescriptor's slice of // draining names. +// +// Deprecated: Do not use. func (desc *Mutable) AddDrainingName(name descpb.NameInfo) { desc.DrainingNames = append(desc.DrainingNames, name) } diff --git a/pkg/sql/catalog/tabledesc/table_desc.go b/pkg/sql/catalog/tabledesc/table_desc.go index eb41c253df2d..27f84814e1c6 100644 --- a/pkg/sql/catalog/tabledesc/table_desc.go +++ b/pkg/sql/catalog/tabledesc/table_desc.go @@ -127,6 +127,8 @@ func (desc *Mutable) IsUncommittedVersion() bool { } // SetDrainingNames implements the MutableDescriptor interface. +// +// Deprecated: Do not use. func (desc *Mutable) SetDrainingNames(names []descpb.NameInfo) { desc.DrainingNames = names } diff --git a/pkg/sql/catalog/typedesc/type_desc.go b/pkg/sql/catalog/typedesc/type_desc.go index 0499cc2561ec..86a4b15b06a8 100644 --- a/pkg/sql/catalog/typedesc/type_desc.go +++ b/pkg/sql/catalog/typedesc/type_desc.go @@ -263,6 +263,8 @@ func (desc *immutable) RegionNamesIncludingTransitioning() (descpb.RegionNames, } // SetDrainingNames implements the MutableDescriptor interface. +// +// Deprecated: Do not use. func (desc *Mutable) SetDrainingNames(names []descpb.NameInfo) { desc.DrainingNames = names } @@ -449,6 +451,8 @@ func (desc *Mutable) SetParentSchemaID(schemaID descpb.ID) { // AddDrainingName adds a draining name to the TypeDescriptor's slice of // draining names. +// +// Deprecated: Do not use. func (desc *Mutable) AddDrainingName(name descpb.NameInfo) { desc.DrainingNames = append(desc.DrainingNames, name) } diff --git a/pkg/sql/create_schema.go b/pkg/sql/create_schema.go index b62bc4647a4e..c694df6ab606 100644 --- a/pkg/sql/create_schema.go +++ b/pkg/sql/create_schema.go @@ -186,10 +186,7 @@ func (p *planner) createUserDefinedSchema(params runParams, n *tree.CreateSchema if db.Schemas == nil { db.Schemas = make(map[string]descpb.DatabaseDescriptor_SchemaInfo) } - db.Schemas[desc.Name] = descpb.DatabaseDescriptor_SchemaInfo{ - ID: desc.ID, - Dropped: false, - } + db.Schemas[desc.Name] = descpb.DatabaseDescriptor_SchemaInfo{ID: desc.ID} if err := p.writeNonDropDatabaseChange( params.ctx, db, diff --git a/pkg/sql/database.go b/pkg/sql/database.go index 27c63f0e5699..02615b524d7e 100644 --- a/pkg/sql/database.go +++ b/pkg/sql/database.go @@ -56,7 +56,7 @@ func (p *planner) renameDatabase( } b.CPut(newKey, descID, nil) - desc.DrainingNames = append(desc.DrainingNames, descpb.NameInfo{ + desc.AddDrainingName(descpb.NameInfo{ ParentID: keys.RootNamespaceID, ParentSchemaID: keys.RootNamespaceID, Name: oldName, diff --git a/pkg/sql/drop_schema.go b/pkg/sql/drop_schema.go index 515824834167..bc69c2b7f9ab 100644 --- a/pkg/sql/drop_schema.go +++ b/pkg/sql/drop_schema.go @@ -198,7 +198,7 @@ func (n *dropSchemaNode) startExec(params runParams) error { func (p *planner) dropSchemaImpl( ctx context.Context, parentDB *dbdesc.Mutable, sc *schemadesc.Mutable, ) error { - sc.DrainingNames = append(sc.DrainingNames, descpb.NameInfo{ + sc.AddDrainingName(descpb.NameInfo{ ParentID: parentDB.ID, ParentSchemaID: keys.RootNamespaceID, Name: sc.Name, diff --git a/pkg/sql/drop_sequence.go b/pkg/sql/drop_sequence.go index 1c42030a1c5a..fbf40406de9c 100644 --- a/pkg/sql/drop_sequence.go +++ b/pkg/sql/drop_sequence.go @@ -121,7 +121,7 @@ func (p *planner) dropSequenceImpl( return err } } - return p.initiateDropTable(ctx, seqDesc, queueJob, jobDesc, true /* drainName */) + return p.initiateDropTable(ctx, seqDesc, queueJob, jobDesc) } // sequenceDependency error returns an error if the given sequence cannot be dropped because diff --git a/pkg/sql/drop_table.go b/pkg/sql/drop_table.go index ed4b49d2f00e..b5a8873827e2 100644 --- a/pkg/sql/drop_table.go +++ b/pkg/sql/drop_table.go @@ -385,7 +385,7 @@ func (p *planner) dropTableImpl( return droppedViews, err } - err = p.initiateDropTable(ctx, tableDesc, !droppingParent, jobDesc, true /* drain name */) + err = p.initiateDropTable(ctx, tableDesc, !droppingParent, jobDesc) return droppedViews, err } @@ -423,7 +423,7 @@ func (p *planner) unsplitRangesForTable(ctx context.Context, tableDesc *tabledes // TRUNCATE which directly deletes the old name to id map and doesn't need // drain the old map. func (p *planner) initiateDropTable( - ctx context.Context, tableDesc *tabledesc.Mutable, queueJob bool, jobDesc string, drainName bool, + ctx context.Context, tableDesc *tabledesc.Mutable, queueJob bool, jobDesc string, ) error { if tableDesc.Dropped() { return errors.Errorf("table %q is already being dropped", tableDesc.Name) @@ -458,16 +458,13 @@ func (p *planner) initiateDropTable( } tableDesc.State = descpb.DescriptorState_DROP - if drainName { - parentSchemaID := tableDesc.GetParentSchemaID() - // Queue up name for draining. - nameDetails := descpb.NameInfo{ - ParentID: tableDesc.ParentID, - ParentSchemaID: parentSchemaID, - Name: tableDesc.Name} - tableDesc.DrainingNames = append(tableDesc.DrainingNames, nameDetails) - } + // Queue up name for draining. + tableDesc.AddDrainingName(descpb.NameInfo{ + ParentID: tableDesc.GetParentID(), + ParentSchemaID: tableDesc.GetParentSchemaID(), + Name: tableDesc.GetName(), + }) // For this table descriptor, mark all previous jobs scheduled for schema changes as successful // and delete them from the schema change job cache. diff --git a/pkg/sql/drop_type.go b/pkg/sql/drop_type.go index 674248912bf9..e52bf3880e77 100644 --- a/pkg/sql/drop_type.go +++ b/pkg/sql/drop_type.go @@ -245,7 +245,7 @@ func (p *planner) dropTypeImpl( } // Add a draining name. - typeDesc.DrainingNames = append(typeDesc.DrainingNames, descpb.NameInfo{ + typeDesc.AddDrainingName(descpb.NameInfo{ ParentID: typeDesc.ParentID, ParentSchemaID: typeDesc.ParentSchemaID, Name: typeDesc.Name, diff --git a/pkg/sql/drop_view.go b/pkg/sql/drop_view.go index 75155baf133e..45d49d713c66 100644 --- a/pkg/sql/drop_view.go +++ b/pkg/sql/drop_view.go @@ -254,7 +254,7 @@ func (p *planner) dropViewImpl( return cascadeDroppedViews, err } - if err := p.initiateDropTable(ctx, viewDesc, queueJob, jobDesc, true /* drainName */); err != nil { + if err := p.initiateDropTable(ctx, viewDesc, queueJob, jobDesc); err != nil { return cascadeDroppedViews, err } diff --git a/pkg/sql/reparent_database.go b/pkg/sql/reparent_database.go index 1213fd87ffa9..3caaabbf6125 100644 --- a/pkg/sql/reparent_database.go +++ b/pkg/sql/reparent_database.go @@ -128,10 +128,7 @@ func (n *reparentDatabaseNode) startExec(params runParams) error { if n.newParent.Schemas == nil { n.newParent.Schemas = make(map[string]descpb.DatabaseDescriptor_SchemaInfo) } - n.newParent.Schemas[n.db.Name] = descpb.DatabaseDescriptor_SchemaInfo{ - ID: schema.GetID(), - Dropped: false, - } + n.newParent.Schemas[n.db.Name] = descpb.DatabaseDescriptor_SchemaInfo{ID: schema.GetID()} if err := p.createDescriptorWithID( ctx,