diff --git a/api/regen/data/v1/state.cosmos_orm.go b/api/regen/data/v1/state.cosmos_orm.go index ffb623ee3b..fa1918c8d2 100644 --- a/api/regen/data/v1/state.cosmos_orm.go +++ b/api/regen/data/v1/state.cosmos_orm.go @@ -470,24 +470,11 @@ func (this ResolverUrlIndexKey) WithUrl(url string) ResolverUrlIndexKey { return this } -type ResolverManagerIndexKey struct { - vs []interface{} -} - -func (x ResolverManagerIndexKey) id() uint32 { return 2 } -func (x ResolverManagerIndexKey) values() []interface{} { return x.vs } -func (x ResolverManagerIndexKey) resolverIndexKey() {} - -func (this ResolverManagerIndexKey) WithManager(manager []byte) ResolverManagerIndexKey { - this.vs = []interface{}{manager} - return this -} - type ResolverUrlManagerIndexKey struct { vs []interface{} } -func (x ResolverUrlManagerIndexKey) id() uint32 { return 3 } +func (x ResolverUrlManagerIndexKey) id() uint32 { return 2 } func (x ResolverUrlManagerIndexKey) values() []interface{} { return x.vs } func (x ResolverUrlManagerIndexKey) resolverIndexKey() {} @@ -542,7 +529,7 @@ func (this resolverTable) Get(ctx context.Context, id uint64) (*Resolver, error) } func (this resolverTable) HasByUrlManager(ctx context.Context, url string, manager []byte) (found bool, err error) { - return this.table.GetIndexByID(3).(ormtable.UniqueIndex).Has(ctx, + return this.table.GetIndexByID(2).(ormtable.UniqueIndex).Has(ctx, url, manager, ) @@ -550,7 +537,7 @@ func (this resolverTable) HasByUrlManager(ctx context.Context, url string, manag func (this resolverTable) GetByUrlManager(ctx context.Context, url string, manager []byte) (*Resolver, error) { var resolver Resolver - found, err := this.table.GetIndexByID(3).(ormtable.UniqueIndex).Get(ctx, &resolver, + found, err := this.table.GetIndexByID(2).(ormtable.UniqueIndex).Get(ctx, &resolver, url, manager, ) diff --git a/api/regen/data/v1/state.pulsar.go b/api/regen/data/v1/state.pulsar.go index 530e295024..b7ca27d0cc 100644 --- a/api/regen/data/v1/state.pulsar.go +++ b/api/regen/data/v1/state.pulsar.go @@ -2866,33 +2866,32 @@ var file_regen_data_v1_state_proto_rawDesc = []byte{ 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x3a, 0x25, 0xf2, 0x9e, 0xd3, 0x8e, 0x03, 0x1f, 0x0a, 0x0d, 0x0a, 0x0b, 0x69, 0x64, 0x2c, 0x61, 0x74, 0x74, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x12, 0x0c, 0x0a, 0x08, 0x61, 0x74, 0x74, 0x65, 0x73, - 0x74, 0x6f, 0x72, 0x10, 0x01, 0x18, 0x03, 0x22, 0x81, 0x01, 0x0a, 0x08, 0x52, 0x65, 0x73, 0x6f, - 0x6c, 0x76, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, - 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, - 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, - 0x3a, 0x39, 0xf2, 0x9e, 0xd3, 0x8e, 0x03, 0x33, 0x0a, 0x06, 0x0a, 0x02, 0x69, 0x64, 0x10, 0x01, - 0x12, 0x07, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x6d, 0x61, 0x6e, - 0x61, 0x67, 0x65, 0x72, 0x10, 0x02, 0x12, 0x11, 0x0a, 0x0b, 0x75, 0x72, 0x6c, 0x2c, 0x6d, 0x61, - 0x6e, 0x61, 0x67, 0x65, 0x72, 0x10, 0x03, 0x18, 0x01, 0x18, 0x04, 0x22, 0x5b, 0x0a, 0x0c, 0x44, - 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, - 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x72, - 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, - 0x52, 0x0a, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x49, 0x64, 0x3a, 0x1a, 0xf2, 0x9e, - 0xd3, 0x8e, 0x03, 0x14, 0x0a, 0x10, 0x0a, 0x0e, 0x69, 0x64, 0x2c, 0x72, 0x65, 0x73, 0x6f, 0x6c, - 0x76, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x42, 0xb5, 0x01, 0x0a, 0x11, 0x63, 0x6f, 0x6d, - 0x2e, 0x72, 0x65, 0x67, 0x65, 0x6e, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x76, 0x31, 0x42, 0x0a, - 0x53, 0x74, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x3e, 0x67, 0x69, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x72, 0x65, 0x67, 0x65, 0x6e, 0x2d, 0x6e, - 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2f, 0x72, 0x65, 0x67, 0x65, 0x6e, 0x2d, 0x6c, 0x65, 0x64, - 0x67, 0x65, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x67, 0x65, 0x6e, 0x2f, 0x64, 0x61, - 0x74, 0x61, 0x2f, 0x76, 0x31, 0x3b, 0x64, 0x61, 0x74, 0x61, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x52, - 0x44, 0x58, 0xaa, 0x02, 0x0d, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x2e, - 0x56, 0x31, 0xca, 0x02, 0x0d, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x5c, 0x44, 0x61, 0x74, 0x61, 0x5c, - 0x56, 0x31, 0xe2, 0x02, 0x19, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x5c, 0x44, 0x61, 0x74, 0x61, 0x5c, - 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, - 0x0f, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x3a, 0x3a, 0x44, 0x61, 0x74, 0x61, 0x3a, 0x3a, 0x56, 0x31, - 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x74, 0x6f, 0x72, 0x10, 0x01, 0x18, 0x03, 0x22, 0x74, 0x0a, 0x08, 0x52, 0x65, 0x73, 0x6f, 0x6c, + 0x76, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, + 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, + 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x3a, + 0x2c, 0xf2, 0x9e, 0xd3, 0x8e, 0x03, 0x26, 0x0a, 0x06, 0x0a, 0x02, 0x69, 0x64, 0x10, 0x01, 0x12, + 0x07, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x10, 0x01, 0x12, 0x11, 0x0a, 0x0b, 0x75, 0x72, 0x6c, 0x2c, + 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x10, 0x02, 0x18, 0x01, 0x18, 0x04, 0x22, 0x5b, 0x0a, + 0x0c, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x12, 0x0e, 0x0a, + 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1f, 0x0a, + 0x0b, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x04, 0x52, 0x0a, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x49, 0x64, 0x3a, 0x1a, + 0xf2, 0x9e, 0xd3, 0x8e, 0x03, 0x14, 0x0a, 0x10, 0x0a, 0x0e, 0x69, 0x64, 0x2c, 0x72, 0x65, 0x73, + 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x42, 0xb5, 0x01, 0x0a, 0x11, 0x63, + 0x6f, 0x6d, 0x2e, 0x72, 0x65, 0x67, 0x65, 0x6e, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x76, 0x31, + 0x42, 0x0a, 0x53, 0x74, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x3e, + 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x72, 0x65, 0x67, 0x65, 0x6e, + 0x2d, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2f, 0x72, 0x65, 0x67, 0x65, 0x6e, 0x2d, 0x6c, + 0x65, 0x64, 0x67, 0x65, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x67, 0x65, 0x6e, 0x2f, + 0x64, 0x61, 0x74, 0x61, 0x2f, 0x76, 0x31, 0x3b, 0x64, 0x61, 0x74, 0x61, 0x76, 0x31, 0xa2, 0x02, + 0x03, 0x52, 0x44, 0x58, 0xaa, 0x02, 0x0d, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x2e, 0x44, 0x61, 0x74, + 0x61, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x0d, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x5c, 0x44, 0x61, 0x74, + 0x61, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x19, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x5c, 0x44, 0x61, 0x74, + 0x61, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, + 0xea, 0x02, 0x0f, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x3a, 0x3a, 0x44, 0x61, 0x74, 0x61, 0x3a, 0x3a, + 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/proto/regen/data/v1/state.proto b/proto/regen/data/v1/state.proto index 7b16a17cd7..984a16c066 100644 --- a/proto/regen/data/v1/state.proto +++ b/proto/regen/data/v1/state.proto @@ -61,8 +61,7 @@ message Resolver { id : 4 primary_key : {fields : "id", auto_increment : true} index : {id : 1, fields : "url"} - index : {id : 2, fields : "manager"} - index : {id : 3, fields : "url,manager", unique: true} + index : {id : 2, fields : "url,manager", unique: true} }; // id is the ID of the resolver. diff --git a/x/data/state.pb.go b/x/data/state.pb.go index a02ee40e33..926a8f4d53 100644 --- a/x/data/state.pb.go +++ b/x/data/state.pb.go @@ -331,35 +331,35 @@ func init() { func init() { proto.RegisterFile("regen/data/v1/state.proto", fileDescriptor_29cc90d94a9e9542) } var fileDescriptor_29cc90d94a9e9542 = []byte{ - // 445 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x52, 0x31, 0x6f, 0xd3, 0x40, - 0x18, 0xcd, 0xd9, 0x21, 0x4d, 0x3e, 0xbb, 0x91, 0x31, 0x0c, 0x57, 0x4b, 0x38, 0x95, 0x25, 0xa4, - 0x0e, 0xc1, 0xa7, 0xd0, 0x05, 0xb2, 0x81, 0x0a, 0x52, 0x57, 0x8b, 0x09, 0x06, 0x74, 0x89, 0xaf, - 0xce, 0x09, 0x3b, 0x17, 0x9d, 0xcf, 0x81, 0x95, 0x3f, 0x80, 0xd8, 0x91, 0xf8, 0x3d, 0x8c, 0x95, - 0x58, 0x18, 0x51, 0xf2, 0x0f, 0xf8, 0x05, 0xc8, 0x9f, 0xe3, 0xb4, 0x88, 0x2c, 0xdd, 0xee, 0xdd, - 0x7b, 0xf7, 0xde, 0xd3, 0xd3, 0xc1, 0x89, 0x16, 0x99, 0x58, 0xb2, 0x94, 0x1b, 0xce, 0xd6, 0x13, - 0x56, 0x1a, 0x6e, 0x44, 0xbc, 0xd2, 0xca, 0x28, 0xff, 0x18, 0xa9, 0xb8, 0xa6, 0xe2, 0xf5, 0x24, - 0x78, 0x34, 0x57, 0x65, 0xa1, 0x4a, 0xa6, 0x74, 0xc1, 0xd6, 0x13, 0x9e, 0xaf, 0x16, 0x7c, 0x52, - 0x83, 0x46, 0x1d, 0x8c, 0x32, 0xa5, 0xb2, 0x5c, 0x30, 0x44, 0xb3, 0xea, 0x8a, 0x19, 0x59, 0x88, - 0xd2, 0xf0, 0x62, 0xd5, 0x08, 0xa2, 0x57, 0xd0, 0xbb, 0xe0, 0x86, 0x5f, 0x5e, 0xf8, 0x43, 0xb0, - 0x64, 0x4a, 0xc9, 0x29, 0x39, 0x73, 0x13, 0x4b, 0xa6, 0xbe, 0x07, 0xb6, 0xd4, 0x92, 0x5a, 0xa7, - 0xe4, 0x6c, 0x90, 0xd4, 0xc7, 0xe9, 0xc9, 0x9f, 0xef, 0x3f, 0xbf, 0xd8, 0x0f, 0xa0, 0x5b, 0x2b, - 0xfd, 0x01, 0xf2, 0x1e, 0xa1, 0x84, 0x92, 0xe8, 0x0a, 0xa0, 0xb6, 0x79, 0xb1, 0x9c, 0x2f, 0x94, - 0xfe, 0xcf, 0xea, 0x19, 0x0c, 0xf6, 0xb9, 0x68, 0xe8, 0x3c, 0x0d, 0xe2, 0xa6, 0x59, 0xdc, 0x36, - 0x8b, 0xdf, 0xb4, 0x8a, 0xe4, 0x46, 0x3c, 0x1d, 0x62, 0x64, 0xbf, 0x89, 0xa4, 0x56, 0xf4, 0x8d, - 0x80, 0x8b, 0x41, 0xc6, 0x88, 0xd2, 0x1c, 0x88, 0x0a, 0xa0, 0xcf, 0x77, 0x1c, 0x26, 0xb9, 0xc9, - 0x1e, 0xff, 0x5b, 0xc3, 0xbe, 0x4b, 0x8d, 0xc7, 0x58, 0x63, 0x04, 0xc7, 0xe0, 0xc8, 0x74, 0xbc, - 0x37, 0x74, 0x6f, 0xc2, 0x3c, 0x42, 0xed, 0xe8, 0x33, 0x81, 0x7e, 0x22, 0x4a, 0x95, 0xaf, 0xc5, - 0xed, 0x66, 0xdd, 0x76, 0xcf, 0x4a, 0xe7, 0xed, 0x9e, 0x95, 0xce, 0x7d, 0x0a, 0x47, 0x05, 0x5f, - 0xf2, 0x4c, 0x68, 0x6c, 0xe3, 0x26, 0x2d, 0x9c, 0x3e, 0xc7, 0xbc, 0x73, 0xe8, 0xd5, 0x1e, 0x1e, - 0xf1, 0x8f, 0xf0, 0xad, 0x47, 0x7c, 0x67, 0xff, 0xc4, 0xb3, 0xfc, 0xfb, 0xe0, 0x54, 0x3a, 0x1f, - 0xb7, 0x17, 0x36, 0x25, 0xb4, 0x1b, 0xbd, 0x6b, 0x06, 0x3a, 0x50, 0xa3, 0x19, 0x68, 0x04, 0x8e, - 0xde, 0x71, 0xef, 0xeb, 0x49, 0xb1, 0x1f, 0xb4, 0x57, 0x97, 0xe9, 0x34, 0xc0, 0xec, 0x87, 0xe0, - 0xc1, 0x50, 0xa6, 0xe3, 0xdb, 0xda, 0x7b, 0x2f, 0x5f, 0xff, 0xd8, 0x84, 0xe4, 0x7a, 0x13, 0x92, - 0xdf, 0x9b, 0x90, 0x7c, 0xdd, 0x86, 0x9d, 0xeb, 0x6d, 0xd8, 0xf9, 0xb5, 0x0d, 0x3b, 0x6f, 0xc7, - 0x99, 0x34, 0x8b, 0x6a, 0x16, 0xcf, 0x55, 0xc1, 0xf0, 0x87, 0x3e, 0x59, 0x0a, 0xf3, 0x51, 0xe9, - 0x0f, 0x3b, 0x94, 0x8b, 0x34, 0x13, 0x9a, 0x7d, 0xc2, 0x3f, 0x3d, 0xeb, 0xe1, 0xdc, 0xe7, 0x7f, - 0x03, 0x00, 0x00, 0xff, 0xff, 0x7f, 0xbe, 0xe0, 0xac, 0xe8, 0x02, 0x00, 0x00, + // 439 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x41, 0x8b, 0xd3, 0x40, + 0x1c, 0xc5, 0x3b, 0x69, 0xed, 0xb6, 0xff, 0x66, 0x4b, 0x8c, 0x1e, 0x66, 0x03, 0xa6, 0x4b, 0x40, + 0xd9, 0x43, 0xcc, 0x50, 0xbd, 0x48, 0x6f, 0xca, 0x2a, 0xec, 0x35, 0x78, 0xd2, 0x83, 0x4c, 0x9b, + 0xd9, 0x74, 0x30, 0xe9, 0x94, 0xc9, 0x24, 0xfa, 0x29, 0xc4, 0xbb, 0xe0, 0xe7, 0xf1, 0xb8, 0xe0, + 0xc5, 0xa3, 0xb4, 0xdf, 0xc0, 0x4f, 0x20, 0xf9, 0x27, 0xe9, 0xae, 0xb8, 0x97, 0xbd, 0xf5, 0xdf, + 0xf7, 0xf2, 0x7e, 0x8f, 0xc7, 0xc0, 0x89, 0x16, 0xa9, 0xd8, 0xb0, 0x84, 0x1b, 0xce, 0xaa, 0x39, + 0x2b, 0x0c, 0x37, 0x22, 0xda, 0x6a, 0x65, 0x94, 0x7b, 0x8c, 0x52, 0x54, 0x4b, 0x51, 0x35, 0xf7, + 0x1e, 0xad, 0x54, 0x91, 0xab, 0x82, 0x29, 0x9d, 0xb3, 0x6a, 0xce, 0xb3, 0xed, 0x9a, 0xcf, 0xeb, + 0xa3, 0x71, 0x7b, 0xb3, 0x54, 0xa9, 0x34, 0x13, 0x0c, 0xaf, 0x65, 0x79, 0xc9, 0x8c, 0xcc, 0x45, + 0x61, 0x78, 0xbe, 0x6d, 0x0c, 0xc1, 0x6b, 0x18, 0x9e, 0x73, 0xc3, 0x2f, 0xce, 0xdd, 0x29, 0x58, + 0x32, 0xa1, 0xe4, 0x94, 0x9c, 0xd9, 0xb1, 0x25, 0x13, 0xd7, 0x81, 0xbe, 0xd4, 0x92, 0x5a, 0xa7, + 0xe4, 0x6c, 0x1c, 0xd7, 0x3f, 0x17, 0x27, 0x7f, 0xbe, 0xff, 0xfc, 0xd2, 0x7f, 0x00, 0x83, 0xda, + 0xe9, 0x8e, 0x51, 0x77, 0x08, 0x25, 0x94, 0x04, 0x97, 0x00, 0x75, 0xcc, 0xcb, 0xcd, 0x6a, 0xad, + 0xf4, 0x7f, 0x51, 0x2f, 0x60, 0x7c, 0xe0, 0x62, 0xe0, 0xe4, 0x99, 0x17, 0x35, 0xcd, 0xa2, 0xae, + 0x59, 0xf4, 0xb6, 0x73, 0xc4, 0xd7, 0xe6, 0xc5, 0x14, 0x91, 0xa3, 0x06, 0x49, 0xad, 0xe0, 0x1b, + 0x01, 0x1b, 0x41, 0xc6, 0x88, 0xc2, 0xdc, 0x82, 0xf2, 0x60, 0xc4, 0x5b, 0x0d, 0x49, 0x76, 0x7c, + 0xb8, 0xff, 0xad, 0xd1, 0xbf, 0x4b, 0x8d, 0xc7, 0x58, 0x63, 0x06, 0xc7, 0x30, 0x91, 0x49, 0x78, + 0x08, 0xb4, 0xaf, 0x61, 0x0e, 0xa1, 0xfd, 0xc0, 0xc0, 0x28, 0x16, 0x85, 0xca, 0x2a, 0x71, 0xb3, + 0xd8, 0xa0, 0x9b, 0xb3, 0xd4, 0x59, 0x37, 0x67, 0xa9, 0x33, 0x97, 0xc2, 0x51, 0xce, 0x37, 0x3c, + 0x15, 0x1a, 0xcb, 0xd8, 0x71, 0x77, 0x2e, 0x42, 0xc4, 0x3d, 0x81, 0x61, 0x9d, 0xe1, 0x10, 0xf7, + 0x08, 0xbf, 0x75, 0x88, 0x7b, 0x1f, 0x26, 0xa5, 0xce, 0xc2, 0xd6, 0xe7, 0x58, 0x94, 0xd0, 0x41, + 0xf0, 0xbe, 0x99, 0xe4, 0x16, 0x72, 0x33, 0xc9, 0x0c, 0x26, 0xba, 0xd5, 0x3e, 0xd4, 0x23, 0x62, + 0x25, 0xe8, 0xfe, 0xba, 0x48, 0x16, 0x1e, 0xe2, 0x1e, 0x82, 0x03, 0x53, 0x99, 0x84, 0x37, 0xbd, + 0xf7, 0x5e, 0xbd, 0xf9, 0xb1, 0xf3, 0xc9, 0xd5, 0xce, 0x27, 0xbf, 0x77, 0x3e, 0xf9, 0xba, 0xf7, + 0x7b, 0x57, 0x7b, 0xbf, 0xf7, 0x6b, 0xef, 0xf7, 0xde, 0x85, 0xa9, 0x34, 0xeb, 0x72, 0x19, 0xad, + 0x54, 0xce, 0xf0, 0x4d, 0x3e, 0xdd, 0x08, 0xf3, 0x49, 0xe9, 0x8f, 0xed, 0x95, 0x89, 0x24, 0x15, + 0x9a, 0x7d, 0xc6, 0x57, 0xbc, 0x1c, 0xe2, 0xc0, 0xcf, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x43, + 0xd3, 0xf6, 0xdb, 0xda, 0x02, 0x00, 0x00, } func (m *DataID) Marshal() (dAtA []byte, err error) {