diff --git a/proto/quicksilver/interchainstaking/v1/query.proto b/proto/quicksilver/interchainstaking/v1/query.proto index 0734f1b73..19fcbb572 100644 --- a/proto/quicksilver/interchainstaking/v1/query.proto +++ b/proto/quicksilver/interchainstaking/v1/query.proto @@ -255,3 +255,11 @@ message QueryMappedAccountsResponse { map RemoteAddressMap = 1 [(gogoproto.nullable) = false]; cosmos.base.query.v1beta1.PageResponse pagination = 2; } + +message QueryDenyListRequest { + string chain_id = 1 [(gogoproto.moretags) = "yaml:\"chain_id\""]; +} +message QueryDenyListResponse { + repeated string validators = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + cosmos.base.query.v1beta1.PageResponse pagination = 2; +} diff --git a/x/interchainstaking/keeper/deny_list.go b/x/interchainstaking/keeper/deny_list.go new file mode 100644 index 000000000..eb26f0420 --- /dev/null +++ b/x/interchainstaking/keeper/deny_list.go @@ -0,0 +1,60 @@ +package keeper + +import ( + sdk "github.com/cosmos/cosmos-sdk/types" + + "github.com/quicksilver-zone/quicksilver/utils/addressutils" + "github.com/quicksilver-zone/quicksilver/x/interchainstaking/types" +) + +// SetZoneValidatorToDenyList sets the zone validator deny list +func (k *Keeper) SetZoneValidatorToDenyList(ctx sdk.Context, chainID string, validatorAddress sdk.ValAddress) error { + store := ctx.KVStore(k.storeKey) + + key := types.GetDeniedValidatorKey(chainID, validatorAddress) + store.Set(key, validatorAddress) + return nil +} + +// GetZoneValidatorDenyList get the validator deny list of a specific zone +func (k *Keeper) GetZoneValidatorDenyList(ctx sdk.Context, chainID string) (denyList []string) { + zone, found := k.GetZone(ctx, chainID) + if !found { + return denyList + } + k.IterateZoneDeniedValidator(ctx, chainID, func(validator sdk.ValAddress) bool { + denyList = append(denyList, addressutils.MustEncodeAddressToBech32(zone.GetValoperPrefix(), validator)) + return false + }) + + return denyList +} + +func (k *Keeper) GetDeniedValidatorInDenyList(ctx sdk.Context, chainID string, validatorAddress sdk.ValAddress) bool { + key := types.GetDeniedValidatorKey(chainID, validatorAddress) + store := ctx.KVStore(k.storeKey) + bz := store.Get(key) + return bz != nil +} + +// RemoveValidatorFromDenyList removes a validator from the deny list. Panic if the validator is not in the deny list +func (k *Keeper) RemoveValidatorFromDenyList(ctx sdk.Context, chainID string, validator sdk.ValAddress) { + store := ctx.KVStore(k.storeKey) + key := types.GetDeniedValidatorKey(chainID, validator) + store.Delete(key) +} + +func (k *Keeper) IterateZoneDeniedValidator(ctx sdk.Context, chainID string, cb func(validator sdk.ValAddress) (stop bool)) { + store := ctx.KVStore(k.storeKey) + deniedValPrefixKey := types.GetZoneDeniedValidatorKey(chainID) + + iterator := sdk.KVStorePrefixIterator(store, deniedValPrefixKey) + defer iterator.Close() + + for ; iterator.Valid(); iterator.Next() { + validator := sdk.ValAddress(iterator.Value()) + if cb(validator) { + break + } + } +} diff --git a/x/interchainstaking/keeper/deny_list_test.go b/x/interchainstaking/keeper/deny_list_test.go new file mode 100644 index 000000000..258e4c620 --- /dev/null +++ b/x/interchainstaking/keeper/deny_list_test.go @@ -0,0 +1,103 @@ +package keeper_test + +import ( + sdk "github.com/cosmos/cosmos-sdk/types" + + "github.com/quicksilver-zone/quicksilver/utils/addressutils" +) + +func (suite *KeeperTestSuite) TestStoreGetDeleteDenyList() { + suite.Run("deny list - store / get / delete single", func() { + suite.SetupTest() + suite.setupTestZones() + + qApp := suite.GetQuicksilverApp(suite.chainA) + ctx := suite.chainA.GetContext() + + zone, found := qApp.InterchainstakingKeeper.GetZone(ctx, suite.chainB.ChainID) + suite.True(found) + vals := qApp.InterchainstakingKeeper.GetValidators(ctx, zone.ChainId) + suite.Len(vals, 4) + val := vals[0] + validator := sdk.ValAddress(val.ValoperAddress) + // Initially the deny list should be empty + found = qApp.InterchainstakingKeeper.GetDeniedValidatorInDenyList(ctx, zone.ChainId, validator) + suite.False(found) + // Add a validator to the deny list + err := qApp.InterchainstakingKeeper.SetZoneValidatorToDenyList(ctx, zone.ChainId, validator) + suite.NoError(err) + + // Ensure the deny list contains the validator + + denyList := qApp.InterchainstakingKeeper.GetZoneValidatorDenyList(ctx, zone.ChainId) + suite.Len(denyList, 1) + suite.Equal(addressutils.MustEncodeAddressToBech32(zone.GetValoperPrefix(), validator), denyList[0]) + + found = qApp.InterchainstakingKeeper.GetDeniedValidatorInDenyList(ctx, zone.ChainId, validator) + suite.True(found) + + // Remove the validator from the deny list + qApp.InterchainstakingKeeper.RemoveValidatorFromDenyList(ctx, zone.ChainId, validator) + found = qApp.InterchainstakingKeeper.GetDeniedValidatorInDenyList(ctx, zone.ChainId, validator) + suite.False(found) + + denyList = qApp.InterchainstakingKeeper.GetZoneValidatorDenyList(ctx, zone.ChainId) + suite.Len(denyList, 0) + }) + + suite.Run("deny list - store / get / delete multiple", func() { + suite.SetupTest() + suite.setupTestZones() + + qApp := suite.GetQuicksilverApp(suite.chainA) + ctx := suite.chainA.GetContext() + + zone, found := qApp.InterchainstakingKeeper.GetZone(ctx, suite.chainB.ChainID) + suite.True(found) + vals := qApp.InterchainstakingKeeper.GetValidators(ctx, zone.ChainId) + suite.Len(vals, 4) + valAddr := make([]sdk.ValAddress, 4) + for i, v := range vals { + valAddr[i] = sdk.ValAddress(v.ValoperAddress) + } + // Initially the deny list should be empty + found = qApp.InterchainstakingKeeper.GetDeniedValidatorInDenyList(ctx, zone.ChainId, valAddr[0]) + suite.False(found) + + // Add three validators to the deny list + err := qApp.InterchainstakingKeeper.SetZoneValidatorToDenyList(ctx, zone.ChainId, valAddr[0]) + suite.NoError(err) + err = qApp.InterchainstakingKeeper.SetZoneValidatorToDenyList(ctx, zone.ChainId, valAddr[1]) + suite.NoError(err) + err = qApp.InterchainstakingKeeper.SetZoneValidatorToDenyList(ctx, zone.ChainId, valAddr[2]) + suite.NoError(err) + + denyList := qApp.InterchainstakingKeeper.GetZoneValidatorDenyList(ctx, zone.ChainId) + suite.Len(denyList, 3) + + // Ensure the deny list contains the three validators + suite.Contains(denyList, addressutils.MustEncodeAddressToBech32(zone.GetValoperPrefix(), valAddr[0])) + suite.Contains(denyList, addressutils.MustEncodeAddressToBech32(zone.GetValoperPrefix(), valAddr[1])) + suite.Contains(denyList, addressutils.MustEncodeAddressToBech32(zone.GetValoperPrefix(), valAddr[2])) + + // Remove the validator from the deny list + qApp.InterchainstakingKeeper.RemoveValidatorFromDenyList(ctx, zone.ChainId, valAddr[1]) + found = qApp.InterchainstakingKeeper.GetDeniedValidatorInDenyList(ctx, zone.ChainId, valAddr[1]) + suite.False(found) + + // Ensure the deny list contains the two remaining validators + denyList = qApp.InterchainstakingKeeper.GetZoneValidatorDenyList(ctx, zone.ChainId) + suite.Len(denyList, 2) + suite.NotContains(denyList, addressutils.MustEncodeAddressToBech32(zone.GetValoperPrefix(), valAddr[1])) + suite.Contains(denyList, addressutils.MustEncodeAddressToBech32(zone.GetValoperPrefix(), valAddr[0])) + suite.Contains(denyList, addressutils.MustEncodeAddressToBech32(zone.GetValoperPrefix(), valAddr[2])) + + // Remove the remaining two validators from the deny list + qApp.InterchainstakingKeeper.RemoveValidatorFromDenyList(ctx, zone.ChainId, valAddr[0]) + qApp.InterchainstakingKeeper.RemoveValidatorFromDenyList(ctx, zone.ChainId, valAddr[2]) + + // Ensure the deny list is empty + denyList = qApp.InterchainstakingKeeper.GetZoneValidatorDenyList(ctx, zone.ChainId) + suite.Len(denyList, 0) + }) +} diff --git a/x/interchainstaking/keeper/grpc_query.go b/x/interchainstaking/keeper/grpc_query.go index e8cd63105..dbfbad160 100644 --- a/x/interchainstaking/keeper/grpc_query.go +++ b/x/interchainstaking/keeper/grpc_query.go @@ -337,3 +337,14 @@ func (k *Keeper) MappedAccounts(c context.Context, req *types.QueryMappedAccount return &types.QueryMappedAccountsResponse{RemoteAddressMap: remoteAddressMap}, nil } + +func (k *Keeper) ValidatorDenyList(c context.Context, req *types.QueryDenyListRequest) (*types.QueryDenyListResponse, error) { + if req == nil { + return nil, status.Error(codes.InvalidArgument, "empty request") + } + ctx := sdk.UnwrapSDKContext(c) + + validators := k.GetZoneValidatorDenyList(ctx, req.ChainId) + + return &types.QueryDenyListResponse{Validators: validators}, nil +} diff --git a/x/interchainstaking/keeper/grpc_query_test.go b/x/interchainstaking/keeper/grpc_query_test.go index c7ce5e104..da3b76390 100644 --- a/x/interchainstaking/keeper/grpc_query_test.go +++ b/x/interchainstaking/keeper/grpc_query_test.go @@ -1346,3 +1346,68 @@ func (suite *KeeperTestSuite) TestKeeper_Zone() { }) } } + +func (suite *KeeperTestSuite) TestKeeper_ZoneValidatorDenyList() { + testCases := []struct { + name string + req *types.QueryDenyListRequest + wantErr bool + expectedLength int + }{ + { + name: "empty request", + req: nil, + wantErr: true, + expectedLength: 0, + }, + { + name: "zone not found", + req: &types.QueryDenyListRequest{ChainId: "abcd"}, + wantErr: false, + expectedLength: 0, + }, + { + name: "zone valid request", + req: &types.QueryDenyListRequest{ChainId: suite.chainB.ChainID}, + wantErr: false, + expectedLength: 2, + }, + } + for _, tc := range testCases { + suite.Run(tc.name, func() { + suite.SetupTest() + suite.setupTestZones() + + quicksilver := suite.GetQuicksilverApp(suite.chainA) + ctx := suite.chainA.GetContext() + icsKeeper := quicksilver.InterchainstakingKeeper + + // Set 2 validators to deny list + validator1 := icsKeeper.GetValidators(ctx, suite.chainB.ChainID)[0] + valAddr, err := sdk.ValAddressFromBech32(validator1.ValoperAddress) + suite.NoError(err) + err = icsKeeper.SetZoneValidatorToDenyList(ctx, suite.chainB.ChainID, valAddr) + suite.NoError(err) + + validator2 := icsKeeper.GetValidators(ctx, suite.chainB.ChainID)[1] + valAddr, err = sdk.ValAddressFromBech32(validator2.ValoperAddress) + suite.NoError(err) + err = icsKeeper.SetZoneValidatorToDenyList(ctx, suite.chainB.ChainID, valAddr) + suite.NoError(err) + denyList, err := icsKeeper.ValidatorDenyList(ctx, tc.req) + if tc.wantErr { + suite.T().Logf("Error:\n%v\n", err) + suite.Error(err) + suite.Empty(denyList) + } else { + suite.NotNil(denyList) + if tc.expectedLength == 2 { + suite.Equal(&types.QueryDenyListResponse{Validators: []string{validator1.ValoperAddress, validator2.ValoperAddress}}, denyList) + } else { + suite.Empty(denyList.Validators) + } + + } + }) + } +} diff --git a/x/interchainstaking/keeper/intent_test.go b/x/interchainstaking/keeper/intent_test.go index 817631c13..2d8f3a968 100644 --- a/x/interchainstaking/keeper/intent_test.go +++ b/x/interchainstaking/keeper/intent_test.go @@ -324,7 +324,6 @@ func (suite *KeeperTestSuite) TestAggregateIntent() { icsKeeper := quicksilver.InterchainstakingKeeper zone, found := icsKeeper.GetZone(ctx, suite.chainB.ChainID) suite.True(found) - // give each user some funds for addrString, balance := range tt.balances() { suite.giveFunds(ctx, zone.LocalDenom, balance, addrString) @@ -334,7 +333,13 @@ func (suite *KeeperTestSuite) TestAggregateIntent() { icsKeeper.SetDelegatorIntent(ctx, &zone, intent, false) } - _ = icsKeeper.AggregateDelegatorIntents(ctx, &zone) + // If the supply is zero, mint some coins to avoid zero ordializedSum + if quicksilver.BankKeeper.GetSupply(ctx, zone.LocalDenom).IsZero() { + err := quicksilver.MintKeeper.MintCoins(ctx, sdk.NewCoins(sdk.NewCoin(zone.LocalDenom, sdk.NewInt(1000)))) + suite.NoError(err) + } + err := icsKeeper.AggregateDelegatorIntents(ctx, &zone) + suite.NoError(err) // refresh zone to pull new aggregate zone, found = icsKeeper.GetZone(ctx, suite.chainB.ChainID) diff --git a/x/interchainstaking/keeper/keeper.go b/x/interchainstaking/keeper/keeper.go index c81db1681..fc85d9466 100644 --- a/x/interchainstaking/keeper/keeper.go +++ b/x/interchainstaking/keeper/keeper.go @@ -4,6 +4,7 @@ import ( "bytes" "errors" "fmt" + "slices" "time" "github.com/tendermint/tendermint/libs/log" @@ -739,7 +740,7 @@ func (k *Keeper) GetAggregateIntentOrDefault(ctx sdk.Context, zone *types.Zone) } jailedThreshold := k.EpochsKeeper.GetEpochInfo(ctx, "epoch").Duration * 2 - + denyList := k.GetZoneValidatorDenyList(ctx, zone.ChainId) // filter intents here... // check validators for tombstoned for _, validatorIntent := range intents { @@ -764,9 +765,9 @@ func (k *Keeper) GetAggregateIntentOrDefault(ctx sdk.Context, zone *types.Zone) } // we should never let denylist validators into the list, even if they are explicitly selected - // if in deny list { - // continue - // } + if slices.Contains(denyList, validator.ValoperAddress) { + continue + } filteredIntents = append(filteredIntents, validatorIntent) } diff --git a/x/interchainstaking/types/deny_list.go b/x/interchainstaking/types/deny_list.go new file mode 100644 index 000000000..ab1254f4c --- /dev/null +++ b/x/interchainstaking/types/deny_list.go @@ -0,0 +1 @@ +package types diff --git a/x/interchainstaking/types/deny_list_test.go b/x/interchainstaking/types/deny_list_test.go new file mode 100644 index 000000000..d932b4650 --- /dev/null +++ b/x/interchainstaking/types/deny_list_test.go @@ -0,0 +1 @@ +package types_test diff --git a/x/interchainstaking/types/error.go b/x/interchainstaking/types/error.go index 82637c324..57f51b3ef 100644 --- a/x/interchainstaking/types/error.go +++ b/x/interchainstaking/types/error.go @@ -4,4 +4,7 @@ import ( "errors" ) -var ErrCoinAmountNil = errors.New("coin amount is nil") +var ( + ErrCoinAmountNil = errors.New("coin amount is nil") + ErrValidatorAlreadyInDenyList = errors.New("validator already in deny list") +) diff --git a/x/interchainstaking/types/keys.go b/x/interchainstaking/types/keys.go index 396384af5..29723aee2 100644 --- a/x/interchainstaking/types/keys.go +++ b/x/interchainstaking/types/keys.go @@ -63,6 +63,7 @@ var ( KeyPrefixRedelegationRecord = []byte{0x10} KeyPrefixLsmCaps = []byte{0x11} KeyPrefixLocalDenomZoneMapping = []byte{0x12} + KeyPrefixDeniedValidator = []byte{0x13} ) // ParseStakingDelegationKey parses the KV store key for a delegation from Cosmos x/staking module, @@ -165,3 +166,13 @@ func GetRemoteAddressPrefix(locaAddress []byte) []byte { func GetZoneValidatorAddrsByConsAddrKey(chainID string) []byte { return append(KeyPrefixValidatorAddrsByConsAddr, []byte(chainID)...) } + +// GetDeniedValidatorKey gets the validator deny list key prefix for a given chain. +func GetDeniedValidatorKey(chainID string, validatorAddress sdk.ValAddress) []byte { + return append(KeyPrefixDeniedValidator, append([]byte(chainID), validatorAddress.Bytes()...)...) +} + +// GetZoneValidatorDenyListKey gets the validator deny list key prefix for a given chain. +func GetZoneDeniedValidatorKey(chainID string) []byte { + return append(KeyPrefixDeniedValidator, []byte(chainID)...) +} diff --git a/x/interchainstaking/types/query.pb.go b/x/interchainstaking/types/query.pb.go index 90378d72f..927f22e05 100644 --- a/x/interchainstaking/types/query.pb.go +++ b/x/interchainstaking/types/query.pb.go @@ -1597,6 +1597,102 @@ func (m *QueryMappedAccountsResponse) GetPagination() *query.PageResponse { return nil } +type QueryDenyListRequest struct { + ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty" yaml:"chain_id"` +} + +func (m *QueryDenyListRequest) Reset() { *m = QueryDenyListRequest{} } +func (m *QueryDenyListRequest) String() string { return proto.CompactTextString(m) } +func (*QueryDenyListRequest) ProtoMessage() {} +func (*QueryDenyListRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_c8e4d79429548821, []int{29} +} +func (m *QueryDenyListRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryDenyListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryDenyListRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryDenyListRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryDenyListRequest.Merge(m, src) +} +func (m *QueryDenyListRequest) XXX_Size() int { + return m.Size() +} +func (m *QueryDenyListRequest) XXX_DiscardUnknown() { + xxx_messageInfo_QueryDenyListRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryDenyListRequest proto.InternalMessageInfo + +func (m *QueryDenyListRequest) GetChainId() string { + if m != nil { + return m.ChainId + } + return "" +} + +type QueryDenyListResponse struct { + Validators []string `protobuf:"bytes,1,rep,name=validators,proto3" json:"validators,omitempty"` + Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` +} + +func (m *QueryDenyListResponse) Reset() { *m = QueryDenyListResponse{} } +func (m *QueryDenyListResponse) String() string { return proto.CompactTextString(m) } +func (*QueryDenyListResponse) ProtoMessage() {} +func (*QueryDenyListResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_c8e4d79429548821, []int{30} +} +func (m *QueryDenyListResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryDenyListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryDenyListResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryDenyListResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryDenyListResponse.Merge(m, src) +} +func (m *QueryDenyListResponse) XXX_Size() int { + return m.Size() +} +func (m *QueryDenyListResponse) XXX_DiscardUnknown() { + xxx_messageInfo_QueryDenyListResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryDenyListResponse proto.InternalMessageInfo + +func (m *QueryDenyListResponse) GetValidators() []string { + if m != nil { + return m.Validators + } + return nil +} + +func (m *QueryDenyListResponse) GetPagination() *query.PageResponse { + if m != nil { + return m.Pagination + } + return nil +} + func init() { proto.RegisterType((*Statistics)(nil), "quicksilver.interchainstaking.v1.Statistics") proto.RegisterType((*QueryZonesRequest)(nil), "quicksilver.interchainstaking.v1.QueryZonesRequest") @@ -1628,6 +1724,8 @@ func init() { proto.RegisterType((*QueryMappedAccountsRequest)(nil), "quicksilver.interchainstaking.v1.QueryMappedAccountsRequest") proto.RegisterType((*QueryMappedAccountsResponse)(nil), "quicksilver.interchainstaking.v1.QueryMappedAccountsResponse") proto.RegisterMapType((map[string][]byte)(nil), "quicksilver.interchainstaking.v1.QueryMappedAccountsResponse.RemoteAddressMapEntry") + proto.RegisterType((*QueryDenyListRequest)(nil), "quicksilver.interchainstaking.v1.QueryDenyListRequest") + proto.RegisterType((*QueryDenyListResponse)(nil), "quicksilver.interchainstaking.v1.QueryDenyListResponse") } func init() { @@ -1635,120 +1733,123 @@ func init() { } var fileDescriptor_c8e4d79429548821 = []byte{ - // 1808 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4b, 0x6c, 0x1b, 0x5d, - 0x15, 0xce, 0xcd, 0x3b, 0xc7, 0x69, 0xea, 0xdc, 0x26, 0xd4, 0x31, 0xc5, 0xc9, 0x3f, 0x48, 0x34, - 0x3f, 0xa4, 0x1e, 0x25, 0xa9, 0xa0, 0x4d, 0x9b, 0xb6, 0x71, 0x1e, 0x25, 0x2d, 0x15, 0x74, 0x92, - 0x52, 0xb5, 0x45, 0x32, 0x13, 0xfb, 0xca, 0x19, 0xd5, 0x99, 0x71, 0x66, 0xc6, 0x69, 0x42, 0x54, - 0x09, 0x90, 0xd8, 0x22, 0x10, 0x08, 0xe8, 0x9a, 0x0d, 0x42, 0x62, 0x05, 0x1b, 0x76, 0xb0, 0x40, - 0xaa, 0x78, 0x48, 0x15, 0x65, 0xc1, 0x86, 0x08, 0xfa, 0x58, 0xb0, 0x60, 0x41, 0x59, 0x23, 0xfd, - 0x9a, 0x3b, 0xe7, 0x8e, 0xc7, 0xe3, 0x71, 0x3c, 0x9e, 0x58, 0x6a, 0x77, 0xbe, 0x8f, 0xf3, 0x9d, - 0xf3, 0x7d, 0xf7, 0xdc, 0xc7, 0x99, 0x04, 0x66, 0x76, 0xab, 0x5a, 0xe1, 0xb1, 0xa5, 0x95, 0xf7, - 0x98, 0x29, 0x6b, 0xba, 0xcd, 0xcc, 0xc2, 0xb6, 0xaa, 0xe9, 0x96, 0xad, 0x3e, 0xd6, 0xf4, 0x92, - 0xbc, 0x37, 0x2b, 0xef, 0x56, 0x99, 0x79, 0x90, 0xad, 0x98, 0x86, 0x6d, 0xd0, 0x29, 0xdf, 0xec, - 0x6c, 0xc3, 0xec, 0xec, 0xde, 0x6c, 0xfa, 0xf3, 0x05, 0xc3, 0xda, 0x31, 0x2c, 0x79, 0x4b, 0xb5, - 0x98, 0x6b, 0x2a, 0xef, 0xcd, 0x6e, 0x31, 0x5b, 0x9d, 0x95, 0x2b, 0x6a, 0x49, 0xd3, 0x55, 0x5b, - 0x33, 0x74, 0x17, 0x2d, 0x9d, 0xf1, 0xcf, 0x15, 0xb3, 0x0a, 0x86, 0x26, 0xc6, 0x27, 0xdc, 0xf1, - 0x3c, 0x6f, 0xc9, 0x6e, 0x03, 0x87, 0xc6, 0x4a, 0x46, 0xc9, 0x70, 0xfb, 0x9d, 0x5f, 0xd8, 0x7b, - 0xae, 0x64, 0x18, 0xa5, 0x32, 0x93, 0xd5, 0x8a, 0x26, 0xab, 0xba, 0x6e, 0xd8, 0xdc, 0x9b, 0xb0, - 0xb9, 0xd4, 0x92, 0x6a, 0x23, 0x23, 0x6e, 0x29, 0xfd, 0xaf, 0x07, 0x60, 0xc3, 0x01, 0xb3, 0x6c, - 0xad, 0x60, 0xd1, 0x09, 0x18, 0xe4, 0x93, 0xf2, 0x5a, 0x31, 0x45, 0xa6, 0xc8, 0xf4, 0x90, 0x32, - 0xc0, 0xdb, 0xeb, 0x45, 0x7a, 0x0e, 0x86, 0x8a, 0xac, 0x62, 0x58, 0x9a, 0xcd, 0x8a, 0xa9, 0xee, - 0x29, 0x32, 0xdd, 0xa3, 0xd4, 0x3a, 0x68, 0x1a, 0x06, 0xb1, 0x61, 0xa5, 0x7a, 0xf8, 0xa0, 0xd7, - 0xa6, 0x19, 0x00, 0xfc, 0x6d, 0x98, 0x56, 0xaa, 0x97, 0x8f, 0xfa, 0x7a, 0x5c, 0xe4, 0x32, 0x2b, - 0xa9, 0x0e, 0x72, 0x9f, 0x40, 0xc6, 0x0e, 0xfa, 0x29, 0xe8, 0xb7, 0xaa, 0x95, 0x4a, 0xf9, 0x20, - 0xd5, 0xcf, 0x87, 0xb0, 0x45, 0x67, 0x80, 0x16, 0x35, 0xcb, 0x56, 0xf5, 0x02, 0xcb, 0xdb, 0x46, - 0xde, 0x56, 0xcd, 0x12, 0xb3, 0x53, 0x03, 0x3c, 0xe8, 0xa4, 0x18, 0xd9, 0x34, 0x36, 0x79, 0x3f, - 0xbd, 0x05, 0xc9, 0xaa, 0xbe, 0x65, 0xe8, 0x45, 0x4d, 0x2f, 0xe5, 0xd5, 0x1d, 0xa3, 0xaa, 0xdb, - 0xa9, 0xc1, 0x29, 0x32, 0x9d, 0x98, 0x9b, 0xc8, 0xa2, 0xfc, 0xce, 0x5a, 0x65, 0x71, 0xad, 0xb2, - 0xcb, 0x86, 0xa6, 0xe7, 0x7a, 0x9f, 0x1f, 0x4d, 0x76, 0x29, 0xa7, 0x3d, 0xc3, 0x25, 0x6e, 0x47, - 0x57, 0xe0, 0xd4, 0x6e, 0x95, 0x55, 0x59, 0x51, 0x00, 0x0d, 0x45, 0x03, 0x1a, 0x76, 0xad, 0x10, - 0xe5, 0x3c, 0xd4, 0x80, 0xf3, 0x05, 0x8e, 0x03, 0x53, 0x64, 0xfa, 0x94, 0x32, 0xe2, 0x75, 0x2f, - 0xf3, 0x89, 0x1f, 0x01, 0x1a, 0xe2, 0xac, 0x04, 0x9f, 0x95, 0x70, 0xfb, 0xdc, 0x29, 0x59, 0x38, - 0xe3, 0x1a, 0xe5, 0x4d, 0x56, 0x30, 0x4c, 0x31, 0x73, 0x98, 0xcf, 0x1c, 0x75, 0x87, 0x14, 0x3e, - 0xc2, 0xe7, 0x4b, 0x8f, 0x60, 0xf4, 0xae, 0x93, 0xc0, 0x0f, 0x0d, 0x9d, 0x59, 0x0a, 0xdb, 0xad, - 0x32, 0xcb, 0xa6, 0x6b, 0x00, 0xb5, 0x3c, 0xe6, 0xab, 0x9f, 0x98, 0xfb, 0x5c, 0x1d, 0x27, 0x77, - 0xbf, 0x08, 0x66, 0x5f, 0x53, 0x4b, 0x0c, 0x6d, 0x15, 0x9f, 0xa5, 0xf4, 0x96, 0x00, 0xf5, 0xa3, - 0x5b, 0x15, 0x43, 0xb7, 0x18, 0xcd, 0x41, 0xdf, 0xb7, 0x9c, 0x8e, 0x14, 0x99, 0xea, 0xe1, 0xc8, - 0xad, 0x36, 0x5c, 0xd6, 0xb1, 0x47, 0xe9, 0x5c, 0x53, 0x07, 0xc3, 0xb2, 0x55, 0xdb, 0x4a, 0x75, - 0x73, 0x8c, 0x99, 0xd6, 0x18, 0xb5, 0xdc, 0x56, 0x5c, 0x53, 0x7a, 0xb3, 0x8e, 0x66, 0x0f, 0xa7, - 0x79, 0xbe, 0x25, 0x4d, 0x97, 0x44, 0x1d, 0xcf, 0x1c, 0x24, 0x3d, 0x9a, 0x42, 0xc3, 0x6c, 0x70, - 0xff, 0xe4, 0xce, 0xbc, 0x3b, 0x9a, 0x3c, 0x7d, 0xa0, 0xee, 0x94, 0x17, 0x24, 0x31, 0x22, 0x79, - 0x9b, 0x4a, 0x7a, 0x46, 0x7c, 0x2b, 0xe1, 0x49, 0x75, 0x03, 0x7a, 0x1d, 0xbe, 0xde, 0x1a, 0xb4, - 0xa3, 0x14, 0xb7, 0xf4, 0x0b, 0x45, 0x62, 0x0a, 0x25, 0xfd, 0x94, 0x40, 0xda, 0x8b, 0xed, 0xeb, - 0x6a, 0x59, 0x2b, 0xaa, 0xce, 0x76, 0x15, 0x54, 0x8f, 0x39, 0x2a, 0x9c, 0x2d, 0x6b, 0xab, 0x76, - 0xd5, 0x75, 0x3f, 0xa4, 0x60, 0x2b, 0x90, 0x61, 0x3d, 0xb1, 0x33, 0xec, 0xb7, 0x04, 0x3e, 0x1d, - 0x1a, 0x19, 0xea, 0x77, 0x17, 0x60, 0xcf, 0xeb, 0xc5, 0x7c, 0xfb, 0x42, 0x6b, 0x09, 0x3c, 0x24, - 0x94, 0xd2, 0x07, 0x12, 0xc8, 0x9a, 0xee, 0xf8, 0x59, 0xb3, 0x09, 0x12, 0x0f, 0x7d, 0xc5, 0x3d, - 0xff, 0x96, 0x0a, 0x7c, 0xab, 0xae, 0x19, 0xe6, 0xb2, 0x13, 0x4d, 0xdc, 0x3c, 0xfa, 0x0e, 0x81, - 0xcf, 0x1e, 0x0b, 0x8b, 0xca, 0x3c, 0x84, 0xb3, 0x78, 0xf0, 0xe6, 0x55, 0x77, 0x4a, 0x5e, 0x2d, - 0x16, 0x4d, 0x66, 0x59, 0xe8, 0x46, 0x7a, 0x77, 0x34, 0x99, 0x71, 0xdd, 0x34, 0x99, 0x28, 0x29, - 0xe3, 0xc5, 0x3a, 0x27, 0x4b, 0xd8, 0xff, 0x63, 0xb1, 0x2a, 0x2b, 0xee, 0xd9, 0x6d, 0x98, 0xeb, - 0xba, 0xcd, 0x74, 0x3b, 0x26, 0x27, 0xba, 0x0a, 0xa3, 0x45, 0x81, 0xe4, 0x45, 0xc9, 0x13, 0x2a, - 0x97, 0xfa, 0xeb, 0x6f, 0x2e, 0x8c, 0xa1, 0xf8, 0xe8, 0x7e, 0xc3, 0x36, 0x35, 0xbd, 0xa4, 0x24, - 0x3d, 0x13, 0x11, 0x96, 0x06, 0xe7, 0xc2, 0xa3, 0x42, 0x49, 0xd6, 0xa1, 0x5f, 0xe3, 0x3d, 0xb8, - 0xdd, 0x66, 0x5b, 0x27, 0x4a, 0x10, 0x0a, 0x01, 0x24, 0x16, 0xee, 0xca, 0xdb, 0x32, 0xa1, 0x8c, - 0x48, 0xdb, 0x8c, 0xbe, 0x4d, 0x20, 0xd5, 0xe8, 0x02, 0xe9, 0x1c, 0xb3, 0x2d, 0x6b, 0x4c, 0xbb, - 0x4f, 0xca, 0xb4, 0x0a, 0x9f, 0x69, 0xc2, 0x14, 0xc3, 0xd8, 0x84, 0x01, 0x77, 0xaa, 0xd8, 0x7f, - 0x0b, 0x6d, 0x3b, 0xf3, 0xc0, 0x14, 0x01, 0x25, 0xfd, 0x90, 0xc0, 0x59, 0xbf, 0x5f, 0xe7, 0x09, - 0x14, 0x37, 0xbd, 0xd6, 0x42, 0x76, 0x74, 0x9c, 0xc3, 0xe8, 0x4f, 0x04, 0x52, 0x8d, 0x31, 0x79, - 0x32, 0x24, 0x8a, 0xb5, 0x6e, 0x94, 0x62, 0x26, 0xb2, 0x14, 0x9a, 0x21, 0xde, 0x0e, 0x7e, 0x18, - 0x9a, 0x84, 0x1e, 0x7b, 0xaf, 0x8c, 0x8f, 0x30, 0xe7, 0x67, 0xe7, 0x2e, 0xb5, 0xef, 0x13, 0x18, - 0xe3, 0x6c, 0x14, 0x56, 0x60, 0x5a, 0xc5, 0x7e, 0xef, 0xf2, 0xfe, 0x8a, 0xc0, 0x78, 0x20, 0x20, - 0xd4, 0xf6, 0x36, 0x0c, 0x9a, 0xd8, 0x87, 0xc2, 0x7e, 0xdc, 0x5a, 0x58, 0x44, 0x41, 0x55, 0x3d, - 0x80, 0xce, 0x9d, 0xef, 0x79, 0xd4, 0x6f, 0x73, 0x7f, 0x83, 0x5f, 0x7a, 0x71, 0xf5, 0x3b, 0x0b, - 0x03, 0xf6, 0x7e, 0x7e, 0x5b, 0xb5, 0xb6, 0xc5, 0x25, 0x6a, 0xef, 0x7f, 0x59, 0xb5, 0xb6, 0xa5, - 0x6f, 0xa0, 0x1e, 0x35, 0x07, 0xa8, 0xc7, 0x32, 0x0c, 0x20, 0x1d, 0x3c, 0xc9, 0xa2, 0xcb, 0xa1, - 0x08, 0x4b, 0xe9, 0x88, 0xe0, 0xce, 0xbe, 0xaf, 0xd9, 0xdb, 0x45, 0x53, 0x7d, 0xa2, 0x96, 0xdd, - 0x87, 0xa3, 0xf5, 0x7e, 0x8f, 0xf1, 0x8e, 0xbd, 0x1d, 0xfe, 0x40, 0x20, 0xd3, 0x8c, 0xa0, 0x77, - 0x49, 0x26, 0x9e, 0x78, 0x83, 0x22, 0xb7, 0xe6, 0x5a, 0x8b, 0x19, 0x44, 0x14, 0x5b, 0xd7, 0x07, - 0xd6, 0xb9, 0x3c, 0xfb, 0x05, 0x81, 0x8f, 0x38, 0x8f, 0x7b, 0x16, 0x33, 0x9b, 0x2e, 0xd6, 0x15, - 0x18, 0xae, 0x5a, 0xac, 0xe1, 0xb2, 0x79, 0x77, 0x34, 0x19, 0xae, 0x7b, 0xc2, 0x99, 0x1d, 0x2e, - 0x79, 0xfc, 0x2d, 0xfc, 0x13, 0x82, 0xf7, 0xe2, 0x3d, 0x51, 0xd8, 0x9c, 0x30, 0xa5, 0x3a, 0x15, - 0xd8, 0xef, 0x45, 0xb2, 0x37, 0x06, 0x86, 0xa9, 0x70, 0x1f, 0xc0, 0xab, 0xc6, 0x44, 0x26, 0x44, - 0xb8, 0x36, 0x03, 0x78, 0xe2, 0x3d, 0x59, 0x83, 0xea, 0x5c, 0x1e, 0x3c, 0x23, 0x30, 0x89, 0xe7, - 0x63, 0xed, 0x8a, 0xf8, 0x40, 0xf4, 0xfd, 0x0b, 0x81, 0xa9, 0xe6, 0xb1, 0xa1, 0xc4, 0xdf, 0x84, - 0x53, 0x26, 0x6b, 0xbc, 0x24, 0x2f, 0x46, 0x39, 0xbc, 0x82, 0xa8, 0x28, 0x74, 0x3d, 0x60, 0xe7, - 0xb4, 0xfe, 0x99, 0xa8, 0x88, 0xee, 0xa8, 0x95, 0x0a, 0x2b, 0xe2, 0xfb, 0xd7, 0x93, 0x79, 0x0e, - 0x06, 0xa2, 0x3e, 0xea, 0xc4, 0xc4, 0x8e, 0x49, 0xfd, 0xeb, 0x6e, 0x7c, 0x7c, 0x07, 0x43, 0x43, - 0x95, 0xbf, 0x47, 0x20, 0xa9, 0xb0, 0x1d, 0xc3, 0x66, 0x18, 0xc8, 0x1d, 0xb5, 0x82, 0x4a, 0x6f, - 0xb4, 0x56, 0xfa, 0x18, 0xe4, 0x6c, 0x10, 0x75, 0x55, 0xb7, 0xcd, 0x03, 0x5c, 0x88, 0x06, 0x97, - 0x1d, 0x5b, 0x8b, 0xf4, 0x32, 0x8c, 0x87, 0x7a, 0x76, 0x1e, 0x47, 0x8f, 0xd9, 0x01, 0xbe, 0x7d, - 0x9d, 0x9f, 0x74, 0x0c, 0xfa, 0xf6, 0xd4, 0x72, 0x95, 0x71, 0x77, 0xc3, 0x8a, 0xdb, 0x58, 0xe8, - 0xbe, 0x44, 0xe6, 0xfe, 0x31, 0x01, 0x7d, 0x9c, 0x1b, 0xfd, 0x39, 0x81, 0x3e, 0xfe, 0xbd, 0x82, - 0xce, 0x47, 0x94, 0xc3, 0xff, 0xed, 0x24, 0x7d, 0xb1, 0x3d, 0x23, 0x97, 0x8f, 0x24, 0x7f, 0xf7, - 0xe5, 0x9b, 0x1f, 0x75, 0x7f, 0x4c, 0xcf, 0xcb, 0x2d, 0xbf, 0xdf, 0xb9, 0xdf, 0x3f, 0x7e, 0x49, - 0xa0, 0xd7, 0x81, 0xa0, 0x73, 0x6d, 0xf8, 0x13, 0x31, 0xce, 0xb7, 0x65, 0x83, 0x21, 0x5e, 0xe6, - 0x21, 0xce, 0xd3, 0xd9, 0x68, 0x21, 0xca, 0x87, 0xe2, 0x38, 0x79, 0x4a, 0xff, 0x46, 0x60, 0xa4, - 0xbe, 0x40, 0xa7, 0x57, 0xdb, 0x08, 0xa1, 0xe1, 0x8b, 0x43, 0x7a, 0x31, 0xa6, 0x35, 0x52, 0x59, - 0xe5, 0x54, 0xae, 0xd3, 0xc5, 0x88, 0x6a, 0xfb, 0xb8, 0xc8, 0xbe, 0x2f, 0x01, 0xff, 0x26, 0x30, - 0x52, 0x5f, 0x65, 0xd3, 0x95, 0x88, 0x81, 0x1d, 0x5b, 0xf3, 0xa7, 0x57, 0x4f, 0x88, 0x82, 0x34, - 0x6f, 0x71, 0x9a, 0x2b, 0x34, 0x17, 0x83, 0xa6, 0x57, 0xf2, 0xe3, 0xe9, 0xf4, 0x5f, 0x02, 0xa7, - 0x03, 0x55, 0x19, 0x5d, 0x8c, 0x1c, 0x66, 0xd8, 0x57, 0x80, 0xf4, 0xb5, 0xb8, 0xe6, 0x48, 0x2f, - 0xcf, 0xe9, 0x3d, 0xa0, 0xf7, 0x63, 0xd1, 0x13, 0xef, 0x50, 0xb7, 0xa0, 0x94, 0x0f, 0x1b, 0x5e, - 0xa6, 0x4f, 0xe9, 0x1b, 0x02, 0xc9, 0x60, 0x25, 0x4a, 0x63, 0x46, 0xed, 0xa5, 0xee, 0xf5, 0xd8, - 0xf6, 0x48, 0xfb, 0xab, 0x9c, 0xf6, 0x3a, 0xbd, 0xd9, 0x9a, 0x76, 0x90, 0xa5, 0x15, 0x4a, 0xf3, - 0xcf, 0x04, 0x12, 0xbe, 0x8a, 0x95, 0x5e, 0x6e, 0x2f, 0x42, 0x5f, 0xe5, 0x9d, 0x5e, 0x88, 0x63, - 0x8a, 0xbc, 0xd6, 0x38, 0xaf, 0x1b, 0xf4, 0x5a, 0xfc, 0xe5, 0xe4, 0xe1, 0xff, 0x8e, 0xc0, 0xa0, - 0xa8, 0x10, 0xe9, 0x17, 0x23, 0x06, 0x14, 0xa8, 0x71, 0xd3, 0x5f, 0x6a, 0xdb, 0x0e, 0x59, 0x2c, - 0x73, 0x16, 0x8b, 0xf4, 0x4a, 0x0c, 0x16, 0x5e, 0x09, 0xfa, 0x47, 0x02, 0x83, 0xa2, 0xa8, 0x8b, - 0x4c, 0x21, 0x50, 0x66, 0x46, 0xa6, 0x10, 0xac, 0x1e, 0xa5, 0x3b, 0x9c, 0xc2, 0x4d, 0xba, 0x1a, - 0xff, 0xd8, 0xb0, 0xe4, 0x43, 0x2c, 0x59, 0x9f, 0xd2, 0xff, 0x13, 0x18, 0x77, 0xce, 0xe1, 0x86, - 0xca, 0x84, 0x46, 0xdd, 0x0a, 0xcd, 0x6a, 0x9a, 0xf4, 0x8d, 0xf8, 0x00, 0xc8, 0x55, 0xe5, 0x5c, - 0x1f, 0xd1, 0x07, 0x31, 0xb8, 0xd6, 0x8a, 0x39, 0xfc, 0x5b, 0x4b, 0xf8, 0xf6, 0x7a, 0x4b, 0x60, - 0xf4, 0x83, 0xe4, 0x7e, 0x92, 0x75, 0x6e, 0xe4, 0xee, 0xdc, 0x10, 0xe3, 0xa1, 0x15, 0x28, 0x5d, - 0x8e, 0x18, 0xea, 0x71, 0xf5, 0x6b, 0x07, 0xf8, 0xde, 0xe5, 0x7c, 0x6f, 0xd3, 0xf5, 0xd6, 0x7c, - 0x9d, 0xda, 0xd7, 0x92, 0x0f, 0xfd, 0x05, 0x73, 0x28, 0xe7, 0x7f, 0x11, 0x48, 0x06, 0x2b, 0xc6, - 0xc8, 0x37, 0x44, 0x93, 0x1a, 0x38, 0xf2, 0x0d, 0xd1, 0xac, 0x54, 0x95, 0xbe, 0xc2, 0x89, 0xae, - 0xd1, 0x95, 0x18, 0x0b, 0x5b, 0xfb, 0x43, 0xa4, 0xe0, 0xf8, 0x1f, 0x02, 0x67, 0x42, 0xaa, 0x36, - 0xba, 0x14, 0xf9, 0x88, 0x6c, 0x56, 0x8d, 0xa6, 0x73, 0x27, 0x81, 0x68, 0xff, 0x3a, 0x0c, 0x39, - 0x70, 0x6b, 0xb8, 0x1e, 0xdf, 0x97, 0x04, 0x46, 0xea, 0x0b, 0x9c, 0xc8, 0x8f, 0xd5, 0xd0, 0x62, - 0x30, 0xf2, 0x63, 0x35, 0xbc, 0xaa, 0x92, 0x56, 0x38, 0xc1, 0x6b, 0xf4, 0x6a, 0x6b, 0x82, 0x3b, - 0x1c, 0x41, 0x64, 0xac, 0xc3, 0x55, 0x24, 0x6f, 0xee, 0xd1, 0xf3, 0x57, 0x19, 0xf2, 0xe2, 0x55, - 0x86, 0xfc, 0xf3, 0x55, 0x86, 0xfc, 0xe0, 0x75, 0xa6, 0xeb, 0xc5, 0xeb, 0x4c, 0xd7, 0xdf, 0x5f, - 0x67, 0xba, 0x1e, 0x2e, 0x95, 0x34, 0x7b, 0xbb, 0xba, 0x95, 0x2d, 0x18, 0x3b, 0x7e, 0x0f, 0x17, - 0xf8, 0x23, 0xde, 0xef, 0x72, 0x3f, 0xc4, 0xa9, 0x7d, 0x50, 0x61, 0xd6, 0x56, 0x3f, 0xff, 0x0f, - 0x82, 0xf9, 0x4f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xf5, 0x16, 0xe6, 0xf3, 0x68, 0x21, 0x00, 0x00, + // 1844 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4d, 0x6c, 0x1b, 0x5b, + 0x15, 0xce, 0xcd, 0x7f, 0x8e, 0xd3, 0xd4, 0xb9, 0x4d, 0xa8, 0x63, 0x8a, 0x93, 0x37, 0x48, 0x34, + 0x0f, 0xf2, 0x3c, 0x4a, 0xf2, 0x04, 0x7d, 0x79, 0x2f, 0x7d, 0x8d, 0xe3, 0xa4, 0xa4, 0x3f, 0x82, + 0x4e, 0x52, 0xaa, 0xb6, 0x48, 0x66, 0x62, 0x5f, 0x39, 0xa3, 0x3a, 0x33, 0xce, 0xcc, 0x38, 0x4d, + 0x88, 0x2a, 0x01, 0x12, 0x5b, 0x04, 0x02, 0x01, 0x65, 0xcb, 0x06, 0x21, 0xb1, 0x82, 0x0d, 0x3b, + 0x58, 0x20, 0x55, 0xfc, 0x48, 0x15, 0x65, 0xc1, 0x86, 0x08, 0xfa, 0xb3, 0x60, 0xc1, 0x82, 0xb2, + 0x46, 0x42, 0x73, 0xe7, 0xdc, 0xf1, 0x78, 0x3c, 0x8e, 0xc7, 0x13, 0xa3, 0x76, 0xe7, 0xb9, 0xf7, + 0x9e, 0xef, 0x9c, 0xef, 0xbb, 0xe7, 0xfe, 0x9c, 0x9b, 0xc0, 0xdc, 0x5e, 0x4d, 0x2b, 0x3e, 0xb0, + 0xb4, 0xca, 0x3e, 0x33, 0x65, 0x4d, 0xb7, 0x99, 0x59, 0xdc, 0x51, 0x35, 0xdd, 0xb2, 0xd5, 0x07, + 0x9a, 0x5e, 0x96, 0xf7, 0xe7, 0xe5, 0xbd, 0x1a, 0x33, 0x0f, 0xb3, 0x55, 0xd3, 0xb0, 0x0d, 0x3a, + 0xe3, 0x1b, 0x9d, 0x6d, 0x1a, 0x9d, 0xdd, 0x9f, 0x4f, 0x7f, 0xb6, 0x68, 0x58, 0xbb, 0x86, 0x25, + 0x6f, 0xab, 0x16, 0x73, 0x4d, 0xe5, 0xfd, 0xf9, 0x6d, 0x66, 0xab, 0xf3, 0x72, 0x55, 0x2d, 0x6b, + 0xba, 0x6a, 0x6b, 0x86, 0xee, 0xa2, 0xa5, 0x33, 0xfe, 0xb1, 0x62, 0x54, 0xd1, 0xd0, 0x44, 0xff, + 0x94, 0xdb, 0x5f, 0xe0, 0x5f, 0xb2, 0xfb, 0x81, 0x5d, 0x13, 0x65, 0xa3, 0x6c, 0xb8, 0xed, 0xce, + 0x2f, 0x6c, 0xbd, 0x50, 0x36, 0x8c, 0x72, 0x85, 0xc9, 0x6a, 0x55, 0x93, 0x55, 0x5d, 0x37, 0x6c, + 0xee, 0x4d, 0xd8, 0x5c, 0x6a, 0x4b, 0xb5, 0x99, 0x11, 0xb7, 0x94, 0xfe, 0xd3, 0x07, 0xb0, 0xe9, + 0x80, 0x59, 0xb6, 0x56, 0xb4, 0xe8, 0x14, 0x0c, 0xf3, 0x41, 0x05, 0xad, 0x94, 0x22, 0x33, 0x64, + 0x76, 0x44, 0x19, 0xe2, 0xdf, 0x1b, 0x25, 0x7a, 0x01, 0x46, 0x4a, 0xac, 0x6a, 0x58, 0x9a, 0xcd, + 0x4a, 0xa9, 0xde, 0x19, 0x32, 0xdb, 0xa7, 0xd4, 0x1b, 0x68, 0x1a, 0x86, 0xf1, 0xc3, 0x4a, 0xf5, + 0xf1, 0x4e, 0xef, 0x9b, 0x66, 0x00, 0xf0, 0xb7, 0x61, 0x5a, 0xa9, 0x7e, 0xde, 0xeb, 0x6b, 0x71, + 0x91, 0x2b, 0xac, 0xac, 0x3a, 0xc8, 0x03, 0x02, 0x19, 0x1b, 0xe8, 0x27, 0x60, 0xd0, 0xaa, 0x55, + 0xab, 0x95, 0xc3, 0xd4, 0x20, 0xef, 0xc2, 0x2f, 0x3a, 0x07, 0xb4, 0xa4, 0x59, 0xb6, 0xaa, 0x17, + 0x59, 0xc1, 0x36, 0x0a, 0xb6, 0x6a, 0x96, 0x99, 0x9d, 0x1a, 0xe2, 0x41, 0x27, 0x45, 0xcf, 0x96, + 0xb1, 0xc5, 0xdb, 0xe9, 0x35, 0x48, 0xd6, 0xf4, 0x6d, 0x43, 0x2f, 0x69, 0x7a, 0xb9, 0xa0, 0xee, + 0x1a, 0x35, 0xdd, 0x4e, 0x0d, 0xcf, 0x90, 0xd9, 0xc4, 0xc2, 0x54, 0x16, 0xe5, 0x77, 0xe6, 0x2a, + 0x8b, 0x73, 0x95, 0x5d, 0x35, 0x34, 0x3d, 0xd7, 0xff, 0xe4, 0x78, 0xba, 0x47, 0x39, 0xeb, 0x19, + 0xae, 0x70, 0x3b, 0x9a, 0x87, 0x33, 0x7b, 0x35, 0x56, 0x63, 0x25, 0x01, 0x34, 0x12, 0x0d, 0x68, + 0xd4, 0xb5, 0x42, 0x94, 0x8b, 0x50, 0x07, 0x2e, 0x14, 0x39, 0x0e, 0xcc, 0x90, 0xd9, 0x33, 0xca, + 0x98, 0xd7, 0xbc, 0xca, 0x07, 0xbe, 0x03, 0x68, 0x88, 0xa3, 0x12, 0x7c, 0x54, 0xc2, 0x6d, 0x73, + 0x87, 0x64, 0xe1, 0x9c, 0x6b, 0x54, 0x30, 0x59, 0xd1, 0x30, 0xc5, 0xc8, 0x51, 0x3e, 0x72, 0xdc, + 0xed, 0x52, 0x78, 0x0f, 0x1f, 0x2f, 0xdd, 0x87, 0xf1, 0x5b, 0x4e, 0x02, 0xdf, 0x33, 0x74, 0x66, + 0x29, 0x6c, 0xaf, 0xc6, 0x2c, 0x9b, 0xae, 0x03, 0xd4, 0xf3, 0x98, 0xcf, 0x7e, 0x62, 0xe1, 0x33, + 0x0d, 0x9c, 0xdc, 0xf5, 0x22, 0x98, 0x7d, 0x59, 0x2d, 0x33, 0xb4, 0x55, 0x7c, 0x96, 0xd2, 0x2b, + 0x02, 0xd4, 0x8f, 0x6e, 0x55, 0x0d, 0xdd, 0x62, 0x34, 0x07, 0x03, 0x5f, 0x77, 0x1a, 0x52, 0x64, + 0xa6, 0x8f, 0x23, 0xb7, 0x5b, 0x70, 0x59, 0xc7, 0x1e, 0xa5, 0x73, 0x4d, 0x1d, 0x0c, 0xcb, 0x56, + 0x6d, 0x2b, 0xd5, 0xcb, 0x31, 0xe6, 0xda, 0x63, 0xd4, 0x73, 0x5b, 0x71, 0x4d, 0xe9, 0xd5, 0x06, + 0x9a, 0x7d, 0x9c, 0xe6, 0xc5, 0xb6, 0x34, 0x5d, 0x12, 0x0d, 0x3c, 0x73, 0x90, 0xf4, 0x68, 0x0a, + 0x0d, 0xb3, 0xc1, 0xf5, 0x93, 0x3b, 0xf7, 0xfa, 0x78, 0xfa, 0xec, 0xa1, 0xba, 0x5b, 0x59, 0x92, + 0x44, 0x8f, 0xe4, 0x2d, 0x2a, 0xe9, 0x31, 0xf1, 0xcd, 0x84, 0x27, 0xd5, 0x15, 0xe8, 0x77, 0xf8, + 0x7a, 0x73, 0xd0, 0x89, 0x52, 0xdc, 0xd2, 0x2f, 0x14, 0x89, 0x29, 0x94, 0xf4, 0x23, 0x02, 0x69, + 0x2f, 0xb6, 0xaf, 0xa8, 0x15, 0xad, 0xa4, 0x3a, 0xcb, 0x55, 0x50, 0x3d, 0x61, 0xab, 0x70, 0x96, + 0xac, 0xad, 0xda, 0x35, 0xd7, 0xfd, 0x88, 0x82, 0x5f, 0x81, 0x0c, 0xeb, 0x8b, 0x9d, 0x61, 0xbf, + 0x26, 0xf0, 0xc9, 0xd0, 0xc8, 0x50, 0xbf, 0x5b, 0x00, 0xfb, 0x5e, 0x2b, 0xe6, 0xdb, 0xe7, 0xda, + 0x4b, 0xe0, 0x21, 0xa1, 0x94, 0x3e, 0x90, 0x40, 0xd6, 0xf4, 0xc6, 0xcf, 0x9a, 0x2d, 0x90, 0x78, + 0xe8, 0x79, 0x77, 0xff, 0x5b, 0x29, 0xf2, 0xa5, 0xba, 0x6e, 0x98, 0xab, 0x4e, 0x34, 0x71, 0xf3, + 0xe8, 0x9b, 0x04, 0x3e, 0x7d, 0x22, 0x2c, 0x2a, 0x73, 0x0f, 0xce, 0xe3, 0xc6, 0x5b, 0x50, 0xdd, + 0x21, 0x05, 0xb5, 0x54, 0x32, 0x99, 0x65, 0xa1, 0x1b, 0xe9, 0xf5, 0xf1, 0x74, 0xc6, 0x75, 0xd3, + 0x62, 0xa0, 0xa4, 0x4c, 0x96, 0x1a, 0x9c, 0xac, 0x60, 0xfb, 0x0f, 0xc4, 0xac, 0xe4, 0xdd, 0xbd, + 0xdb, 0x30, 0x37, 0x74, 0x9b, 0xe9, 0x76, 0x4c, 0x4e, 0x74, 0x0d, 0xc6, 0x4b, 0x02, 0xc9, 0x8b, + 0x92, 0x27, 0x54, 0x2e, 0xf5, 0xe7, 0x5f, 0xbd, 0x37, 0x81, 0xe2, 0xa3, 0xfb, 0x4d, 0xdb, 0xd4, + 0xf4, 0xb2, 0x92, 0xf4, 0x4c, 0x44, 0x58, 0x1a, 0x5c, 0x08, 0x8f, 0x0a, 0x25, 0xd9, 0x80, 0x41, + 0x8d, 0xb7, 0xe0, 0x72, 0x9b, 0x6f, 0x9f, 0x28, 0x41, 0x28, 0x04, 0x90, 0x58, 0xb8, 0x2b, 0x6f, + 0xc9, 0x84, 0x32, 0x22, 0x1d, 0x33, 0xfa, 0x06, 0x81, 0x54, 0xb3, 0x0b, 0xa4, 0x73, 0xc2, 0xb2, + 0xac, 0x33, 0xed, 0x3d, 0x2d, 0xd3, 0x1a, 0x7c, 0xaa, 0x05, 0x53, 0x0c, 0x63, 0x0b, 0x86, 0xdc, + 0xa1, 0x62, 0xfd, 0x2d, 0x75, 0xec, 0xcc, 0x03, 0x53, 0x04, 0x94, 0xf4, 0x3d, 0x02, 0xe7, 0xfd, + 0x7e, 0x9d, 0x2b, 0x50, 0xdc, 0xf4, 0x5a, 0x0f, 0x59, 0xd1, 0x71, 0x36, 0xa3, 0x3f, 0x10, 0x48, + 0x35, 0xc7, 0xe4, 0xc9, 0x90, 0x28, 0xd5, 0x9b, 0x51, 0x8a, 0xb9, 0xc8, 0x52, 0x68, 0x86, 0xb8, + 0x3b, 0xf8, 0x61, 0x68, 0x12, 0xfa, 0xec, 0xfd, 0x0a, 0x5e, 0xc2, 0x9c, 0x9f, 0xdd, 0x3b, 0xd4, + 0xbe, 0x43, 0x60, 0x82, 0xb3, 0x51, 0x58, 0x91, 0x69, 0x55, 0xfb, 0x8d, 0xcb, 0xfb, 0x0b, 0x02, + 0x93, 0x81, 0x80, 0x50, 0xdb, 0xeb, 0x30, 0x6c, 0x62, 0x1b, 0x0a, 0xfb, 0x6e, 0x7b, 0x61, 0x11, + 0x05, 0x55, 0xf5, 0x00, 0xba, 0xb7, 0xbf, 0x17, 0x50, 0xbf, 0xad, 0x83, 0x4d, 0x7e, 0xe8, 0xc5, + 0xd5, 0xef, 0x3c, 0x0c, 0xd9, 0x07, 0x85, 0x1d, 0xd5, 0xda, 0x11, 0x87, 0xa8, 0x7d, 0xf0, 0x45, + 0xd5, 0xda, 0x91, 0xbe, 0x8a, 0x7a, 0xd4, 0x1d, 0xa0, 0x1e, 0xab, 0x30, 0x84, 0x74, 0x70, 0x27, + 0x8b, 0x2e, 0x87, 0x22, 0x2c, 0xa5, 0x63, 0x82, 0x2b, 0xfb, 0x8e, 0x66, 0xef, 0x94, 0x4c, 0xf5, + 0xa1, 0x5a, 0x71, 0x2f, 0x8e, 0xd6, 0x9b, 0xdd, 0xc6, 0xbb, 0x76, 0x77, 0xf8, 0x1d, 0x81, 0x4c, + 0x2b, 0x82, 0xde, 0x21, 0x99, 0x78, 0xe8, 0x75, 0x8a, 0xdc, 0x5a, 0x68, 0x2f, 0x66, 0x10, 0x51, + 0x2c, 0x5d, 0x1f, 0x58, 0xf7, 0xf2, 0xec, 0x67, 0x04, 0xde, 0xe1, 0x3c, 0x6e, 0x5b, 0xcc, 0x6c, + 0x39, 0x59, 0x1f, 0xc2, 0x68, 0xcd, 0x62, 0x4d, 0x87, 0xcd, 0xeb, 0xe3, 0xe9, 0x70, 0xdd, 0x13, + 0xce, 0xe8, 0x70, 0xc9, 0xe3, 0x2f, 0xe1, 0x1f, 0x12, 0x3c, 0x17, 0x6f, 0x8b, 0xc2, 0xe6, 0x94, + 0x29, 0xd5, 0xad, 0xc0, 0x7e, 0x2b, 0x92, 0xbd, 0x39, 0x30, 0x4c, 0x85, 0x3b, 0x00, 0x5e, 0x35, + 0x26, 0x32, 0x21, 0xc2, 0xb1, 0x19, 0xc0, 0x13, 0xf7, 0xc9, 0x3a, 0x54, 0xf7, 0xf2, 0xe0, 0x31, + 0x81, 0x69, 0xdc, 0x1f, 0xeb, 0x47, 0xc4, 0x5b, 0xa2, 0xef, 0x9f, 0x08, 0xcc, 0xb4, 0x8e, 0x0d, + 0x25, 0xfe, 0x1a, 0x9c, 0x31, 0x59, 0xf3, 0x21, 0xf9, 0x7e, 0x94, 0xcd, 0x2b, 0x88, 0x8a, 0x42, + 0x37, 0x02, 0x76, 0x4f, 0xeb, 0x1f, 0x8b, 0x8a, 0xe8, 0xa6, 0x5a, 0xad, 0xb2, 0x12, 0xde, 0x7f, + 0x3d, 0x99, 0x17, 0x60, 0x28, 0xea, 0xa5, 0x4e, 0x0c, 0xec, 0x9a, 0xd4, 0xbf, 0xec, 0xc5, 0xcb, + 0x77, 0x30, 0x34, 0x54, 0xf9, 0xdb, 0x04, 0x92, 0x0a, 0xdb, 0x35, 0x6c, 0x86, 0x81, 0xdc, 0x54, + 0xab, 0xa8, 0xf4, 0x66, 0x7b, 0xa5, 0x4f, 0x40, 0xce, 0x06, 0x51, 0xd7, 0x74, 0xdb, 0x3c, 0xc4, + 0x89, 0x68, 0x72, 0xd9, 0xb5, 0xb9, 0x48, 0xaf, 0xc2, 0x64, 0xa8, 0x67, 0xe7, 0x72, 0xf4, 0x80, + 0x1d, 0xe2, 0xdd, 0xd7, 0xf9, 0x49, 0x27, 0x60, 0x60, 0x5f, 0xad, 0xd4, 0x18, 0x77, 0x37, 0xaa, + 0xb8, 0x1f, 0x4b, 0xbd, 0x97, 0x88, 0xb4, 0x8e, 0x87, 0x75, 0x9e, 0xe9, 0x87, 0x37, 0x34, 0x2b, + 0x6e, 0xa9, 0x22, 0xfd, 0x44, 0x5c, 0x52, 0xea, 0x40, 0xa8, 0xfb, 0xa5, 0xa6, 0x52, 0xf4, 0xa4, + 0xb4, 0xf8, 0x7f, 0x54, 0x9c, 0x0b, 0x7f, 0x9b, 0x82, 0x01, 0x1e, 0x1c, 0xfd, 0x29, 0x81, 0x01, + 0xfe, 0x28, 0x43, 0x17, 0x23, 0xce, 0xb9, 0xff, 0x81, 0x28, 0xfd, 0x7e, 0x67, 0x46, 0x6e, 0x28, + 0x92, 0xfc, 0xad, 0x67, 0x2f, 0xbf, 0xdf, 0xfb, 0x2e, 0xbd, 0x28, 0xb7, 0x7d, 0xa4, 0x74, 0x1f, + 0x79, 0x7e, 0x4e, 0xa0, 0xdf, 0x81, 0xa0, 0x0b, 0x1d, 0xf8, 0x13, 0x31, 0x2e, 0x76, 0x64, 0x83, + 0x21, 0x7e, 0xc0, 0x43, 0x5c, 0xa4, 0xf3, 0xd1, 0x42, 0x94, 0x8f, 0x44, 0x0a, 0x3c, 0xa2, 0x7f, + 0x21, 0x30, 0xd6, 0xf8, 0x0a, 0x41, 0x3f, 0xea, 0x20, 0x84, 0xa6, 0x67, 0x95, 0xf4, 0x72, 0x4c, + 0x6b, 0xa4, 0xb2, 0xc6, 0xa9, 0x7c, 0x4c, 0x97, 0x23, 0xaa, 0xed, 0xe3, 0x22, 0xfb, 0x92, 0xef, + 0x9f, 0x04, 0xc6, 0x1a, 0x9f, 0x12, 0x68, 0x3e, 0x62, 0x60, 0x27, 0x3e, 0x6c, 0xa4, 0xd7, 0x4e, + 0x89, 0x82, 0x34, 0xaf, 0x71, 0x9a, 0x79, 0x9a, 0x8b, 0x41, 0xd3, 0x7b, 0xd7, 0xc0, 0x2d, 0xf8, + 0xdf, 0x04, 0xce, 0x06, 0x4a, 0x4f, 0xba, 0x1c, 0x39, 0xcc, 0xb0, 0xa7, 0x8e, 0xf4, 0xe5, 0xb8, + 0xe6, 0x48, 0xaf, 0xc0, 0xe9, 0xdd, 0xa5, 0x77, 0x62, 0xd1, 0x13, 0x97, 0x6d, 0xb7, 0x6a, 0x96, + 0x8f, 0x9a, 0xae, 0xdf, 0x8f, 0xe8, 0x4b, 0x02, 0xc9, 0x60, 0xb9, 0x4d, 0x63, 0x46, 0xed, 0xa5, + 0xee, 0xc7, 0xb1, 0xed, 0x91, 0xf6, 0x97, 0x38, 0xed, 0x0d, 0x7a, 0xb5, 0x3d, 0xed, 0x20, 0x4b, + 0x2b, 0x94, 0xe6, 0x1f, 0x09, 0x24, 0x7c, 0x65, 0x39, 0xfd, 0xa0, 0xb3, 0x08, 0x7d, 0xcf, 0x0b, + 0xe9, 0xa5, 0x38, 0xa6, 0xc8, 0x6b, 0x9d, 0xf3, 0xba, 0x42, 0x2f, 0xc7, 0x9f, 0x4e, 0x1e, 0xfe, + 0x6f, 0x08, 0x0c, 0x8b, 0x32, 0x98, 0x7e, 0x3e, 0x62, 0x40, 0x81, 0x42, 0x3e, 0xfd, 0x85, 0x8e, + 0xed, 0x90, 0xc5, 0x2a, 0x67, 0xb1, 0x4c, 0x3f, 0x8c, 0xc1, 0xc2, 0xab, 0xb3, 0x7f, 0x4f, 0x60, + 0x58, 0x54, 0xae, 0x91, 0x29, 0x04, 0x6a, 0xe9, 0xc8, 0x14, 0x82, 0x25, 0xb2, 0x74, 0x93, 0x53, + 0xb8, 0x4a, 0xd7, 0xe2, 0x6f, 0x1b, 0x96, 0x7c, 0x84, 0x75, 0xf9, 0x23, 0xfa, 0x5f, 0x02, 0x93, + 0xce, 0x3e, 0xdc, 0x54, 0x7e, 0xd1, 0xa8, 0x4b, 0xa1, 0x55, 0xe1, 0x96, 0xbe, 0x12, 0x1f, 0x00, + 0xb9, 0xaa, 0x9c, 0xeb, 0x7d, 0x7a, 0x37, 0x06, 0xd7, 0x7a, 0xc5, 0x8a, 0x7f, 0x50, 0x0a, 0x5f, + 0x5e, 0xaf, 0x08, 0x8c, 0xbf, 0x95, 0xdc, 0x4f, 0x33, 0xcf, 0xcd, 0xdc, 0x9d, 0x13, 0x62, 0x32, + 0xb4, 0xcc, 0xa6, 0xab, 0x11, 0x43, 0x3d, 0xa9, 0x48, 0xef, 0x02, 0xdf, 0x5b, 0x9c, 0xef, 0x75, + 0xba, 0xd1, 0x9e, 0xaf, 0x53, 0xe0, 0x5b, 0xf2, 0x91, 0xff, 0x55, 0x20, 0x94, 0xf3, 0x3f, 0x08, + 0x24, 0x83, 0x65, 0x71, 0xe4, 0x13, 0xa2, 0x45, 0xa1, 0x1f, 0xf9, 0x84, 0x68, 0x55, 0x8f, 0x4b, + 0x37, 0x38, 0xd1, 0x75, 0x9a, 0x8f, 0x31, 0xb1, 0xf5, 0xbf, 0xb6, 0x0a, 0x8e, 0xff, 0x22, 0x70, + 0x2e, 0xa4, 0x34, 0xa5, 0x2b, 0x91, 0xb7, 0xc8, 0x56, 0x25, 0x77, 0x3a, 0x77, 0x1a, 0x88, 0xce, + 0x8f, 0xc3, 0x90, 0x0d, 0xb7, 0x8e, 0xeb, 0xf1, 0x7d, 0x46, 0x60, 0xac, 0xb1, 0x8a, 0x8b, 0x7c, + 0x59, 0x0d, 0xad, 0x78, 0x23, 0x5f, 0x56, 0xc3, 0x4b, 0x47, 0x29, 0xcf, 0x09, 0x5e, 0xa6, 0x1f, + 0xb5, 0x27, 0xb8, 0xcb, 0x11, 0x44, 0xc6, 0x3a, 0x5c, 0x45, 0xf2, 0xe6, 0xee, 0x3f, 0x79, 0x9e, + 0x21, 0x4f, 0x9f, 0x67, 0xc8, 0xdf, 0x9f, 0x67, 0xc8, 0x77, 0x5f, 0x64, 0x7a, 0x9e, 0xbe, 0xc8, + 0xf4, 0xfc, 0xf5, 0x45, 0xa6, 0xe7, 0xde, 0x4a, 0x59, 0xb3, 0x77, 0x6a, 0xdb, 0xd9, 0xa2, 0xb1, + 0xeb, 0xf7, 0xf0, 0x1e, 0xbf, 0xc4, 0xfb, 0x5d, 0x1e, 0x84, 0x38, 0xb5, 0x0f, 0xab, 0xcc, 0xda, + 0x1e, 0xe4, 0xff, 0x26, 0xb1, 0xf8, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd4, 0x90, 0x5c, 0x63, + 0x4d, 0x22, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3651,6 +3752,80 @@ func (m *QueryMappedAccountsResponse) MarshalToSizedBuffer(dAtA []byte) (int, er return len(dAtA) - i, nil } +func (m *QueryDenyListRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryDenyListRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryDenyListRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.ChainId) > 0 { + i -= len(m.ChainId) + copy(dAtA[i:], m.ChainId) + i = encodeVarintQuery(dAtA, i, uint64(len(m.ChainId))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *QueryDenyListResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryDenyListResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryDenyListResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Pagination != nil { + { + size, err := m.Pagination.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if len(m.Validators) > 0 { + for iNdEx := len(m.Validators) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Validators[iNdEx]) + copy(dAtA[i:], m.Validators[iNdEx]) + i = encodeVarintQuery(dAtA, i, uint64(len(m.Validators[iNdEx]))) + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + func encodeVarintQuery(dAtA []byte, offset int, v uint64) int { offset -= sovQuery(v) base := offset @@ -4190,6 +4365,38 @@ func (m *QueryMappedAccountsResponse) Size() (n int) { return n } +func (m *QueryDenyListRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.ChainId) + if l > 0 { + n += 1 + l + sovQuery(uint64(l)) + } + return n +} + +func (m *QueryDenyListResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Validators) > 0 { + for _, s := range m.Validators { + l = len(s) + n += 1 + l + sovQuery(uint64(l)) + } + } + if m.Pagination != nil { + l = m.Pagination.Size() + n += 1 + l + sovQuery(uint64(l)) + } + return n +} + func sovQuery(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -7778,6 +7985,206 @@ func (m *QueryMappedAccountsResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *QueryDenyListRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryDenyListRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryDenyListRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ChainId", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ChainId = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *QueryDenyListResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryDenyListResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryDenyListResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Validators", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Validators = append(m.Validators, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Pagination", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Pagination == nil { + m.Pagination = &query.PageResponse{} + } + if err := m.Pagination.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipQuery(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0