diff --git a/proto/interchain_security/ccv/provider/v1/query.proto b/proto/interchain_security/ccv/provider/v1/query.proto index 1175d7002b..0af0d31293 100644 --- a/proto/interchain_security/ccv/provider/v1/query.proto +++ b/proto/interchain_security/ccv/provider/v1/query.proto @@ -11,6 +11,7 @@ import "interchain_security/ccv/v1/shared_consumer.proto"; import "interchain_security/ccv/v1/wire.proto"; import "tendermint/crypto/keys.proto"; import "cosmos_proto/cosmos.proto"; +import "cosmos/staking/v1beta1/staking.proto"; service Query { // ConsumerGenesis queries the genesis state needed to start a consumer chain @@ -339,13 +340,38 @@ message QueryConsumerValidatorsValidator { string provider_address = 1 [ (gogoproto.moretags) = "yaml:\"address\"" ]; // The consumer public key of the validator used on the consumer chain tendermint.crypto.PublicKey consumer_key = 2; - // The power of the validator used on the consumer chain - int64 power = 3; + // [DEPRECATED] use consumer_power instead + int64 power = 3 [deprecated = true]; + // The power of the validator used on the consumer chain + int64 consumer_power = 4; // The rate to charge delegators on the consumer chain, as a fraction - string rate = 4 [ + string consumer_commission_rate = 5 [ (gogoproto.customtype) = "cosmossdk.io/math.LegacyDec", (gogoproto.nullable) = false ]; + // The rate to charge delegators on the provider chain, as a fraction + string provider_commission_rate = 6 [ + (gogoproto.customtype) = "cosmossdk.io/math.LegacyDec", + (gogoproto.nullable) = false + ]; + // description defines the description terms for the validator + cosmos.staking.v1beta1.Description description = 7 [(gogoproto.nullable) = false]; + // provider_operator_address defines the address of the validator's operator + string provider_operator_address = 8 [(cosmos_proto.scalar) = "cosmos.ValidatorAddressString"]; + // jailed defined whether the validator has been jailed from bonded status or not. + bool jailed = 9; + // status is the validator status (bonded/unbonding/unbonded). + cosmos.staking.v1beta1.BondStatus status = 10; + // provider_tokens defines the delegated tokens (incl. self-delegation). + string provider_tokens = 11 [ + (cosmos_proto.scalar) = "cosmos.Int", + (gogoproto.customtype) = "cosmossdk.io/math.Int", + (gogoproto.nullable) = false + ]; + // The power of the validator used on the provider chain + int64 provider_power = 12; + // validates_current_epoch defines whether the validator has to validate for the current epoch or not + bool validates_current_epoch = 13; } message QueryConsumerValidatorsResponse { diff --git a/x/ccv/provider/keeper/grpc_query.go b/x/ccv/provider/keeper/grpc_query.go index 25774cf6f8..5408cc606a 100644 --- a/x/ccv/provider/keeper/grpc_query.go +++ b/x/ccv/provider/keeper/grpc_query.go @@ -8,7 +8,6 @@ import ( "google.golang.org/grpc/status" errorsmod "cosmossdk.io/errors" - "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" @@ -346,30 +345,41 @@ func (k Keeper) QueryConsumerValidators(goCtx context.Context, req *types.QueryC return nil, status.Error(codes.Internal, err.Error()) } - for _, v := range consumerValSet { + for _, consumerVal := range consumerValSet { + provAddr := types.ProviderConsAddress{Address: consumerVal.ProviderConsAddr} + consAddr := provAddr.ToSdkConsAddr() - consAddr, err := sdk.ConsAddressFromBech32(sdk.ConsAddress(v.ProviderConsAddr).String()) + providerVal, err := k.stakingKeeper.GetValidatorByConsAddr(ctx, consAddr) if err != nil { - return nil, status.Error(codes.InvalidArgument, "invalid provider address") + k.Logger(ctx).Error("cannot find consensus address for provider address:%s", provAddr.String()) + continue + } + + hasToValidate, err := k.hasToValidate(ctx, provAddr, consumerId) + if err != nil { + k.Logger(ctx).Error("cannot define if validator %s has to validate for consumer %s for current epoch", + provAddr.String(), consumerId) + continue } - var rate math.LegacyDec consumerRate, found := k.GetConsumerCommissionRate(ctx, consumerId, types.NewProviderConsAddress(consAddr)) - if found { - rate = consumerRate - } else { - v, err := k.stakingKeeper.GetValidatorByConsAddr(ctx, consAddr) - if err != nil { - return nil, status.Error(codes.InvalidArgument, fmt.Sprintf("unknown validator: %s", consAddr.String())) - } - rate = v.Commission.Rate + if !found { + consumerRate = providerVal.Commission.Rate } validators = append(validators, &types.QueryConsumerValidatorsValidator{ - ProviderAddress: sdk.ConsAddress(v.ProviderConsAddr).String(), - ConsumerKey: v.PublicKey, - Power: v.Power, - Rate: rate, + ProviderAddress: sdk.ConsAddress(consumerVal.ProviderConsAddr).String(), + ConsumerKey: consumerVal.PublicKey, + ConsumerPower: consumerVal.Power, + ConsumerCommissionRate: consumerRate, + Description: providerVal.Description, + ProviderOperatorAddress: providerVal.OperatorAddress, + Jailed: providerVal.Jailed, + Status: providerVal.Status, + ProviderTokens: providerVal.Tokens, + ProviderCommissionRate: providerVal.Commission.Rate, + ProviderPower: providerVal.GetConsensusPower(k.stakingKeeper.PowerReduction(ctx)), + ValidatesCurrentEpoch: hasToValidate, }) } return &types.QueryConsumerValidatorsResponse{ diff --git a/x/ccv/provider/keeper/grpc_query_test.go b/x/ccv/provider/keeper/grpc_query_test.go index b414f6ae47..00457efa19 100644 --- a/x/ccv/provider/keeper/grpc_query_test.go +++ b/x/ccv/provider/keeper/grpc_query_test.go @@ -112,28 +112,69 @@ func TestQueryConsumerValidators(t *testing.T) { _, err := pk.QueryConsumerValidators(ctx, &req) require.Error(t, err) - providerAddr1 := types.NewProviderConsAddress([]byte("providerAddr1")) - consumerKey1 := cryptotestutil.NewCryptoIdentityFromIntSeed(1).TMProtoCryptoPublicKey() - consumerValidator1 := types.ConsensusValidator{ProviderConsAddr: providerAddr1.ToSdkConsAddr(), Power: 1, PublicKey: &consumerKey1} - expectedCommissionRate1 := math.LegacyMustNewDecFromStr("0.123") - pk.SetConsumerCommissionRate(ctx, consumerId, providerAddr1, expectedCommissionRate1) + val1 := createStakingValidator(ctx, mocks, 1, 1, 1) + valConsAddr1, _ := val1.GetConsAddr() + providerAddr1 := types.NewProviderConsAddress(valConsAddr1) + pk1, _ := val1.CmtConsPublicKey() + consumerValidator1 := types.ConsensusValidator{ProviderConsAddr: providerAddr1.ToSdkConsAddr(), Power: 1, PublicKey: &pk1} + val1.Tokens = sdk.TokensFromConsensusPower(1, sdk.DefaultPowerReduction) + val1.Description = stakingtypes.Description{Moniker: "ConsumerValidator1"} + val1.Commission.Rate = math.LegacyMustNewDecFromStr("0.123") + + val2 := createStakingValidator(ctx, mocks, 1, 2, 2) + valConsAddr2, _ := val2.GetConsAddr() + providerAddr2 := types.NewProviderConsAddress(valConsAddr2) + pk2, _ := val2.CmtConsPublicKey() + consumerValidator2 := types.ConsensusValidator{ProviderConsAddr: providerAddr2.ToSdkConsAddr(), Power: 2, PublicKey: &pk2} + val2.Tokens = sdk.TokensFromConsensusPower(2, sdk.DefaultPowerReduction) + val2.Description = stakingtypes.Description{Moniker: "ConsumerValidator2"} + val2.Commission.Rate = math.LegacyMustNewDecFromStr("0.123") - providerAddr2 := types.NewProviderConsAddress([]byte("providerAddr2")) - consumerKey2 := cryptotestutil.NewCryptoIdentityFromIntSeed(2).TMProtoCryptoPublicKey() - consumerValidator2 := types.ConsensusValidator{ProviderConsAddr: providerAddr2.ToSdkConsAddr(), Power: 2, PublicKey: &consumerKey2} - expectedCommissionRate2 := math.LegacyMustNewDecFromStr("0.123") - pk.SetConsumerCommissionRate(ctx, consumerId, providerAddr2, expectedCommissionRate2) + // set up the client id so the chain looks like it "started" + pk.SetConsumerClientId(ctx, consumerId, "clientID") + pk.SetConsumerValSet(ctx, consumerId, []types.ConsensusValidator{consumerValidator1, consumerValidator2}) + // set a consumer commission rate for val1 + val1ConsComRate := math.LegacyMustNewDecFromStr("0.456") + pk.SetConsumerCommissionRate(ctx, consumerId, providerAddr1, val1ConsComRate) expectedResponse := types.QueryConsumerValidatorsResponse{ Validators: []*types.QueryConsumerValidatorsValidator{ - {ProviderAddress: providerAddr1.String(), ConsumerKey: &consumerKey1, Power: 1, Rate: expectedCommissionRate1}, - {ProviderAddress: providerAddr2.String(), ConsumerKey: &consumerKey2, Power: 2, Rate: expectedCommissionRate2}, + { + ProviderAddress: providerAddr1.String(), + ConsumerKey: &pk1, + ConsumerPower: 1, + ConsumerCommissionRate: val1ConsComRate, + Description: val1.Description, + ProviderOperatorAddress: val1.OperatorAddress, + Jailed: val1.Jailed, + Status: val1.Status, + ProviderTokens: val1.Tokens, + ProviderCommissionRate: val1.Commission.Rate, + ProviderPower: 1, + ValidatesCurrentEpoch: true, + }, + { + ProviderAddress: providerAddr2.String(), + ConsumerKey: &pk2, + ConsumerPower: 2, + ConsumerCommissionRate: val2.Commission.Rate, + Description: val2.Description, + ProviderOperatorAddress: val2.OperatorAddress, + Jailed: val2.Jailed, + Status: val2.Status, + ProviderTokens: val2.Tokens, + ProviderCommissionRate: val2.Commission.Rate, + ProviderPower: 2, + ValidatesCurrentEpoch: true, + }, }, } - // set up the client id so the chain looks like it "started" - pk.SetConsumerClientId(ctx, consumerId, "clientID") - pk.SetConsumerValSet(ctx, consumerId, []types.ConsensusValidator{consumerValidator1, consumerValidator2}) + mocks.MockStakingKeeper.EXPECT().GetValidatorByConsAddr(ctx, valConsAddr1).Return(val1, nil).AnyTimes() + mocks.MockStakingKeeper.EXPECT().GetValidatorByConsAddr(ctx, valConsAddr2).Return(val2, nil).AnyTimes() + mocks.MockStakingKeeper.EXPECT().PowerReduction(ctx).Return(sdk.DefaultPowerReduction).AnyTimes() + + testkeeper.SetupMocksForLastBondedValidatorsExpectation(mocks.MockStakingKeeper, 2, []stakingtypes.Validator{val1, val2}, []int64{1, 2}, -1) // -1 to allow the calls "AnyTimes" res, err := pk.QueryConsumerValidators(ctx, &req) require.NoError(t, err) @@ -141,14 +182,10 @@ func TestQueryConsumerValidators(t *testing.T) { // validator with no set consumer commission rate pk.DeleteConsumerCommissionRate(ctx, consumerId, providerAddr1) - expectedCommissionRate := math.LegacyMustNewDecFromStr("0.456") // because no consumer commission rate is set, the validator's set commission rate on the provider is used - val := stakingtypes.Validator{Commission: stakingtypes.Commission{CommissionRates: stakingtypes.CommissionRates{Rate: expectedCommissionRate}}} - mocks.MockStakingKeeper.EXPECT().GetValidatorByConsAddr( - ctx, providerAddr1.ToSdkConsAddr()).Return(val, nil).Times(1) - res, _ = pk.QueryConsumerValidators(ctx, &req) - require.Equal(t, expectedCommissionRate, res.Validators[0].Rate) - + res, err = pk.QueryConsumerValidators(ctx, &req) + require.NoError(t, err) + require.Equal(t, val1.Commission.Rate, res.Validators[0].ConsumerCommissionRate) } func TestQueryConsumerChainsValidatorHasToValidate(t *testing.T) { diff --git a/x/ccv/provider/keeper/validator_set_update_test.go b/x/ccv/provider/keeper/validator_set_update_test.go index 9f078cc701..58ef556aec 100644 --- a/x/ccv/provider/keeper/validator_set_update_test.go +++ b/x/ccv/provider/keeper/validator_set_update_test.go @@ -126,6 +126,7 @@ func createStakingValidator(ctx sdk.Context, mocks testkeeper.MockedKeepers, ind return stakingtypes.Validator{ OperatorAddress: providerValidatorAddr.String(), ConsensusPubkey: pkAny, + Status: stakingtypes.Bonded, } } diff --git a/x/ccv/provider/types/query.pb.go b/x/ccv/provider/types/query.pb.go index fe6f07fdea..467cd046c0 100644 --- a/x/ccv/provider/types/query.pb.go +++ b/x/ccv/provider/types/query.pb.go @@ -9,6 +9,7 @@ import ( fmt "fmt" crypto "github.com/cometbft/cometbft/proto/tendermint/crypto" _ "github.com/cosmos/cosmos-proto" + types1 "github.com/cosmos/cosmos-sdk/x/staking/types" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" @@ -1412,10 +1413,28 @@ type QueryConsumerValidatorsValidator struct { ProviderAddress string `protobuf:"bytes,1,opt,name=provider_address,json=providerAddress,proto3" json:"provider_address,omitempty" yaml:"address"` // The consumer public key of the validator used on the consumer chain ConsumerKey *crypto.PublicKey `protobuf:"bytes,2,opt,name=consumer_key,json=consumerKey,proto3" json:"consumer_key,omitempty"` + // [DEPRECATED] use consumer_power instead + Power int64 `protobuf:"varint,3,opt,name=power,proto3" json:"power,omitempty"` // Deprecated: Do not use. // The power of the validator used on the consumer chain - Power int64 `protobuf:"varint,3,opt,name=power,proto3" json:"power,omitempty"` + ConsumerPower int64 `protobuf:"varint,4,opt,name=consumer_power,json=consumerPower,proto3" json:"consumer_power,omitempty"` // The rate to charge delegators on the consumer chain, as a fraction - Rate cosmossdk_io_math.LegacyDec `protobuf:"bytes,4,opt,name=rate,proto3,customtype=cosmossdk.io/math.LegacyDec" json:"rate"` + ConsumerCommissionRate cosmossdk_io_math.LegacyDec `protobuf:"bytes,5,opt,name=consumer_commission_rate,json=consumerCommissionRate,proto3,customtype=cosmossdk.io/math.LegacyDec" json:"consumer_commission_rate"` + // The rate to charge delegators on the provider chain, as a fraction + ProviderCommissionRate cosmossdk_io_math.LegacyDec `protobuf:"bytes,6,opt,name=provider_commission_rate,json=providerCommissionRate,proto3,customtype=cosmossdk.io/math.LegacyDec" json:"provider_commission_rate"` + // description defines the description terms for the validator + Description types1.Description `protobuf:"bytes,7,opt,name=description,proto3" json:"description"` + // provider_operator_address defines the address of the validator's operator + ProviderOperatorAddress string `protobuf:"bytes,8,opt,name=provider_operator_address,json=providerOperatorAddress,proto3" json:"provider_operator_address,omitempty"` + // jailed defined whether the validator has been jailed from bonded status or not. + Jailed bool `protobuf:"varint,9,opt,name=jailed,proto3" json:"jailed,omitempty"` + // status is the validator status (bonded/unbonding/unbonded). + Status types1.BondStatus `protobuf:"varint,10,opt,name=status,proto3,enum=cosmos.staking.v1beta1.BondStatus" json:"status,omitempty"` + // provider_tokens defines the delegated tokens (incl. self-delegation). + ProviderTokens cosmossdk_io_math.Int `protobuf:"bytes,11,opt,name=provider_tokens,json=providerTokens,proto3,customtype=cosmossdk.io/math.Int" json:"provider_tokens"` + // The power of the validator used on the provider chain + ProviderPower int64 `protobuf:"varint,12,opt,name=provider_power,json=providerPower,proto3" json:"provider_power,omitempty"` + // validates_current_epoch defines whether the validator has to validate for the current epoch or not + ValidatesCurrentEpoch bool `protobuf:"varint,13,opt,name=validates_current_epoch,json=validatesCurrentEpoch,proto3" json:"validates_current_epoch,omitempty"` } func (m *QueryConsumerValidatorsValidator) Reset() { *m = QueryConsumerValidatorsValidator{} } @@ -1465,6 +1484,7 @@ func (m *QueryConsumerValidatorsValidator) GetConsumerKey() *crypto.PublicKey { return nil } +// Deprecated: Do not use. func (m *QueryConsumerValidatorsValidator) GetPower() int64 { if m != nil { return m.Power @@ -1472,6 +1492,55 @@ func (m *QueryConsumerValidatorsValidator) GetPower() int64 { return 0 } +func (m *QueryConsumerValidatorsValidator) GetConsumerPower() int64 { + if m != nil { + return m.ConsumerPower + } + return 0 +} + +func (m *QueryConsumerValidatorsValidator) GetDescription() types1.Description { + if m != nil { + return m.Description + } + return types1.Description{} +} + +func (m *QueryConsumerValidatorsValidator) GetProviderOperatorAddress() string { + if m != nil { + return m.ProviderOperatorAddress + } + return "" +} + +func (m *QueryConsumerValidatorsValidator) GetJailed() bool { + if m != nil { + return m.Jailed + } + return false +} + +func (m *QueryConsumerValidatorsValidator) GetStatus() types1.BondStatus { + if m != nil { + return m.Status + } + return types1.Unspecified +} + +func (m *QueryConsumerValidatorsValidator) GetProviderPower() int64 { + if m != nil { + return m.ProviderPower + } + return 0 +} + +func (m *QueryConsumerValidatorsValidator) GetValidatesCurrentEpoch() bool { + if m != nil { + return m.ValidatesCurrentEpoch + } + return false +} + type QueryConsumerValidatorsResponse struct { Validators []*QueryConsumerValidatorsValidator `protobuf:"bytes,1,rep,name=validators,proto3" json:"validators,omitempty"` } @@ -1940,142 +2009,158 @@ func init() { } var fileDescriptor_422512d7b7586cd7 = []byte{ - // 2154 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x4d, 0x6c, 0xdc, 0xc6, - 0x15, 0x16, 0x77, 0x25, 0x45, 0x1a, 0xc5, 0x76, 0x32, 0x56, 0x63, 0x99, 0x92, 0x77, 0x15, 0x3a, - 0x6d, 0x65, 0xd9, 0x25, 0x25, 0x05, 0x41, 0x12, 0xb7, 0x8e, 0xad, 0x5d, 0x59, 0xf6, 0xc2, 0x8e, - 0xad, 0xd0, 0xb2, 0x5b, 0x28, 0x4d, 0x69, 0x8a, 0x9c, 0xae, 0x08, 0x73, 0x39, 0x14, 0x87, 0x5a, - 0x7b, 0x61, 0xf8, 0x90, 0x16, 0x28, 0x92, 0x1e, 0x0a, 0x03, 0x45, 0x81, 0x1e, 0x73, 0x29, 0xd0, - 0x43, 0x4f, 0x3d, 0xb4, 0xe8, 0x2d, 0xc7, 0xdc, 0x9a, 0x22, 0x97, 0xa2, 0x05, 0xdc, 0xc2, 0xee, - 0xa1, 0x28, 0x50, 0xa0, 0x75, 0x7b, 0x2d, 0x50, 0x70, 0x38, 0xfc, 0x5d, 0xae, 0x96, 0xdc, 0x5d, - 0x20, 0xb7, 0xe5, 0xcc, 0x9b, 0x6f, 0xde, 0xdf, 0xbc, 0x79, 0xf3, 0x49, 0x40, 0x32, 0x2c, 0x17, - 0x39, 0xda, 0x9e, 0x6a, 0x58, 0x0a, 0x41, 0xda, 0x81, 0x63, 0xb8, 0x1d, 0x49, 0xd3, 0xda, 0x92, - 0xed, 0xe0, 0xb6, 0xa1, 0x23, 0x47, 0x6a, 0xaf, 0x4a, 0xfb, 0x07, 0xc8, 0xe9, 0x88, 0xb6, 0x83, - 0x5d, 0x0c, 0x4f, 0x67, 0x2c, 0x10, 0x35, 0xad, 0x2d, 0x06, 0x0b, 0xc4, 0xf6, 0x2a, 0xbf, 0xd0, - 0xc4, 0xb8, 0x69, 0x22, 0x49, 0xb5, 0x0d, 0x49, 0xb5, 0x2c, 0xec, 0xaa, 0xae, 0x81, 0x2d, 0xe2, - 0x43, 0xf0, 0xb3, 0x4d, 0xdc, 0xc4, 0xf4, 0xa7, 0xe4, 0xfd, 0x62, 0xa3, 0x55, 0xb6, 0x86, 0x7e, - 0xed, 0x1e, 0x7c, 0x5f, 0x72, 0x8d, 0x16, 0x22, 0xae, 0xda, 0xb2, 0x99, 0xc0, 0x5a, 0x1e, 0x55, - 0x43, 0x2d, 0xfc, 0x35, 0x2b, 0xbd, 0xd6, 0xb4, 0x57, 0x25, 0xb2, 0xa7, 0x3a, 0x48, 0x57, 0x34, - 0x6c, 0x91, 0x83, 0x56, 0xb8, 0xe2, 0xab, 0x87, 0xac, 0xb8, 0x6f, 0x38, 0x88, 0x89, 0x2d, 0xb8, - 0xc8, 0xd2, 0x91, 0xd3, 0x32, 0x2c, 0x57, 0xd2, 0x9c, 0x8e, 0xed, 0x62, 0xe9, 0x1e, 0xea, 0x04, - 0x16, 0x9e, 0xd4, 0x30, 0x69, 0x61, 0xa2, 0xf8, 0x46, 0xfa, 0x1f, 0xfe, 0x94, 0xf0, 0x01, 0x98, - 0x7f, 0xcf, 0x73, 0x67, 0x9d, 0x6d, 0x7b, 0x05, 0x59, 0x88, 0x18, 0x44, 0x46, 0xfb, 0x07, 0x88, - 0xb8, 0xf0, 0x14, 0x98, 0xf2, 0xf7, 0x36, 0xf4, 0x39, 0x6e, 0x91, 0x5b, 0x9a, 0xae, 0x95, 0xe6, - 0x38, 0xf9, 0x05, 0x3a, 0xd6, 0xd0, 0x61, 0x15, 0xcc, 0x04, 0xfa, 0x7a, 0x12, 0x25, 0x4f, 0x42, - 0x06, 0xc1, 0x50, 0x43, 0x17, 0x1e, 0x82, 0x85, 0x6c, 0x78, 0x62, 0x63, 0x8b, 0x20, 0xf8, 0x3e, - 0x38, 0xd2, 0xf4, 0x87, 0x14, 0xe2, 0xaa, 0x2e, 0xa2, 0x9b, 0xcc, 0xac, 0xad, 0x88, 0xbd, 0xc2, - 0xda, 0x5e, 0x15, 0x53, 0x58, 0xb7, 0xbc, 0x75, 0xb5, 0xf1, 0xcf, 0x9e, 0x54, 0xc7, 0xe4, 0x17, - 0x9b, 0xb1, 0x31, 0x61, 0x01, 0xf0, 0x89, 0xcd, 0xeb, 0x1e, 0x5c, 0x60, 0x9a, 0xa0, 0xa6, 0x2c, - 0x0f, 0x66, 0x99, 0x66, 0x35, 0x30, 0x49, 0xb7, 0x27, 0x73, 0xdc, 0x62, 0x79, 0x69, 0x66, 0x6d, - 0x59, 0xcc, 0x91, 0x69, 0x22, 0x05, 0x91, 0xd9, 0x4a, 0xe1, 0x0c, 0xf8, 0x7a, 0xf7, 0x16, 0xb7, - 0x5c, 0xd5, 0x71, 0xb7, 0x1c, 0x6c, 0x63, 0xa2, 0x9a, 0xa1, 0x36, 0x1f, 0x71, 0x60, 0xa9, 0xbf, - 0x2c, 0xd3, 0xed, 0xbb, 0x60, 0xda, 0x0e, 0x06, 0x99, 0xc7, 0xde, 0xc9, 0xa7, 0x1e, 0x03, 0x5f, - 0xd7, 0x75, 0xc3, 0x3b, 0x02, 0x11, 0x74, 0x04, 0x28, 0x2c, 0x81, 0xaf, 0x65, 0x69, 0x82, 0xed, - 0x2e, 0xa5, 0x7f, 0xc4, 0x65, 0x1b, 0x98, 0x10, 0x0d, 0x23, 0xdd, 0xa5, 0xf3, 0x85, 0x42, 0x3a, - 0xcb, 0xa8, 0x85, 0xdb, 0xaa, 0x99, 0xa9, 0xf2, 0xcf, 0x4b, 0x60, 0x82, 0xee, 0x0d, 0x4f, 0xa6, - 0x13, 0x36, 0x4a, 0xd6, 0x79, 0x30, 0xad, 0x99, 0x06, 0xb2, 0xdc, 0x28, 0x55, 0xa7, 0xfc, 0x81, - 0x86, 0x0e, 0x8f, 0x83, 0x09, 0x17, 0xdb, 0xca, 0x8d, 0xb9, 0xf2, 0x22, 0xb7, 0x74, 0x44, 0x1e, - 0x77, 0xb1, 0x7d, 0x03, 0x2e, 0x03, 0xd8, 0x32, 0x2c, 0xc5, 0xc6, 0xf7, 0xbd, 0xfc, 0xb6, 0x14, - 0x5f, 0x62, 0x7c, 0x91, 0x5b, 0x2a, 0xcb, 0x47, 0x5b, 0x86, 0xb5, 0xe5, 0x4d, 0x34, 0xac, 0x6d, - 0x4f, 0x76, 0x05, 0xcc, 0xb6, 0x55, 0xd3, 0xd0, 0x55, 0x17, 0x3b, 0x84, 0x2d, 0xd1, 0x54, 0x7b, - 0x6e, 0x82, 0xe2, 0xc1, 0x68, 0x8e, 0x2e, 0xaa, 0xab, 0x36, 0x5c, 0x06, 0x2f, 0x87, 0xa3, 0x0a, - 0x41, 0x2e, 0x15, 0x9f, 0xa4, 0xe2, 0xc7, 0xc2, 0x89, 0x5b, 0xc8, 0xf5, 0x64, 0x17, 0xc0, 0xb4, - 0x6a, 0x9a, 0xf8, 0xbe, 0x69, 0x10, 0x77, 0xee, 0x85, 0xc5, 0xf2, 0xd2, 0xb4, 0x1c, 0x0d, 0x40, - 0x1e, 0x4c, 0xe9, 0xc8, 0xea, 0xd0, 0xc9, 0x29, 0x3a, 0x19, 0x7e, 0x0b, 0xbf, 0xe2, 0xc0, 0xab, - 0x34, 0x46, 0x77, 0x02, 0xc8, 0x58, 0x12, 0x38, 0x39, 0xcf, 0xf9, 0x05, 0xf0, 0x52, 0x10, 0x12, - 0x45, 0xd5, 0x75, 0x07, 0x11, 0xe2, 0x7b, 0xb0, 0x06, 0x9f, 0x3f, 0xa9, 0x1e, 0xed, 0xa8, 0x2d, - 0xf3, 0xbc, 0xc0, 0x26, 0x04, 0xf9, 0x58, 0x20, 0xbb, 0xee, 0x8f, 0xa4, 0xcb, 0x44, 0x39, 0x5d, - 0x26, 0xce, 0x4f, 0x7d, 0xf4, 0x49, 0x75, 0xec, 0xef, 0x9f, 0x54, 0xc7, 0x84, 0x9b, 0x40, 0x38, - 0x4c, 0x5b, 0x96, 0x4c, 0x67, 0xc0, 0x4b, 0x21, 0x60, 0xa0, 0x8f, 0x1f, 0xed, 0x63, 0x5a, 0x4c, - 0xde, 0xd3, 0xa6, 0xdb, 0xfe, 0xad, 0x98, 0x76, 0xf9, 0xed, 0xef, 0xda, 0xef, 0x10, 0xfb, 0x53, - 0x3a, 0x0c, 0x65, 0x7f, 0x52, 0xdb, 0xc8, 0xfe, 0xae, 0x78, 0x30, 0xfb, 0x53, 0xbe, 0x17, 0xe6, - 0xc1, 0x49, 0x0a, 0xb8, 0xbd, 0xe7, 0x60, 0xd7, 0x35, 0x11, 0x2d, 0x8d, 0xc1, 0x01, 0xfe, 0x03, - 0xc7, 0x4a, 0x64, 0x6a, 0x96, 0x6d, 0x53, 0x05, 0x33, 0xc4, 0x54, 0xc9, 0x9e, 0xd2, 0x42, 0x2e, - 0x72, 0xe8, 0x0e, 0x65, 0x19, 0xd0, 0xa1, 0x77, 0xbd, 0x11, 0xb8, 0x06, 0xbe, 0x12, 0x13, 0x50, - 0x68, 0x46, 0xaa, 0x96, 0x86, 0xa8, 0x73, 0xca, 0xf2, 0xf1, 0x48, 0x74, 0x3d, 0x98, 0x82, 0xdf, - 0x03, 0x73, 0x16, 0x7a, 0xe0, 0x2a, 0x0e, 0xb2, 0x4d, 0x64, 0x19, 0x64, 0x4f, 0xd1, 0x54, 0x4b, - 0xf7, 0x8c, 0x45, 0xd4, 0x33, 0x33, 0x6b, 0xbc, 0xe8, 0xdf, 0xbd, 0x62, 0x70, 0xf7, 0x8a, 0xdb, - 0xc1, 0xdd, 0x5b, 0x9b, 0xf2, 0xea, 0xfc, 0xe3, 0xbf, 0x54, 0x39, 0xf9, 0x15, 0x0f, 0x45, 0x0e, - 0x40, 0xea, 0x01, 0x86, 0x70, 0x0e, 0x2c, 0x53, 0x93, 0x64, 0xd4, 0x34, 0x88, 0x8b, 0x1c, 0xa4, - 0x47, 0x15, 0xe4, 0xbe, 0xea, 0xe8, 0x1b, 0xc8, 0xc2, 0xad, 0xb0, 0x84, 0x5d, 0x06, 0x67, 0x73, - 0x49, 0x33, 0x8f, 0xbc, 0x02, 0x26, 0x75, 0x3a, 0x42, 0x6f, 0x85, 0x69, 0x99, 0x7d, 0x09, 0x15, - 0x76, 0xcf, 0xf9, 0xd5, 0x09, 0xe9, 0xb4, 0x18, 0x35, 0x36, 0xc2, 0x6d, 0x3e, 0xe4, 0xc0, 0xa9, - 0x1e, 0x02, 0x0c, 0xf9, 0x2e, 0x38, 0x6a, 0xc7, 0xe7, 0x82, 0x7b, 0x67, 0x2d, 0x57, 0x91, 0x4c, - 0xc0, 0xb2, 0xcb, 0x30, 0x85, 0x27, 0x58, 0xe0, 0x48, 0x42, 0x0c, 0x2e, 0x00, 0x96, 0xe0, 0x1b, - 0xdd, 0x39, 0xbf, 0x01, 0x2b, 0x00, 0x04, 0x05, 0xb6, 0xb1, 0x41, 0x03, 0x3a, 0x2e, 0xc7, 0x46, - 0xfa, 0x26, 0xb5, 0xb0, 0x0f, 0x24, 0x6a, 0xf2, 0xba, 0x69, 0x6e, 0xa9, 0x86, 0x43, 0xee, 0xa8, - 0x66, 0x1d, 0x5b, 0x5e, 0x5e, 0xd6, 0x92, 0x17, 0x46, 0x63, 0x63, 0x54, 0xed, 0xc6, 0x2f, 0x38, - 0xb0, 0x92, 0x7f, 0x4f, 0xe6, 0xf9, 0x7d, 0xf0, 0xb2, 0xad, 0x1a, 0x8e, 0xd2, 0x56, 0x4d, 0xaf, - 0xfb, 0xa2, 0x07, 0x8a, 0x39, 0x7f, 0x33, 0x9f, 0xf3, 0x55, 0xc3, 0x89, 0x36, 0x0a, 0x0f, 0xac, - 0x15, 0xa5, 0xd2, 0x51, 0x3b, 0x21, 0x22, 0xfc, 0x97, 0x03, 0xaf, 0xf6, 0x5d, 0x05, 0x37, 0x7b, - 0x9d, 0xf2, 0xda, 0xfc, 0xf3, 0x27, 0xd5, 0x13, 0x7e, 0xd5, 0x49, 0x4b, 0x64, 0x94, 0xdf, 0xcd, - 0x9e, 0xd5, 0x2b, 0x86, 0x93, 0x96, 0xc8, 0x28, 0x63, 0x17, 0xc1, 0x8b, 0xa1, 0xd4, 0x3d, 0xd4, - 0x61, 0xa7, 0x75, 0x41, 0x8c, 0x7a, 0x4f, 0xd1, 0xef, 0x3d, 0xc5, 0xad, 0x83, 0x5d, 0xd3, 0xd0, - 0xae, 0xa1, 0x8e, 0x1c, 0x06, 0xec, 0x1a, 0xea, 0x08, 0xb3, 0x00, 0xfa, 0x87, 0x40, 0x75, 0xd4, - 0xe8, 0x08, 0xde, 0x05, 0xc7, 0x13, 0xa3, 0x2c, 0x2c, 0x0d, 0x30, 0x69, 0xd3, 0x11, 0xd6, 0x2d, - 0x9c, 0xcd, 0x19, 0x0b, 0x6f, 0x09, 0x3b, 0x01, 0x0c, 0x40, 0x30, 0x59, 0x49, 0x48, 0x64, 0xc0, - 0x4d, 0xdb, 0x45, 0x7a, 0xc3, 0x0a, 0x0b, 0xed, 0xc8, 0x7a, 0xde, 0x7d, 0x56, 0x52, 0xfa, 0xed, - 0x16, 0x36, 0x9a, 0xa7, 0xe2, 0x8d, 0x43, 0x2a, 0x9c, 0x28, 0xa8, 0x34, 0xf3, 0xb1, 0x0e, 0x22, - 0x19, 0x5f, 0x44, 0x84, 0xbb, 0xa0, 0x92, 0xd8, 0x72, 0xf4, 0x46, 0xfd, 0x9b, 0x03, 0x8b, 0x3d, - 0xb6, 0x08, 0x7f, 0x65, 0xb6, 0x09, 0x5c, 0xfe, 0x36, 0x21, 0x9d, 0x5f, 0xa5, 0x82, 0xf9, 0x05, - 0x67, 0xc1, 0x04, 0x6d, 0xbc, 0x68, 0x66, 0x96, 0x65, 0xff, 0x03, 0xbe, 0x09, 0xc6, 0x1d, 0xef, - 0x72, 0x19, 0xa7, 0x9a, 0x9c, 0xf6, 0x32, 0xe3, 0x4f, 0x4f, 0xaa, 0xf3, 0xfe, 0x33, 0x88, 0xe8, - 0xf7, 0x44, 0x03, 0x4b, 0x2d, 0xd5, 0xdd, 0x13, 0xaf, 0xa3, 0xa6, 0xaa, 0x75, 0x36, 0x90, 0x26, - 0xd3, 0x05, 0x5e, 0x4f, 0x5e, 0xed, 0xe9, 0x56, 0x16, 0x3d, 0x04, 0x40, 0x14, 0x18, 0x56, 0x35, - 0x2e, 0xe7, 0xca, 0xd4, 0x7e, 0xde, 0x94, 0x63, 0xc0, 0xc2, 0x3e, 0xab, 0x6b, 0xc9, 0xc7, 0x4a, - 0x28, 0x7b, 0x55, 0x25, 0xdb, 0x98, 0x7d, 0x05, 0x97, 0xfb, 0x90, 0xd1, 0x10, 0x54, 0xb0, 0x5a, - 0x60, 0x4b, 0xe6, 0x8e, 0x73, 0x00, 0x86, 0x21, 0x0c, 0xf2, 0x2d, 0xc8, 0xe0, 0xb0, 0x08, 0xf9, - 0x05, 0x58, 0xa7, 0xbd, 0xd9, 0xd9, 0xec, 0x6e, 0xaf, 0x8e, 0x5b, 0x2d, 0x83, 0x10, 0x03, 0x5b, - 0x72, 0xcc, 0xa2, 0x2f, 0xb7, 0x4b, 0x15, 0x9a, 0xe0, 0x5c, 0x3e, 0x6d, 0x99, 0x33, 0x82, 0xc4, - 0xe3, 0x8a, 0x26, 0x9e, 0xc0, 0xce, 0x5a, 0xcd, 0xc4, 0xda, 0x3d, 0x72, 0xdb, 0x72, 0x0d, 0xf3, - 0x06, 0x7a, 0xe0, 0x5e, 0xb6, 0xb1, 0xb6, 0x17, 0x54, 0xcd, 0x1d, 0xd6, 0xd6, 0x66, 0xcb, 0x30, - 0x0d, 0xde, 0x00, 0x27, 0x76, 0xe9, 0xbc, 0x72, 0xe0, 0x09, 0x28, 0xb4, 0xf1, 0x42, 0x9e, 0x08, - 0x55, 0x6a, 0x5c, 0x9e, 0xdd, 0xcd, 0x58, 0x2e, 0xac, 0xb3, 0x26, 0xb4, 0x1e, 0xda, 0xbe, 0xe9, - 0xe0, 0x56, 0x9d, 0xbd, 0x95, 0x82, 0x68, 0x24, 0xde, 0x53, 0x5c, 0xf2, 0x3d, 0x25, 0x6c, 0x82, - 0xd3, 0x87, 0x42, 0x44, 0x1d, 0x66, 0xdc, 0xe7, 0x5c, 0xda, 0xe7, 0x6b, 0x1f, 0xbf, 0x06, 0x26, - 0x28, 0x10, 0xfc, 0x65, 0x09, 0xcc, 0x66, 0x71, 0x09, 0xf0, 0x52, 0xf1, 0xe3, 0x96, 0x64, 0x39, - 0xf8, 0xf5, 0x21, 0x10, 0x7c, 0x43, 0x84, 0x1f, 0x73, 0x3f, 0xf8, 0xe2, 0x6f, 0x3f, 0x2d, 0xfd, - 0x90, 0xdb, 0xa9, 0xc1, 0x4b, 0xfd, 0x59, 0xac, 0xd0, 0x68, 0x46, 0x58, 0x48, 0x0f, 0x63, 0x6e, - 0x78, 0x04, 0x2f, 0x0c, 0x84, 0xc0, 0x8e, 0xc6, 0x23, 0xf8, 0x05, 0xc7, 0xae, 0xd4, 0xe4, 0xd9, - 0x85, 0x17, 0x8b, 0xdb, 0x99, 0xe0, 0x4c, 0xf8, 0x4b, 0x83, 0x03, 0x30, 0x3f, 0xbd, 0x4d, 0xdd, - 0xf4, 0x3a, 0x5c, 0x2d, 0x60, 0xa1, 0xcf, 0xa6, 0xc0, 0x0f, 0x4b, 0x60, 0xae, 0x07, 0x45, 0x42, - 0xe0, 0xf5, 0x01, 0x35, 0xcb, 0x64, 0x63, 0xf8, 0x77, 0x47, 0x84, 0xc6, 0x8c, 0xbe, 0x4a, 0x8d, - 0x2e, 0x96, 0x18, 0x4c, 0xc8, 0x03, 0x54, 0x42, 0xa2, 0x03, 0xfe, 0x8f, 0x03, 0x27, 0xb2, 0x19, - 0x17, 0x02, 0xaf, 0x0d, 0xac, 0x74, 0x37, 0xb5, 0xc3, 0x5f, 0x1f, 0x0d, 0x18, 0x73, 0xc0, 0x15, - 0xea, 0x80, 0x75, 0x78, 0x71, 0x00, 0x07, 0x60, 0x3b, 0x66, 0xff, 0xbf, 0x82, 0x07, 0x6b, 0x26, - 0x3f, 0x00, 0x37, 0xf3, 0x6b, 0x7d, 0x18, 0x1d, 0xc2, 0x5f, 0x19, 0x1a, 0x87, 0x19, 0xbe, 0x4e, - 0x0d, 0xff, 0x26, 0x7c, 0x3b, 0x07, 0xb1, 0x1d, 0x72, 0x41, 0x89, 0x56, 0x3c, 0xc3, 0xe4, 0x78, - 0xff, 0x37, 0x90, 0xc9, 0x19, 0x0c, 0xc8, 0x40, 0x26, 0x67, 0x71, 0x13, 0x83, 0x99, 0x9c, 0xb8, - 0xb7, 0xe1, 0xef, 0x39, 0xf6, 0x50, 0x48, 0xd0, 0x12, 0xf0, 0x9d, 0xfc, 0x2a, 0x66, 0xb1, 0x1d, - 0xfc, 0xc5, 0x81, 0xd7, 0x33, 0xd3, 0xde, 0xa2, 0xa6, 0xad, 0xc1, 0x95, 0xfe, 0xa6, 0xb9, 0x0c, - 0xc0, 0xa7, 0xb5, 0xe1, 0xcf, 0x4a, 0xec, 0x3e, 0x3c, 0x9c, 0x67, 0x80, 0x37, 0xf3, 0xab, 0x98, - 0x8b, 0xdf, 0xe0, 0xb7, 0x46, 0x07, 0xc8, 0x9c, 0x70, 0x8d, 0x3a, 0xe1, 0x32, 0xac, 0xf7, 0x77, - 0x82, 0x13, 0x22, 0x46, 0x39, 0xed, 0x50, 0x4c, 0xc5, 0xe7, 0x4d, 0xe0, 0x3f, 0xba, 0x78, 0x91, - 0xe4, 0x23, 0x9d, 0xc0, 0x02, 0x77, 0x73, 0x0f, 0xf2, 0x85, 0xaf, 0x0d, 0x03, 0xc1, 0xac, 0xae, - 0x51, 0xab, 0xbf, 0x05, 0xcf, 0xf7, 0xb7, 0x3a, 0xa0, 0x5d, 0x94, 0xf4, 0x05, 0xf6, 0x69, 0x89, - 0x71, 0xfc, 0x39, 0xd8, 0x09, 0xb8, 0x9d, 0x5f, 0xe9, 0xfc, 0x04, 0x0b, 0x7f, 0x7b, 0xc4, 0xa8, - 0xcc, 0x3b, 0x4d, 0xea, 0x1d, 0x75, 0x67, 0x15, 0x4a, 0xfd, 0xfd, 0x93, 0x6c, 0x75, 0xce, 0xe5, - 0x59, 0x10, 0x76, 0x36, 0xbf, 0xe6, 0xc0, 0x4c, 0x8c, 0x2c, 0x80, 0x6f, 0x16, 0x08, 0x6d, 0x9c, - 0x74, 0xe0, 0xdf, 0x2a, 0xbe, 0x90, 0xd9, 0xba, 0x42, 0x6d, 0x5d, 0x86, 0x4b, 0x39, 0x32, 0xc1, - 0x57, 0xf2, 0xcf, 0xa5, 0x54, 0x33, 0x9c, 0xcd, 0x08, 0x14, 0x39, 0xfc, 0xb9, 0x98, 0x8c, 0x22, - 0x87, 0x3f, 0x1f, 0x59, 0x21, 0x3c, 0xf6, 0xdb, 0xdc, 0x8f, 0xb9, 0x9d, 0x5c, 0x05, 0x00, 0x7b, - 0x40, 0x8a, 0x61, 0x29, 0xd1, 0x53, 0x36, 0x15, 0xfe, 0x4b, 0x83, 0x82, 0x84, 0x29, 0xf1, 0x9b, - 0x12, 0x38, 0x93, 0xfb, 0xa1, 0x0a, 0x6f, 0x0f, 0xda, 0xc1, 0x1e, 0xfa, 0xd6, 0xe6, 0xef, 0x8c, - 0x1a, 0x96, 0xf9, 0x7b, 0x87, 0xba, 0x7b, 0x1b, 0xca, 0x85, 0xdb, 0x65, 0xc5, 0x46, 0x4e, 0xe4, - 0x31, 0xe9, 0x61, 0xfa, 0x65, 0xfc, 0x08, 0xfe, 0xa4, 0x0c, 0x5e, 0xcb, 0xf3, 0x9e, 0x85, 0x5b, - 0x43, 0x74, 0x43, 0x99, 0x0f, 0x79, 0xfe, 0xbd, 0x11, 0x22, 0x32, 0x4f, 0x7d, 0xea, 0x67, 0xe6, - 0xef, 0xb8, 0x9d, 0x0f, 0xe0, 0xfb, 0x45, 0xbc, 0x15, 0xc2, 0x29, 0xde, 0xdb, 0x3b, 0x99, 0x9e, - 0x59, 0x6e, 0xfb, 0xce, 0x50, 0xe0, 0x41, 0xda, 0x66, 0x21, 0xff, 0xb6, 0x94, 0x6a, 0xee, 0x63, - 0xb5, 0xa1, 0x3e, 0x0c, 0xa7, 0x14, 0xb8, 0x7d, 0x63, 0x38, 0x90, 0xc1, 0x6a, 0x40, 0xe8, 0x8c, - 0x61, 0x6a, 0x40, 0x36, 0x48, 0x58, 0x03, 0xfe, 0xc9, 0xb1, 0xbf, 0x72, 0x65, 0xb1, 0x21, 0xb0, - 0x00, 0x1f, 0x77, 0x08, 0xe3, 0xc2, 0x6f, 0x0e, 0x0b, 0x53, 0xbc, 0x41, 0xee, 0x41, 0xde, 0xc0, - 0xff, 0x70, 0xa9, 0x7f, 0x5e, 0x48, 0xd2, 0x2b, 0xf0, 0x4a, 0xf1, 0x40, 0x67, 0x72, 0x3c, 0xfc, - 0xd5, 0xe1, 0x81, 0x8a, 0x5b, 0x1d, 0x4b, 0x0e, 0xe9, 0x61, 0x48, 0x31, 0x3d, 0xaa, 0x7d, 0xfb, - 0xb3, 0xa7, 0x15, 0xee, 0xf3, 0xa7, 0x15, 0xee, 0xaf, 0x4f, 0x2b, 0xdc, 0xe3, 0x67, 0x95, 0xb1, - 0xcf, 0x9f, 0x55, 0xc6, 0xfe, 0xf8, 0xac, 0x32, 0xb6, 0x73, 0xa1, 0x69, 0xb8, 0x7b, 0x07, 0xbb, - 0xa2, 0x86, 0x5b, 0xec, 0xdf, 0x5b, 0x62, 0xbb, 0x7c, 0x23, 0xdc, 0xa5, 0xfd, 0x86, 0xf4, 0x20, - 0xd5, 0xa6, 0x77, 0x6c, 0x44, 0x76, 0x27, 0xe9, 0x1f, 0x1a, 0x5f, 0xff, 0x7f, 0x00, 0x00, 0x00, - 0xff, 0xff, 0xa1, 0xef, 0x28, 0x4e, 0x7e, 0x24, 0x00, 0x00, + // 2411 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4d, 0x6c, 0x1c, 0x49, + 0x15, 0x76, 0x8f, 0x7f, 0x62, 0x97, 0x63, 0x67, 0xb7, 0xe2, 0xc4, 0x93, 0xb1, 0xe3, 0x71, 0x3a, + 0x59, 0x98, 0x38, 0xc9, 0xb4, 0xed, 0xd5, 0xb2, 0xbb, 0x81, 0x6c, 0xe2, 0x19, 0xc7, 0xc9, 0xc8, + 0xd9, 0xc4, 0xdb, 0x76, 0x02, 0xf2, 0x12, 0x3a, 0xed, 0xee, 0x62, 0xdc, 0xb8, 0xa7, 0xbb, 0xdd, + 0x55, 0x33, 0xc9, 0x28, 0xca, 0x61, 0x41, 0x42, 0xbb, 0x1c, 0x50, 0x24, 0x84, 0xc4, 0x71, 0x2f, + 0x48, 0x1c, 0x38, 0xa1, 0x15, 0x88, 0xdb, 0x1e, 0xf7, 0xc6, 0xb2, 0x2b, 0x21, 0x04, 0x52, 0x40, + 0x09, 0x07, 0x84, 0x84, 0x84, 0x02, 0x57, 0x24, 0xd4, 0xd5, 0xd5, 0xbf, 0xd3, 0xe3, 0xe9, 0x99, + 0xf1, 0x81, 0x9b, 0xbb, 0xea, 0xd5, 0x57, 0xef, 0xbd, 0x7a, 0xf5, 0xea, 0xbd, 0x6f, 0x0c, 0x04, + 0xcd, 0x20, 0xc8, 0x56, 0x76, 0x65, 0xcd, 0x90, 0x30, 0x52, 0xea, 0xb6, 0x46, 0x9a, 0x82, 0xa2, + 0x34, 0x04, 0xcb, 0x36, 0x1b, 0x9a, 0x8a, 0x6c, 0xa1, 0xb1, 0x24, 0xec, 0xd7, 0x91, 0xdd, 0x2c, + 0x5a, 0xb6, 0x49, 0x4c, 0x78, 0x36, 0x61, 0x41, 0x51, 0x51, 0x1a, 0x45, 0x6f, 0x41, 0xb1, 0xb1, + 0x94, 0x9b, 0xad, 0x9a, 0x66, 0x55, 0x47, 0x82, 0x6c, 0x69, 0x82, 0x6c, 0x18, 0x26, 0x91, 0x89, + 0x66, 0x1a, 0xd8, 0x85, 0xc8, 0x4d, 0x55, 0xcd, 0xaa, 0x49, 0xff, 0x14, 0x9c, 0xbf, 0xd8, 0x68, + 0x9e, 0xad, 0xa1, 0x5f, 0x3b, 0xf5, 0xef, 0x0a, 0x44, 0xab, 0x21, 0x4c, 0xe4, 0x9a, 0xc5, 0x04, + 0x96, 0xd3, 0xa8, 0xea, 0x6b, 0xe1, 0xae, 0x59, 0x6c, 0xb7, 0xa6, 0xb1, 0x24, 0xe0, 0x5d, 0xd9, + 0x46, 0xaa, 0xa4, 0x98, 0x06, 0xae, 0xd7, 0xfc, 0x15, 0xaf, 0x1d, 0xb0, 0xe2, 0xa1, 0x66, 0x23, + 0x26, 0x36, 0x4b, 0x90, 0xa1, 0x22, 0xbb, 0xa6, 0x19, 0x44, 0x50, 0xec, 0xa6, 0x45, 0x4c, 0x61, + 0x0f, 0x35, 0x3d, 0x0b, 0x4f, 0x29, 0x26, 0xae, 0x99, 0x58, 0x72, 0x8d, 0x74, 0x3f, 0xd8, 0xd4, + 0x39, 0xf7, 0x4b, 0xc0, 0x44, 0xde, 0xd3, 0x8c, 0xaa, 0xd0, 0x58, 0xda, 0x41, 0x44, 0x5e, 0xf2, + 0xbe, 0x5d, 0x29, 0xfe, 0x3e, 0x98, 0x79, 0xcf, 0x71, 0x7a, 0x99, 0x29, 0x77, 0x03, 0x19, 0x08, + 0x6b, 0x58, 0x44, 0xfb, 0x75, 0x84, 0x09, 0x3c, 0x0d, 0x46, 0x5d, 0x0d, 0x35, 0x35, 0xcb, 0xcd, + 0x73, 0x85, 0xb1, 0x52, 0x26, 0xcb, 0x89, 0x47, 0xe8, 0x58, 0x45, 0x85, 0x79, 0x30, 0xee, 0x59, + 0xe5, 0x48, 0x64, 0x1c, 0x09, 0x11, 0x78, 0x43, 0x15, 0x95, 0x7f, 0x0c, 0x66, 0x93, 0xe1, 0xb1, + 0x65, 0x1a, 0x18, 0xc1, 0xf7, 0xc1, 0x44, 0xd5, 0x1d, 0x92, 0x30, 0x91, 0x09, 0xa2, 0x9b, 0x8c, + 0x2f, 0x2f, 0x16, 0xdb, 0x1d, 0x7e, 0x63, 0xa9, 0x18, 0xc3, 0xda, 0x74, 0xd6, 0x95, 0x86, 0x3e, + 0x7b, 0x96, 0x1f, 0x10, 0x8f, 0x56, 0x43, 0x63, 0xfc, 0x2c, 0xc8, 0x45, 0x36, 0x2f, 0x3b, 0x70, + 0x9e, 0x69, 0xbc, 0x1c, 0xb3, 0xdc, 0x9b, 0x65, 0x9a, 0x95, 0xc0, 0x08, 0xdd, 0x1e, 0x67, 0xb9, + 0xf9, 0xc1, 0xc2, 0xf8, 0xf2, 0x42, 0x31, 0x45, 0x3c, 0x16, 0x29, 0x88, 0xc8, 0x56, 0xf2, 0xe7, + 0xc1, 0x57, 0x5b, 0xb7, 0xd8, 0x24, 0xb2, 0x4d, 0x36, 0x6c, 0xd3, 0x32, 0xb1, 0xac, 0xfb, 0xda, + 0x7c, 0xc8, 0x81, 0x42, 0x67, 0x59, 0xa6, 0xdb, 0xb7, 0xc1, 0x98, 0xe5, 0x0d, 0x32, 0x8f, 0xbd, + 0x93, 0x4e, 0x3d, 0x06, 0xbe, 0xa2, 0xaa, 0x9a, 0x73, 0x51, 0x02, 0xe8, 0x00, 0x90, 0x2f, 0x80, + 0xaf, 0x24, 0x69, 0x62, 0x5a, 0x2d, 0x4a, 0xff, 0x90, 0x4b, 0x36, 0x30, 0x22, 0xea, 0x9f, 0x74, + 0x8b, 0xce, 0x57, 0xba, 0xd2, 0x59, 0x44, 0x35, 0xb3, 0x21, 0xeb, 0x89, 0x2a, 0xff, 0x2c, 0x03, + 0x86, 0xe9, 0xde, 0xf0, 0x54, 0x3c, 0x60, 0x83, 0x60, 0x9d, 0x01, 0x63, 0x8a, 0xae, 0x21, 0x83, + 0x04, 0xa1, 0x3a, 0xea, 0x0e, 0x54, 0x54, 0x78, 0x1c, 0x0c, 0x13, 0xd3, 0x92, 0x6e, 0x67, 0x07, + 0xe7, 0xb9, 0xc2, 0x84, 0x38, 0x44, 0x4c, 0xeb, 0x36, 0x5c, 0x00, 0xb0, 0xa6, 0x19, 0x92, 0x65, + 0x3e, 0x74, 0xe2, 0xdb, 0x90, 0x5c, 0x89, 0xa1, 0x79, 0xae, 0x30, 0x28, 0x4e, 0xd6, 0x34, 0x63, + 0xc3, 0x99, 0xa8, 0x18, 0x5b, 0x8e, 0xec, 0x22, 0x98, 0x6a, 0xc8, 0xba, 0xa6, 0xca, 0xc4, 0xb4, + 0x31, 0x5b, 0xa2, 0xc8, 0x56, 0x76, 0x98, 0xe2, 0xc1, 0x60, 0x8e, 0x2e, 0x2a, 0xcb, 0x16, 0x5c, + 0x00, 0xaf, 0xfa, 0xa3, 0x12, 0x46, 0x84, 0x8a, 0x8f, 0x50, 0xf1, 0x63, 0xfe, 0xc4, 0x26, 0x22, + 0x8e, 0xec, 0x2c, 0x18, 0x93, 0x75, 0xdd, 0x7c, 0xa8, 0x6b, 0x98, 0x64, 0x8f, 0xcc, 0x0f, 0x16, + 0xc6, 0xc4, 0x60, 0x00, 0xe6, 0xc0, 0xa8, 0x8a, 0x8c, 0x26, 0x9d, 0x1c, 0xa5, 0x93, 0xfe, 0x37, + 0xff, 0x4b, 0x0e, 0x9c, 0xa1, 0x67, 0x74, 0xcf, 0x83, 0x0c, 0x05, 0x81, 0x9d, 0xf2, 0x9e, 0x5f, + 0x01, 0xaf, 0x78, 0x47, 0x22, 0xc9, 0xaa, 0x6a, 0x23, 0x8c, 0x5d, 0x0f, 0x96, 0xe0, 0xcb, 0x67, + 0xf9, 0xc9, 0xa6, 0x5c, 0xd3, 0x2f, 0xf3, 0x6c, 0x82, 0x17, 0x8f, 0x79, 0xb2, 0x2b, 0xee, 0x48, + 0x3c, 0x4d, 0x0c, 0xc6, 0xd3, 0xc4, 0xe5, 0xd1, 0x0f, 0x3f, 0xce, 0x0f, 0xfc, 0xfd, 0xe3, 0xfc, + 0x00, 0x7f, 0x07, 0xf0, 0x07, 0x69, 0xcb, 0x82, 0xe9, 0x3c, 0x78, 0xc5, 0x07, 0xf4, 0xf4, 0x71, + 0x4f, 0xfb, 0x98, 0x12, 0x92, 0x77, 0xb4, 0x69, 0xb5, 0x7f, 0x23, 0xa4, 0x5d, 0x7a, 0xfb, 0x5b, + 0xf6, 0x3b, 0xc0, 0xfe, 0x98, 0x0e, 0x7d, 0xd9, 0x1f, 0xd5, 0x36, 0xb0, 0xbf, 0xe5, 0x3c, 0x98, + 0xfd, 0x31, 0xdf, 0xf3, 0x33, 0xe0, 0x14, 0x05, 0xdc, 0xda, 0xb5, 0x4d, 0x42, 0x74, 0x44, 0x53, + 0xa3, 0x77, 0x81, 0x7f, 0xcf, 0xb1, 0x14, 0x19, 0x9b, 0x65, 0xdb, 0xe4, 0xc1, 0x38, 0xd6, 0x65, + 0xbc, 0x2b, 0xd5, 0x10, 0x41, 0x36, 0xdd, 0x61, 0x50, 0x04, 0x74, 0xe8, 0x5d, 0x67, 0x04, 0x2e, + 0x83, 0x13, 0x21, 0x01, 0x89, 0x46, 0xa4, 0x6c, 0x28, 0x88, 0x3a, 0x67, 0x50, 0x3c, 0x1e, 0x88, + 0xae, 0x78, 0x53, 0xf0, 0x3b, 0x20, 0x6b, 0xa0, 0x47, 0x44, 0xb2, 0x91, 0xa5, 0x23, 0x43, 0xc3, + 0xbb, 0x92, 0x22, 0x1b, 0xaa, 0x63, 0x2c, 0xa2, 0x9e, 0x19, 0x5f, 0xce, 0x15, 0xdd, 0x17, 0xba, + 0xe8, 0xbd, 0xd0, 0xc5, 0x2d, 0xef, 0x85, 0x2e, 0x8d, 0x3a, 0x79, 0xfe, 0xe9, 0x5f, 0xf2, 0x9c, + 0x78, 0xd2, 0x41, 0x11, 0x3d, 0x90, 0xb2, 0x87, 0xc1, 0x5f, 0x04, 0x0b, 0xd4, 0x24, 0x11, 0x55, + 0x35, 0x4c, 0x90, 0x8d, 0xd4, 0x20, 0x83, 0x3c, 0x94, 0x6d, 0x75, 0x15, 0x19, 0x66, 0xcd, 0x4f, + 0x61, 0xd7, 0xc1, 0x85, 0x54, 0xd2, 0xcc, 0x23, 0x27, 0xc1, 0x88, 0x4a, 0x47, 0xe8, 0xab, 0x30, + 0x26, 0xb2, 0x2f, 0x7e, 0x8e, 0xbd, 0x73, 0x6e, 0x76, 0x42, 0x2a, 0x4d, 0x46, 0x95, 0x55, 0x7f, + 0x9b, 0x0f, 0x38, 0x70, 0xba, 0x8d, 0x00, 0x43, 0x7e, 0x00, 0x26, 0xad, 0xf0, 0x9c, 0xf7, 0xee, + 0x2c, 0xa7, 0x4a, 0x92, 0x11, 0x58, 0xf6, 0x18, 0xc6, 0xf0, 0x78, 0x03, 0x4c, 0x44, 0xc4, 0xe0, + 0x2c, 0x60, 0x01, 0xbe, 0xda, 0x1a, 0xf3, 0xab, 0x70, 0x0e, 0x00, 0x2f, 0xc1, 0x56, 0x56, 0xe9, + 0x81, 0x0e, 0x89, 0xa1, 0x91, 0x8e, 0x41, 0xcd, 0xef, 0x03, 0x81, 0x9a, 0xbc, 0xa2, 0xeb, 0x1b, + 0xb2, 0x66, 0xe3, 0x7b, 0xb2, 0x5e, 0x36, 0x0d, 0x27, 0x2e, 0x4b, 0xd1, 0x07, 0xa3, 0xb2, 0x7a, + 0x58, 0xe5, 0xc6, 0xcf, 0x39, 0xb0, 0x98, 0x7e, 0x4f, 0xe6, 0xf9, 0x7d, 0xf0, 0xaa, 0x25, 0x6b, + 0xb6, 0xd4, 0x90, 0x75, 0xa7, 0x46, 0xa3, 0x17, 0x8a, 0x39, 0x7f, 0x2d, 0x9d, 0xf3, 0x65, 0xcd, + 0x0e, 0x36, 0xf2, 0x2f, 0xac, 0x11, 0x84, 0xd2, 0xa4, 0x15, 0x11, 0xe1, 0xff, 0xc3, 0x81, 0x33, + 0x1d, 0x57, 0xc1, 0xb5, 0x76, 0xb7, 0xbc, 0x34, 0xf3, 0xf2, 0x59, 0x7e, 0xda, 0xcd, 0x3a, 0x71, + 0x89, 0x84, 0xf4, 0xbb, 0xd6, 0x36, 0x7b, 0x85, 0x70, 0xe2, 0x12, 0x09, 0x69, 0xec, 0x2a, 0x38, + 0xea, 0x4b, 0xed, 0xa1, 0x26, 0xbb, 0xad, 0xb3, 0xc5, 0xa0, 0x42, 0x2d, 0xba, 0x15, 0x6a, 0x71, + 0xa3, 0xbe, 0xa3, 0x6b, 0xca, 0x3a, 0x6a, 0x8a, 0xfe, 0x81, 0xad, 0xa3, 0x26, 0x3f, 0x05, 0xa0, + 0x7b, 0x09, 0x64, 0x5b, 0x0e, 0xae, 0xe0, 0x03, 0x70, 0x3c, 0x32, 0xca, 0x8e, 0xa5, 0x02, 0x46, + 0x2c, 0x3a, 0xc2, 0xaa, 0x85, 0x0b, 0x29, 0xcf, 0xc2, 0x59, 0xc2, 0x6e, 0x00, 0x03, 0xe0, 0x75, + 0x96, 0x12, 0x22, 0x11, 0x70, 0xc7, 0x22, 0x48, 0xad, 0x18, 0x7e, 0xa2, 0x3d, 0xb4, 0x9a, 0x77, + 0x9f, 0xa5, 0x94, 0x4e, 0xbb, 0xf9, 0x85, 0xe6, 0xe9, 0x70, 0xe1, 0x10, 0x3b, 0x4e, 0xe4, 0x65, + 0x9a, 0x99, 0x50, 0x05, 0x11, 0x3d, 0x5f, 0x84, 0xf9, 0x07, 0x60, 0x2e, 0xb2, 0xe5, 0xe1, 0x1b, + 0xf5, 0x87, 0x11, 0x30, 0xdf, 0x66, 0x0b, 0xff, 0xaf, 0xc4, 0x32, 0x81, 0x4b, 0x5f, 0x26, 0xc4, + 0xe3, 0x2b, 0xd3, 0x65, 0x7c, 0xc1, 0x2c, 0x18, 0xa6, 0x85, 0x17, 0x8d, 0xcc, 0x41, 0x6a, 0xa1, + 0x3b, 0x00, 0x5f, 0x03, 0x93, 0x3e, 0xb4, 0x2b, 0xe2, 0x56, 0x71, 0x13, 0xde, 0x28, 0xad, 0xca, + 0xe0, 0x7d, 0x90, 0xf5, 0xc5, 0x14, 0xb3, 0x56, 0xd3, 0x30, 0xd6, 0x4c, 0x43, 0xb2, 0x9d, 0xb7, + 0x69, 0x98, 0x1a, 0x72, 0xd6, 0x09, 0xac, 0x3f, 0x3d, 0xcb, 0xcf, 0xb8, 0xdd, 0x15, 0x56, 0xf7, + 0x8a, 0x9a, 0x29, 0xd4, 0x64, 0xb2, 0x5b, 0xbc, 0x85, 0xaa, 0xb2, 0xd2, 0x5c, 0x45, 0x8a, 0x78, + 0xd2, 0x03, 0x29, 0xfb, 0x18, 0xa2, 0x4c, 0x90, 0x03, 0xef, 0xfb, 0x27, 0x0e, 0x3f, 0xd2, 0x05, + 0xbc, 0x07, 0x12, 0x83, 0x5f, 0x07, 0xe3, 0x2a, 0xc2, 0x8a, 0xad, 0x59, 0x4e, 0x6d, 0x9f, 0x3d, + 0x42, 0xdd, 0x77, 0xb6, 0xc8, 0xba, 0x42, 0xaf, 0xef, 0x63, 0x7d, 0x60, 0x71, 0x35, 0x10, 0x65, + 0xd7, 0x25, 0xbc, 0x1a, 0xde, 0x07, 0xa7, 0x7c, 0x5d, 0x4d, 0x0b, 0xd9, 0xb4, 0x4a, 0xf5, 0x0e, + 0x75, 0x94, 0x2a, 0x7b, 0xe6, 0x8b, 0x4f, 0x2e, 0x9d, 0x66, 0xe8, 0x7e, 0x10, 0xb0, 0xc3, 0xdc, + 0x24, 0xb6, 0x66, 0x54, 0xc5, 0x69, 0x0f, 0xe3, 0x0e, 0x83, 0xf0, 0xce, 0xfa, 0x24, 0x18, 0xf9, + 0x9e, 0xac, 0xe9, 0x48, 0xcd, 0x8e, 0xcd, 0x73, 0x85, 0x51, 0x91, 0x7d, 0xc1, 0xcb, 0x60, 0xc4, + 0x69, 0x04, 0xeb, 0x38, 0x0b, 0xe6, 0xb9, 0xc2, 0xe4, 0x32, 0xdf, 0x4e, 0xfd, 0x92, 0x69, 0xa8, + 0x9b, 0x54, 0x52, 0x64, 0x2b, 0xe0, 0x16, 0xf0, 0x43, 0x4a, 0x22, 0xe6, 0x1e, 0x32, 0x70, 0x76, + 0x9c, 0x2a, 0x7a, 0x81, 0x79, 0xf5, 0x44, 0xab, 0x57, 0x2b, 0x06, 0xf9, 0xe2, 0x93, 0x4b, 0x80, + 0x6d, 0x52, 0x31, 0x08, 0x7d, 0x36, 0x29, 0xc6, 0x16, 0x85, 0x70, 0x42, 0xc7, 0x47, 0x75, 0x43, + 0xe7, 0xa8, 0x1b, 0x3a, 0xde, 0xa8, 0x1b, 0x3a, 0x5f, 0x03, 0xd3, 0xec, 0x86, 0x22, 0x2c, 0x29, + 0x75, 0xdb, 0x76, 0x1a, 0x0d, 0x64, 0x99, 0xca, 0x6e, 0x76, 0x82, 0x5a, 0x78, 0xc2, 0x9f, 0x2e, + 0xbb, 0xb3, 0xd7, 0x9d, 0x49, 0xa7, 0xf1, 0xcb, 0xb7, 0xbd, 0xbb, 0x2c, 0x45, 0x20, 0x00, 0x82, + 0xdb, 0xcf, 0x9e, 0xa6, 0xeb, 0xa9, 0xd2, 0x61, 0xa7, 0x2b, 0x2b, 0x86, 0x80, 0xf9, 0x7d, 0xf6, + 0x78, 0x46, 0x3b, 0x62, 0x5f, 0xf6, 0xa6, 0x8c, 0xb7, 0x4c, 0xf6, 0xe5, 0x55, 0x90, 0x7d, 0x5e, + 0x79, 0x5e, 0x06, 0x4b, 0x5d, 0x6c, 0xc9, 0xdc, 0x71, 0x11, 0xc0, 0xe0, 0x96, 0xb2, 0xa4, 0xe6, + 0xa5, 0x49, 0xff, 0xa5, 0x73, 0x5f, 0x79, 0x95, 0x36, 0x00, 0x17, 0x92, 0x5b, 0x8a, 0xe8, 0xf5, + 0xf9, 0xff, 0x68, 0x85, 0xf8, 0x2a, 0xb8, 0x98, 0x4e, 0x5b, 0xe6, 0x8c, 0x37, 0xc1, 0x90, 0xed, + 0x11, 0x27, 0x29, 0xf3, 0x07, 0x5d, 0xc0, 0xf3, 0x2c, 0xa1, 0x97, 0x74, 0x53, 0xd9, 0xc3, 0x77, + 0x0d, 0xa2, 0xe9, 0xb7, 0xd1, 0x23, 0x37, 0x2a, 0xbd, 0xa7, 0x79, 0x9b, 0xf5, 0x4e, 0xc9, 0x32, + 0x4c, 0x83, 0x37, 0xc0, 0xf4, 0x0e, 0x9d, 0x97, 0xea, 0x8e, 0x80, 0x44, 0xab, 0x7b, 0x37, 0xf2, + 0x39, 0x5a, 0x35, 0x4e, 0xed, 0x24, 0x2c, 0xe7, 0x57, 0x58, 0xa7, 0x53, 0xf6, 0x6d, 0x5f, 0xb3, + 0xcd, 0x5a, 0x99, 0x35, 0xe4, 0xde, 0x69, 0x44, 0x9a, 0x76, 0x2e, 0xda, 0xb4, 0xf3, 0x6b, 0xe0, + 0xec, 0x81, 0x10, 0x41, 0x1b, 0x13, 0xf6, 0x39, 0x17, 0xf7, 0xf9, 0xf2, 0x47, 0xe7, 0xc0, 0x30, + 0x05, 0x82, 0xbf, 0xc8, 0x80, 0xa9, 0x24, 0xc2, 0x0a, 0x5e, 0xeb, 0xfe, 0xba, 0x45, 0xa9, 0xb4, + 0xdc, 0x4a, 0x1f, 0x08, 0xae, 0x21, 0xfc, 0x8f, 0xb8, 0xef, 0x7f, 0xf9, 0xb7, 0x9f, 0x64, 0x7e, + 0xc0, 0x6d, 0x97, 0xe0, 0xb5, 0xce, 0x84, 0xaa, 0x6f, 0x34, 0x63, 0xc5, 0x84, 0xc7, 0x21, 0x37, + 0x3c, 0x81, 0x57, 0x7a, 0x42, 0x60, 0x57, 0xe3, 0x09, 0xfc, 0x92, 0x63, 0x75, 0x5b, 0xf4, 0xee, + 0xc2, 0xab, 0xdd, 0xdb, 0x19, 0x21, 0xe6, 0x72, 0xd7, 0x7a, 0x07, 0x60, 0x7e, 0x7a, 0x9b, 0xba, + 0xe9, 0x75, 0xb8, 0xd4, 0x85, 0x85, 0x2e, 0x65, 0x07, 0x3f, 0xc8, 0x80, 0x6c, 0x1b, 0x1e, 0x0e, + 0xc3, 0x5b, 0x3d, 0x6a, 0x96, 0x48, 0xf9, 0xe5, 0xde, 0x3d, 0x24, 0x34, 0x66, 0xf4, 0x4d, 0x6a, + 0x74, 0x77, 0x81, 0xc1, 0x84, 0x1c, 0x40, 0xc9, 0x67, 0xd3, 0xe0, 0x7f, 0x39, 0x30, 0x9d, 0x4c, + 0xeb, 0x61, 0xb8, 0xde, 0xb3, 0xd2, 0xad, 0xfc, 0x61, 0xee, 0xd6, 0xe1, 0x80, 0x31, 0x07, 0xdc, + 0xa0, 0x0e, 0x58, 0x81, 0x57, 0x7b, 0x70, 0x80, 0x69, 0x85, 0xec, 0xff, 0x97, 0xc7, 0x8a, 0x24, + 0x92, 0x50, 0x70, 0x2d, 0xbd, 0xd6, 0x07, 0x71, 0x6e, 0xb9, 0x1b, 0x7d, 0xe3, 0x30, 0xc3, 0x57, + 0xa8, 0xe1, 0x5f, 0x87, 0x6f, 0xa7, 0xf8, 0x8d, 0xc5, 0x27, 0x1c, 0x23, 0xfd, 0x5e, 0x82, 0xc9, + 0xe1, 0x26, 0xa3, 0x27, 0x93, 0x13, 0x68, 0xb6, 0x9e, 0x4c, 0x4e, 0x22, 0xc0, 0x7a, 0x33, 0x39, + 0xf2, 0x6e, 0xc3, 0xdf, 0x71, 0xac, 0x1b, 0x8d, 0x70, 0x5f, 0xf0, 0x9d, 0xf4, 0x2a, 0x26, 0x51, + 0x6a, 0xb9, 0xab, 0x3d, 0xaf, 0x67, 0xa6, 0xbd, 0x45, 0x4d, 0x5b, 0x86, 0x8b, 0x9d, 0x4d, 0x23, + 0x0c, 0xc0, 0xfd, 0xed, 0x04, 0xfe, 0x34, 0xc3, 0xde, 0xc3, 0x83, 0xc9, 0x2c, 0x78, 0x27, 0xbd, + 0x8a, 0xa9, 0x48, 0xb4, 0xdc, 0xc6, 0xe1, 0x01, 0x32, 0x27, 0xac, 0x53, 0x27, 0x5c, 0x87, 0xe5, + 0xce, 0x4e, 0xb0, 0x7d, 0xc4, 0x20, 0xa6, 0x6d, 0x8a, 0x29, 0xb9, 0xe4, 0x1c, 0xfc, 0x47, 0x0b, + 0xf9, 0x16, 0x65, 0x82, 0x30, 0xec, 0xe2, 0x6d, 0x6e, 0xc3, 0xf0, 0xe5, 0x4a, 0xfd, 0x40, 0x30, + 0xab, 0x4b, 0xd4, 0xea, 0x6f, 0xc0, 0xcb, 0x9d, 0xad, 0xf6, 0xb8, 0x3d, 0x29, 0xfe, 0x80, 0x7d, + 0x9a, 0x61, 0x3f, 0x24, 0xa5, 0xa0, 0xc0, 0xe0, 0x56, 0x7a, 0xa5, 0xd3, 0xb3, 0x78, 0xb9, 0xbb, + 0x87, 0x8c, 0xca, 0xbc, 0x53, 0xa5, 0xde, 0x91, 0xb7, 0x97, 0xa0, 0xd0, 0xd9, 0x3f, 0xd1, 0x52, + 0xe7, 0x62, 0x9a, 0x05, 0x7e, 0x65, 0xf3, 0x2b, 0x0e, 0x8c, 0x87, 0x18, 0x29, 0xf8, 0x66, 0x17, + 0x47, 0x1b, 0x66, 0xb6, 0x72, 0x6f, 0x75, 0xbf, 0x90, 0xd9, 0xba, 0x48, 0x6d, 0x5d, 0x80, 0x85, + 0x14, 0x91, 0xe0, 0x2a, 0xf9, 0xe7, 0x4c, 0xac, 0x18, 0x4e, 0xa6, 0x9d, 0xba, 0xb9, 0xfc, 0xa9, + 0xe8, 0xb2, 0x6e, 0x2e, 0x7f, 0x3a, 0x46, 0x8c, 0x7f, 0xea, 0x96, 0xb9, 0x1f, 0x71, 0xdb, 0xa9, + 0x12, 0x80, 0xe9, 0x00, 0x49, 0x9a, 0x21, 0x05, 0xad, 0x6c, 0xec, 0xf8, 0xaf, 0xf5, 0x0a, 0xe2, + 0x87, 0xc4, 0xaf, 0x33, 0xe0, 0x7c, 0xea, 0x46, 0x15, 0xde, 0xed, 0xb5, 0x82, 0x3d, 0xb0, 0xd7, + 0xce, 0xdd, 0x3b, 0x6c, 0x58, 0xe6, 0xef, 0x6d, 0xea, 0xee, 0x2d, 0x28, 0x76, 0x5d, 0x2e, 0x4b, + 0x16, 0xb2, 0x03, 0x8f, 0x09, 0x8f, 0xe3, 0x9d, 0xf1, 0x13, 0xf8, 0xe3, 0x41, 0x70, 0x2e, 0x4d, + 0x3f, 0x0b, 0x37, 0xfa, 0xa8, 0x86, 0x12, 0x1b, 0xf9, 0xdc, 0x7b, 0x87, 0x88, 0xc8, 0x3c, 0xf5, + 0xa9, 0x1b, 0x99, 0xbf, 0xe5, 0xb6, 0xef, 0xc3, 0xf7, 0xbb, 0xf1, 0x56, 0x94, 0xec, 0x8b, 0x86, + 0x67, 0x92, 0xdb, 0xbe, 0xd5, 0x17, 0xb8, 0x17, 0xb6, 0x49, 0xc8, 0xbf, 0xc9, 0xc4, 0x8a, 0xfb, + 0x50, 0x6e, 0x28, 0xf7, 0xc3, 0x29, 0x79, 0x6e, 0x5f, 0xed, 0x0f, 0xa4, 0xb7, 0x1c, 0xe0, 0x3b, + 0xa3, 0x9f, 0x1c, 0x90, 0x0c, 0xe2, 0xe7, 0x80, 0x7f, 0x72, 0xec, 0xa7, 0xd4, 0x24, 0x36, 0x04, + 0x76, 0xc1, 0xc7, 0x1d, 0xc0, 0xb8, 0xe4, 0xd6, 0xfa, 0x85, 0xe9, 0xbe, 0x40, 0x6e, 0x43, 0xde, + 0xc0, 0x7f, 0x73, 0xb1, 0xff, 0x90, 0x89, 0xd2, 0x2b, 0xf0, 0x46, 0xf7, 0x07, 0x9d, 0xc8, 0xf1, + 0xe4, 0x6e, 0xf6, 0x0f, 0xd4, 0xbd, 0xd5, 0xa1, 0xe0, 0x10, 0x1e, 0xfb, 0x14, 0xd3, 0x93, 0xd2, + 0x37, 0x3f, 0x7b, 0x3e, 0xc7, 0x7d, 0xfe, 0x7c, 0x8e, 0xfb, 0xeb, 0xf3, 0x39, 0xee, 0xe9, 0x8b, + 0xb9, 0x81, 0xcf, 0x5f, 0xcc, 0x0d, 0xfc, 0xf1, 0xc5, 0xdc, 0xc0, 0xf6, 0x95, 0xaa, 0x46, 0x76, + 0xeb, 0x3b, 0x45, 0xc5, 0xac, 0xb1, 0xff, 0xb4, 0x0a, 0xed, 0x72, 0xc9, 0xdf, 0xa5, 0xf1, 0x86, + 0xf0, 0x28, 0x56, 0xa6, 0x37, 0x2d, 0x84, 0x77, 0x46, 0xe8, 0xaf, 0xd9, 0xaf, 0xff, 0x2f, 0x00, + 0x00, 0xff, 0xff, 0xd3, 0x82, 0x69, 0x58, 0x09, 0x27, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3793,16 +3878,88 @@ func (m *QueryConsumerValidatorsValidator) MarshalToSizedBuffer(dAtA []byte) (in _ = i var l int _ = l + if m.ValidatesCurrentEpoch { + i-- + if m.ValidatesCurrentEpoch { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x68 + } + if m.ProviderPower != 0 { + i = encodeVarintQuery(dAtA, i, uint64(m.ProviderPower)) + i-- + dAtA[i] = 0x60 + } { - size := m.Rate.Size() + size := m.ProviderTokens.Size() i -= size - if _, err := m.Rate.MarshalTo(dAtA[i:]); err != nil { + if _, err := m.ProviderTokens.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x5a + if m.Status != 0 { + i = encodeVarintQuery(dAtA, i, uint64(m.Status)) + i-- + dAtA[i] = 0x50 + } + if m.Jailed { + i-- + if m.Jailed { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x48 + } + if len(m.ProviderOperatorAddress) > 0 { + i -= len(m.ProviderOperatorAddress) + copy(dAtA[i:], m.ProviderOperatorAddress) + i = encodeVarintQuery(dAtA, i, uint64(len(m.ProviderOperatorAddress))) + i-- + dAtA[i] = 0x42 + } + { + size, err := m.Description.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x3a + { + size := m.ProviderCommissionRate.Size() + i -= size + if _, err := m.ProviderCommissionRate.MarshalTo(dAtA[i:]); err != nil { return 0, err } i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x22 + dAtA[i] = 0x32 + { + size := m.ConsumerCommissionRate.Size() + i -= size + if _, err := m.ConsumerCommissionRate.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2a + if m.ConsumerPower != 0 { + i = encodeVarintQuery(dAtA, i, uint64(m.ConsumerPower)) + i-- + dAtA[i] = 0x20 + } if m.Power != 0 { i = encodeVarintQuery(dAtA, i, uint64(m.Power)) i-- @@ -4566,8 +4723,33 @@ func (m *QueryConsumerValidatorsValidator) Size() (n int) { if m.Power != 0 { n += 1 + sovQuery(uint64(m.Power)) } - l = m.Rate.Size() + if m.ConsumerPower != 0 { + n += 1 + sovQuery(uint64(m.ConsumerPower)) + } + l = m.ConsumerCommissionRate.Size() + n += 1 + l + sovQuery(uint64(l)) + l = m.ProviderCommissionRate.Size() + n += 1 + l + sovQuery(uint64(l)) + l = m.Description.Size() + n += 1 + l + sovQuery(uint64(l)) + l = len(m.ProviderOperatorAddress) + if l > 0 { + n += 1 + l + sovQuery(uint64(l)) + } + if m.Jailed { + n += 2 + } + if m.Status != 0 { + n += 1 + sovQuery(uint64(m.Status)) + } + l = m.ProviderTokens.Size() n += 1 + l + sovQuery(uint64(l)) + if m.ProviderPower != 0 { + n += 1 + sovQuery(uint64(m.ProviderPower)) + } + if m.ValidatesCurrentEpoch { + n += 2 + } return n } @@ -7490,8 +7672,27 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { } } case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ConsumerPower", wireType) + } + m.ConsumerPower = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.ConsumerPower |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 5: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Rate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ConsumerCommissionRate", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -7519,10 +7720,221 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.Rate.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.ConsumerCommissionRate.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ProviderCommissionRate", 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 + } + if err := m.ProviderCommissionRate.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Description", 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 err := m.Description.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 8: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ProviderOperatorAddress", 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.ProviderOperatorAddress = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 9: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Jailed", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Jailed = bool(v != 0) + case 10: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) + } + m.Status = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Status |= types1.BondStatus(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 11: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ProviderTokens", 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 + } + if err := m.ProviderTokens.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 12: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ProviderPower", wireType) + } + m.ProviderPower = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.ProviderPower |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 13: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ValidatesCurrentEpoch", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.ValidatesCurrentEpoch = bool(v != 0) default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:])