From c4db3e699ec30c687be1068075d0c18b8131e22d Mon Sep 17 00:00:00 2001 From: Simon Noetzlin Date: Thu, 22 Aug 2024 08:51:00 +0200 Subject: [PATCH 1/5] extend consumer validators query --- .../ccv/provider/v1/query.proto | 19 + x/ccv/provider/keeper/grpc_query.go | 31 +- x/ccv/provider/keeper/grpc_query_test.go | 56 +- .../keeper/validator_set_update_test.go | 1 + x/ccv/provider/types/query.pb.go | 594 ++++++++++++++---- 5 files changed, 552 insertions(+), 149 deletions(-) diff --git a/proto/interchain_security/ccv/provider/v1/query.proto b/proto/interchain_security/ccv/provider/v1/query.proto index cd75395e01..7926dd55a3 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 @@ -341,6 +342,24 @@ message QueryConsumerValidatorsValidator { tendermint.crypto.PublicKey consumer_key = 2; // The power of the validator used on the consumer chain int64 power = 3; + // description defines the description terms for the validator + cosmos.staking.v1beta1.Description description = 4 [(gogoproto.nullable) = false]; + // operator_address defines the address of the validator's operator + string operator_address = 5 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + // jailed defined whether the validator has been jailed from bonded status or not. + bool jailed = 6; + // status is the validator status (bonded/unbonding/unbonded). + cosmos.staking.v1beta1.BondStatus status = 7; + // provider_tokens defines the delegated tokens (incl. self-delegation). + string provider_tokens = 8 [ + (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 = 9; + // validates_current_epoch definines whether the validator has to validate for the current epoch or not + bool validates_current_epoch = 10; } message QueryConsumerValidatorsResponse { diff --git a/x/ccv/provider/keeper/grpc_query.go b/x/ccv/provider/keeper/grpc_query.go index ad1fbb9208..ffa151250d 100644 --- a/x/ccv/provider/keeper/grpc_query.go +++ b/x/ccv/provider/keeper/grpc_query.go @@ -344,11 +344,34 @@ func (k Keeper) QueryConsumerValidators(goCtx context.Context, req *types.QueryC if err != nil { return nil, status.Error(codes.Internal, err.Error()) } - for _, v := range consumerValSet { + + for _, consVal := range consumerValSet { + provAddr := types.ProviderConsAddress{Address: consVal.ProviderConsAddr} + + provVal, err := k.stakingKeeper.GetValidatorByConsAddr(ctx, provAddr.ToSdkConsAddr()) + if err != nil { + 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 + } + validators = append(validators, &types.QueryConsumerValidatorsValidator{ - ProviderAddress: sdk.ConsAddress(v.ProviderConsAddr).String(), - ConsumerKey: v.PublicKey, - Power: v.Power, + ProviderAddress: sdk.ConsAddress(consVal.ProviderConsAddr).String(), + ConsumerKey: consVal.PublicKey, + Power: consVal.Power, + Description: provVal.Description, + OperatorAddress: provVal.OperatorAddress, + Jailed: provVal.Jailed, + Status: provVal.Status, + ProviderTokens: provVal.Tokens, + ProviderPower: provVal.GetConsensusPower(k.stakingKeeper.PowerReduction(ctx)), + ValidatesCurrentEpoch: hasToValidate, }) } diff --git a/x/ccv/provider/keeper/grpc_query_test.go b/x/ccv/provider/keeper/grpc_query_test.go index 43af1118f0..f5f3a9b2a8 100644 --- a/x/ccv/provider/keeper/grpc_query_test.go +++ b/x/ccv/provider/keeper/grpc_query_test.go @@ -98,7 +98,7 @@ func TestQueryConsumerChainOptedInValidators(t *testing.T) { } func TestQueryConsumerValidators(t *testing.T) { - pk, ctx, ctrl, _ := testkeeper.GetProviderKeeperAndCtx(t, testkeeper.NewInMemKeeperParams(t)) + pk, ctx, ctrl, mocks := testkeeper.GetProviderKeeperAndCtx(t, testkeeper.NewInMemKeeperParams(t)) defer ctrl.Finish() consumerId := "0" @@ -111,18 +111,48 @@ 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} - - providerAddr2 := types.NewProviderConsAddress([]byte("providerAddr2")) - consumerKey2 := cryptotestutil.NewCryptoIdentityFromIntSeed(2).TMProtoCryptoPublicKey() - consumerValidator2 := types.ConsensusValidator{ProviderConsAddr: providerAddr2.ToSdkConsAddr(), Power: 2, PublicKey: &consumerKey2} + 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"} + + 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"} expectedResponse := types.QueryConsumerValidatorsResponse{ Validators: []*types.QueryConsumerValidatorsValidator{ - {providerAddr1.String(), &consumerKey1, 1}, - {providerAddr2.String(), &consumerKey2, 2}, + { + ProviderAddress: providerAddr1.String(), + ConsumerKey: &pk1, + Power: 1, + Description: val1.Description, + OperatorAddress: val1.OperatorAddress, + Jailed: val1.Jailed, + Status: val1.Status, + ProviderTokens: val1.Tokens, + ProviderPower: 1, + ValidatesCurrentEpoch: true, + }, + { + ProviderAddress: providerAddr2.String(), + ConsumerKey: &pk2, + Power: 2, + Description: val2.Description, + OperatorAddress: val2.OperatorAddress, + Jailed: val2.Jailed, + Status: val2.Status, + ProviderTokens: val2.Tokens, + ProviderPower: 2, + ValidatesCurrentEpoch: true, + }, }, } @@ -130,6 +160,12 @@ func TestQueryConsumerValidators(t *testing.T) { 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) require.Equal(t, &expectedResponse, res) 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 eab0efb972..1860e6d0f1 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" @@ -1414,6 +1415,20 @@ type QueryConsumerValidatorsValidator struct { ConsumerKey *crypto.PublicKey `protobuf:"bytes,2,opt,name=consumer_key,json=consumerKey,proto3" json:"consumer_key,omitempty"` // The power of the validator used on the consumer chain Power int64 `protobuf:"varint,3,opt,name=power,proto3" json:"power,omitempty"` + // description defines the description terms for the validator + Description types1.Description `protobuf:"bytes,4,opt,name=description,proto3" json:"description"` + // operator_address defines the address of the validator's operator + OperatorAddress string `protobuf:"bytes,5,opt,name=operator_address,json=operatorAddress,proto3" json:"operator_address,omitempty"` + // jailed defined whether the validator has been jailed from bonded status or not. + Jailed bool `protobuf:"varint,6,opt,name=jailed,proto3" json:"jailed,omitempty"` + // status is the validator status (bonded/unbonding/unbonded). + Status types1.BondStatus `protobuf:"varint,7,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,8,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,9,opt,name=provider_power,json=providerPower,proto3" json:"provider_power,omitempty"` + // validates_current_epoch definines whether the validator has to validate for the current epoch or not + ValidatesCurrentEpoch bool `protobuf:"varint,10,opt,name=validates_current_epoch,json=validatesCurrentEpoch,proto3" json:"validates_current_epoch,omitempty"` } func (m *QueryConsumerValidatorsValidator) Reset() { *m = QueryConsumerValidatorsValidator{} } @@ -1470,6 +1485,48 @@ func (m *QueryConsumerValidatorsValidator) GetPower() int64 { return 0 } +func (m *QueryConsumerValidatorsValidator) GetDescription() types1.Description { + if m != nil { + return m.Description + } + return types1.Description{} +} + +func (m *QueryConsumerValidatorsValidator) GetOperatorAddress() string { + if m != nil { + return m.OperatorAddress + } + 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"` } @@ -1938,142 +1995,155 @@ func init() { } var fileDescriptor_422512d7b7586cd7 = []byte{ - // 2148 bytes of a gzipped FileDescriptorProto + // 2356 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, 0xf4, 0xe7, 0x96, 0x63, 0x6e, 0x4d, 0x91, 0x4b, 0xd1, 0x02, 0x6e, 0x61, 0xf7, - 0x50, 0x14, 0x28, 0x50, 0xb8, 0xbd, 0x16, 0x28, 0x38, 0x1c, 0xfe, 0x2e, 0x57, 0x4b, 0xee, 0x2e, - 0x90, 0xdb, 0x72, 0xe6, 0xcd, 0xf7, 0x7e, 0xe6, 0xcd, 0x9b, 0x37, 0x9f, 0x04, 0x24, 0xc3, 0x72, - 0x91, 0xa3, 0xed, 0xa9, 0x86, 0xa5, 0x10, 0xa4, 0x1d, 0x38, 0x86, 0xdb, 0x91, 0x34, 0xad, 0x2d, - 0xd9, 0x0e, 0x6e, 0x1b, 0x3a, 0x72, 0xa4, 0xf6, 0xaa, 0xb4, 0x7f, 0x80, 0x9c, 0x8e, 0x68, 0x3b, - 0xd8, 0xc5, 0xf0, 0x74, 0xc6, 0x02, 0x51, 0xd3, 0xda, 0x62, 0xb0, 0x40, 0x6c, 0xaf, 0xf2, 0x0b, - 0x4d, 0x8c, 0x9b, 0x26, 0x92, 0x54, 0xdb, 0x90, 0x54, 0xcb, 0xc2, 0xae, 0xea, 0x1a, 0xd8, 0x22, - 0x3e, 0x04, 0x3f, 0xdb, 0xc4, 0x4d, 0x4c, 0x7f, 0x4a, 0xde, 0x2f, 0x36, 0x5a, 0x65, 0x6b, 0xe8, - 0xd7, 0xee, 0xc1, 0xf7, 0x25, 0xd7, 0x68, 0x21, 0xe2, 0xaa, 0x2d, 0x9b, 0x09, 0xac, 0xe5, 0x31, - 0x35, 0xb4, 0xc2, 0x5f, 0xb3, 0xd2, 0x6b, 0x4d, 0x7b, 0x55, 0x22, 0x7b, 0xaa, 0x83, 0x74, 0x45, - 0xc3, 0x16, 0x39, 0x68, 0x85, 0x2b, 0xbe, 0x7a, 0xc8, 0x8a, 0xfb, 0x86, 0x83, 0x98, 0xd8, 0x82, - 0x8b, 0x2c, 0x1d, 0x39, 0x2d, 0xc3, 0x72, 0x25, 0xcd, 0xe9, 0xd8, 0x2e, 0x96, 0xee, 0xa1, 0x4e, - 0xe0, 0xe1, 0x49, 0x0d, 0x93, 0x16, 0x26, 0x8a, 0xef, 0xa4, 0xff, 0xe1, 0x4f, 0x09, 0x1f, 0x80, - 0xf9, 0xf7, 0xbc, 0x70, 0xd6, 0x99, 0xda, 0x2b, 0xc8, 0x42, 0xc4, 0x20, 0x32, 0xda, 0x3f, 0x40, - 0xc4, 0x85, 0xa7, 0xc0, 0x94, 0xaf, 0xdb, 0xd0, 0xe7, 0xb8, 0x45, 0x6e, 0x69, 0xba, 0x56, 0x9a, - 0xe3, 0xe4, 0x17, 0xe8, 0x58, 0x43, 0x87, 0x55, 0x30, 0x13, 0xd8, 0xeb, 0x49, 0x94, 0x3c, 0x09, - 0x19, 0x04, 0x43, 0x0d, 0x5d, 0x78, 0x08, 0x16, 0xb2, 0xe1, 0x89, 0x8d, 0x2d, 0x82, 0xe0, 0xfb, - 0xe0, 0x48, 0xd3, 0x1f, 0x52, 0x88, 0xab, 0xba, 0x88, 0x2a, 0x99, 0x59, 0x5b, 0x11, 0x7b, 0x6d, - 0x6b, 0x7b, 0x55, 0x4c, 0x61, 0xdd, 0xf2, 0xd6, 0xd5, 0xc6, 0x3f, 0x7b, 0x52, 0x1d, 0x93, 0x5f, - 0x6c, 0xc6, 0xc6, 0x84, 0x05, 0xc0, 0x27, 0x94, 0xd7, 0x3d, 0xb8, 0xc0, 0x35, 0x41, 0x4d, 0x79, - 0x1e, 0xcc, 0x32, 0xcb, 0x6a, 0x60, 0x92, 0xaa, 0x27, 0x73, 0xdc, 0x62, 0x79, 0x69, 0x66, 0x6d, - 0x59, 0xcc, 0x91, 0x69, 0x22, 0x05, 0x91, 0xd9, 0x4a, 0xe1, 0x0c, 0xf8, 0x7a, 0xb7, 0x8a, 0x5b, - 0xae, 0xea, 0xb8, 0x5b, 0x0e, 0xb6, 0x31, 0x51, 0xcd, 0xd0, 0x9a, 0x8f, 0x38, 0xb0, 0xd4, 0x5f, - 0x96, 0xd9, 0xf6, 0x5d, 0x30, 0x6d, 0x07, 0x83, 0x2c, 0x62, 0xef, 0xe4, 0x33, 0x8f, 0x81, 0xaf, - 0xeb, 0xba, 0xe1, 0x1d, 0x81, 0x08, 0x3a, 0x02, 0x14, 0x96, 0xc0, 0xd7, 0xb2, 0x2c, 0xc1, 0x76, - 0x97, 0xd1, 0x3f, 0xe2, 0xb2, 0x1d, 0x4c, 0x88, 0x86, 0x3b, 0xdd, 0x65, 0xf3, 0x85, 0x42, 0x36, - 0xcb, 0xa8, 0x85, 0xdb, 0xaa, 0x99, 0x69, 0xf2, 0xcf, 0x4b, 0x60, 0x82, 0xea, 0x86, 0x27, 0xd3, - 0x09, 0x1b, 0x25, 0xeb, 0x3c, 0x98, 0xd6, 0x4c, 0x03, 0x59, 0x6e, 0x94, 0xaa, 0x53, 0xfe, 0x40, - 0x43, 0x87, 0xc7, 0xc1, 0x84, 0x8b, 0x6d, 0xe5, 0xc6, 0x5c, 0x79, 0x91, 0x5b, 0x3a, 0x22, 0x8f, - 0xbb, 0xd8, 0xbe, 0x01, 0x97, 0x01, 0x6c, 0x19, 0x96, 0x62, 0xe3, 0xfb, 0x5e, 0x7e, 0x5b, 0x8a, - 0x2f, 0x31, 0xbe, 0xc8, 0x2d, 0x95, 0xe5, 0xa3, 0x2d, 0xc3, 0xda, 0xf2, 0x26, 0x1a, 0xd6, 0xb6, - 0x27, 0xbb, 0x02, 0x66, 0xdb, 0xaa, 0x69, 0xe8, 0xaa, 0x8b, 0x1d, 0xc2, 0x96, 0x68, 0xaa, 0x3d, - 0x37, 0x41, 0xf1, 0x60, 0x34, 0x47, 0x17, 0xd5, 0x55, 0x1b, 0x2e, 0x83, 0x97, 0xc3, 0x51, 0x85, - 0x20, 0x97, 0x8a, 0x4f, 0x52, 0xf1, 0x63, 0xe1, 0xc4, 0x2d, 0xe4, 0x7a, 0xb2, 0x0b, 0x60, 0x5a, - 0x35, 0x4d, 0x7c, 0xdf, 0x34, 0x88, 0x3b, 0xf7, 0xc2, 0x62, 0x79, 0x69, 0x5a, 0x8e, 0x06, 0x20, - 0x0f, 0xa6, 0x74, 0x64, 0x75, 0xe8, 0xe4, 0x14, 0x9d, 0x0c, 0xbf, 0x85, 0x5f, 0x71, 0xe0, 0x55, - 0xba, 0x47, 0x77, 0x02, 0xc8, 0x58, 0x12, 0x38, 0x39, 0xcf, 0xf9, 0x05, 0xf0, 0x52, 0xb0, 0x25, - 0x8a, 0xaa, 0xeb, 0x0e, 0x22, 0xc4, 0x8f, 0x60, 0x0d, 0x3e, 0x7f, 0x52, 0x3d, 0xda, 0x51, 0x5b, - 0xe6, 0x79, 0x81, 0x4d, 0x08, 0xf2, 0xb1, 0x40, 0x76, 0xdd, 0x1f, 0x49, 0x97, 0x89, 0x72, 0xba, - 0x4c, 0x9c, 0x9f, 0xfa, 0xe8, 0x93, 0xea, 0xd8, 0x3f, 0x3e, 0xa9, 0x8e, 0x09, 0x37, 0x81, 0x70, - 0x98, 0xb5, 0x2c, 0x99, 0xce, 0x80, 0x97, 0x42, 0xc0, 0xc0, 0x1e, 0x7f, 0xb7, 0x8f, 0x69, 0x31, - 0x79, 0xcf, 0x9a, 0x6e, 0xff, 0xb7, 0x62, 0xd6, 0xe5, 0xf7, 0xbf, 0x4b, 0xdf, 0x21, 0xfe, 0xa7, - 0x6c, 0x18, 0xca, 0xff, 0xa4, 0xb5, 0x91, 0xff, 0x5d, 0xfb, 0xc1, 0xfc, 0x4f, 0xc5, 0x5e, 0x98, - 0x07, 0x27, 0x29, 0xe0, 0xf6, 0x9e, 0x83, 0x5d, 0xd7, 0x44, 0xb4, 0x34, 0x06, 0x07, 0xf8, 0x8f, - 0x1c, 0x2b, 0x91, 0xa9, 0x59, 0xa6, 0xa6, 0x0a, 0x66, 0x88, 0xa9, 0x92, 0x3d, 0xa5, 0x85, 0x5c, - 0xe4, 0x50, 0x0d, 0x65, 0x19, 0xd0, 0xa1, 0x77, 0xbd, 0x11, 0xb8, 0x06, 0xbe, 0x12, 0x13, 0x50, - 0x68, 0x46, 0xaa, 0x96, 0x86, 0x68, 0x70, 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, 0x9c, 0x45, 0x34, 0x32, 0x33, 0x6b, 0xbc, 0xe8, 0xdf, 0xbd, 0x62, 0x70, 0xf7, 0x8a, 0xdb, - 0xc1, 0xdd, 0x5b, 0x9b, 0xf2, 0xea, 0xfc, 0xe3, 0xbf, 0x56, 0x39, 0xf9, 0x15, 0x0f, 0x45, 0x0e, - 0x40, 0xea, 0x01, 0x86, 0x70, 0x0e, 0x2c, 0x53, 0x97, 0x64, 0xd4, 0x34, 0x88, 0x8b, 0x1c, 0xa4, - 0x47, 0x15, 0xe4, 0xbe, 0xea, 0xe8, 0x1b, 0xc8, 0xc2, 0xad, 0xb0, 0x84, 0x5d, 0x06, 0x67, 0x73, - 0x49, 0xb3, 0x88, 0xbc, 0x02, 0x26, 0x75, 0x3a, 0x42, 0x6f, 0x85, 0x69, 0x99, 0x7d, 0x09, 0x15, - 0x76, 0xcf, 0xf9, 0xd5, 0x09, 0xe9, 0xb4, 0x18, 0x35, 0x36, 0x42, 0x35, 0x1f, 0x72, 0xe0, 0x54, - 0x0f, 0x01, 0x86, 0x7c, 0x17, 0x1c, 0xb5, 0xe3, 0x73, 0xc1, 0xbd, 0xb3, 0x96, 0xab, 0x48, 0x26, - 0x60, 0xd9, 0x65, 0x98, 0xc2, 0x13, 0x2c, 0x70, 0x24, 0x21, 0x06, 0x17, 0x00, 0x4b, 0xf0, 0x8d, - 0xee, 0x9c, 0xdf, 0x80, 0x15, 0x00, 0x82, 0x02, 0xdb, 0xd8, 0xa0, 0x1b, 0x3a, 0x2e, 0xc7, 0x46, - 0xfa, 0x26, 0xb5, 0xb0, 0x0f, 0x24, 0xea, 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, 0x5f, 0x27, 0x8b, 0xfc, 0x3e, 0x78, 0xd9, 0x56, 0x0d, 0x47, 0x69, 0xab, 0xa6, 0xd7, - 0x7d, 0xd1, 0x03, 0xc5, 0x82, 0xbf, 0x99, 0x2f, 0xf8, 0xaa, 0xe1, 0x44, 0x8a, 0xc2, 0x03, 0x6b, - 0x45, 0xa9, 0x74, 0xd4, 0x4e, 0x88, 0x08, 0xff, 0xe5, 0xc0, 0xab, 0x7d, 0x57, 0xc1, 0xcd, 0x5e, - 0xa7, 0xbc, 0x36, 0xff, 0xfc, 0x49, 0xf5, 0x84, 0x5f, 0x75, 0xd2, 0x12, 0x19, 0xe5, 0x77, 0xb3, - 0x67, 0xf5, 0x8a, 0xe1, 0xa4, 0x25, 0x32, 0xca, 0xd8, 0x45, 0xf0, 0x62, 0x28, 0x75, 0x0f, 0x75, - 0xd8, 0x69, 0x5d, 0x10, 0xa3, 0xde, 0x53, 0xf4, 0x7b, 0x4f, 0x71, 0xeb, 0x60, 0xd7, 0x34, 0xb4, - 0x6b, 0xa8, 0x23, 0x87, 0x1b, 0x76, 0x0d, 0x75, 0x84, 0x59, 0x00, 0xfd, 0x43, 0xa0, 0x3a, 0x6a, - 0x74, 0x04, 0xef, 0x82, 0xe3, 0x89, 0x51, 0xb6, 0x2d, 0x0d, 0x30, 0x69, 0xd3, 0x11, 0xd6, 0x2d, - 0x9c, 0xcd, 0xb9, 0x17, 0xde, 0x12, 0x76, 0x02, 0x18, 0x80, 0x60, 0xb2, 0x92, 0x90, 0xc8, 0x80, - 0x9b, 0xb6, 0x8b, 0xf4, 0x86, 0x15, 0x16, 0xda, 0x91, 0xf5, 0xbc, 0xfb, 0xac, 0xa4, 0xf4, 0xd3, - 0x16, 0x36, 0x9a, 0xa7, 0xe2, 0x8d, 0x43, 0x6a, 0x3b, 0x51, 0x50, 0x69, 0xe6, 0x63, 0x1d, 0x44, - 0x72, 0x7f, 0x11, 0x11, 0xee, 0x82, 0x4a, 0x42, 0xe5, 0xe8, 0x9d, 0xfa, 0x1d, 0x07, 0x16, 0x7b, - 0xa8, 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, 0xc3, 0x6b, 0xad, 0xab, 0x3d, 0xa3, - 0xc3, 0x36, 0x01, 0x01, 0x10, 0xc5, 0x97, 0x1d, 0xfe, 0xcb, 0xb9, 0x12, 0xae, 0x5f, 0x50, 0xe4, - 0x18, 0xb0, 0xb0, 0xcf, 0xca, 0x53, 0xf2, 0xcd, 0x11, 0xca, 0x5e, 0x55, 0xc9, 0x36, 0x66, 0x5f, - 0xc1, 0x1d, 0x3d, 0x64, 0x50, 0x05, 0x15, 0xac, 0x16, 0x50, 0xc9, 0xc2, 0x71, 0x0e, 0xc0, 0x70, - 0x27, 0x82, 0xb4, 0x09, 0x12, 0x31, 0xac, 0x25, 0x7e, 0x1d, 0xd5, 0x69, 0x8b, 0x75, 0x36, 0xbb, - 0x69, 0xab, 0xe3, 0x56, 0xcb, 0x20, 0xc4, 0xc0, 0x96, 0x1c, 0xf3, 0xe8, 0xcb, 0x6d, 0x36, 0x85, - 0x26, 0x38, 0x97, 0xcf, 0x5a, 0x16, 0x8c, 0x37, 0xc1, 0xb8, 0x13, 0x3c, 0x4d, 0xa7, 0x6b, 0xa7, - 0xbd, 0xca, 0xf2, 0xe7, 0x27, 0xd5, 0x79, 0xff, 0x19, 0x4d, 0xf4, 0x7b, 0xa2, 0x81, 0xa5, 0x96, - 0xea, 0xee, 0x89, 0xd7, 0x51, 0x53, 0xd5, 0x3a, 0x1b, 0x48, 0x93, 0xe9, 0x02, 0x41, 0x60, 0x47, - 0xa6, 0x66, 0x62, 0xed, 0x1e, 0xb9, 0x6d, 0xb9, 0x86, 0x79, 0x03, 0x3d, 0x70, 0x2f, 0xdb, 0x58, - 0xdb, 0x0b, 0x8a, 0xdf, 0x0e, 0xeb, 0x4e, 0xb3, 0x65, 0x98, 0x05, 0x6f, 0x80, 0x13, 0xbb, 0x74, - 0x5e, 0x39, 0xf0, 0x04, 0x14, 0xda, 0x3f, 0x21, 0x4f, 0x84, 0x1a, 0x35, 0x2e, 0xcf, 0xee, 0x66, - 0x2c, 0x17, 0xd6, 0x59, 0x2f, 0x59, 0x0f, 0x7d, 0xdf, 0x74, 0x70, 0xab, 0xce, 0x9e, 0x3c, 0xc1, - 0x6e, 0x24, 0x9e, 0x45, 0x5c, 0xf2, 0x59, 0x24, 0x6c, 0x82, 0xd3, 0x87, 0x42, 0x44, 0x8d, 0x62, - 0x3c, 0xe6, 0x5c, 0x3a, 0xe6, 0x6b, 0x1f, 0xbf, 0x06, 0x26, 0x28, 0x10, 0xfc, 0x65, 0x09, 0xcc, - 0x66, 0x51, 0x02, 0xf0, 0x52, 0xf1, 0xe3, 0x96, 0x24, 0x2b, 0xf8, 0xf5, 0x21, 0x10, 0x7c, 0x47, - 0x84, 0x1f, 0x73, 0x3f, 0xf8, 0xe2, 0xef, 0x3f, 0x2d, 0xfd, 0x90, 0xdb, 0xa9, 0xc1, 0x4b, 0xfd, - 0xc9, 0xa8, 0xd0, 0x69, 0xc6, 0x3b, 0x48, 0x0f, 0x63, 0x61, 0x78, 0x04, 0x2f, 0x0c, 0x84, 0xc0, - 0x8e, 0xc6, 0x23, 0xf8, 0x05, 0xc7, 0x6e, 0xc6, 0xe4, 0xd9, 0x85, 0x17, 0x8b, 0xfb, 0x99, 0xa0, - 0x3e, 0xf8, 0x4b, 0x83, 0x03, 0xb0, 0x38, 0xbd, 0x4d, 0xc3, 0xf4, 0x3a, 0x5c, 0x2d, 0xe0, 0xa1, - 0x4f, 0x8a, 0xc0, 0x0f, 0x4b, 0x60, 0xae, 0x07, 0xd3, 0x41, 0xe0, 0xf5, 0x01, 0x2d, 0xcb, 0x24, - 0x55, 0xf8, 0x77, 0x47, 0x84, 0xc6, 0x9c, 0xbe, 0x4a, 0x9d, 0x2e, 0x96, 0x18, 0x4c, 0xc8, 0x03, - 0x54, 0x42, 0xbe, 0x02, 0xfe, 0x8f, 0x03, 0x27, 0xb2, 0x89, 0x13, 0x02, 0xaf, 0x0d, 0x6c, 0x74, - 0x37, 0x43, 0xc3, 0x5f, 0x1f, 0x0d, 0x18, 0x0b, 0xc0, 0x15, 0x1a, 0x80, 0x75, 0x78, 0x71, 0x80, - 0x00, 0x60, 0x3b, 0xe6, 0xff, 0xbf, 0x83, 0x77, 0x67, 0xe6, 0x33, 0x1f, 0x6e, 0xe6, 0xb7, 0xfa, - 0x30, 0x56, 0x83, 0xbf, 0x32, 0x34, 0x0e, 0x73, 0x7c, 0x9d, 0x3a, 0xfe, 0x4d, 0xf8, 0x76, 0x0e, - 0x7e, 0x3a, 0xa4, 0x74, 0x12, 0x1d, 0x75, 0x86, 0xcb, 0xf1, 0x36, 0x6e, 0x20, 0x97, 0x33, 0x88, - 0x8c, 0x81, 0x5c, 0xce, 0xa2, 0x18, 0x06, 0x73, 0x39, 0x71, 0x6f, 0xc3, 0x3f, 0x70, 0xac, 0xdf, - 0x4f, 0xb0, 0x0b, 0xf0, 0x9d, 0xfc, 0x26, 0x66, 0x91, 0x16, 0xfc, 0xc5, 0x81, 0xd7, 0x33, 0xd7, - 0xde, 0xa2, 0xae, 0xad, 0xc1, 0x95, 0xfe, 0xae, 0xb9, 0x0c, 0xc0, 0x67, 0xa7, 0xe1, 0xcf, 0x4a, - 0xec, 0x3e, 0x3c, 0x9c, 0x2e, 0x80, 0x37, 0xf3, 0x9b, 0x98, 0x8b, 0xa6, 0xe0, 0xb7, 0x46, 0x07, - 0xc8, 0x82, 0x70, 0x8d, 0x06, 0xe1, 0x32, 0xac, 0xf7, 0x0f, 0x82, 0x13, 0x22, 0x46, 0x39, 0xed, - 0x50, 0x4c, 0xc5, 0xa7, 0x3f, 0xe0, 0x3f, 0xbb, 0xe8, 0x8d, 0xe4, 0x5b, 0x9b, 0xc0, 0x02, 0x77, - 0x73, 0x0f, 0x0e, 0x85, 0xaf, 0x0d, 0x03, 0xc1, 0xbc, 0xae, 0x51, 0xaf, 0xbf, 0x05, 0xcf, 0xf7, - 0xf7, 0x3a, 0x60, 0x4f, 0x94, 0xf4, 0x05, 0xf6, 0x69, 0x89, 0x51, 0xf5, 0x39, 0x48, 0x06, 0xb8, - 0x9d, 0xdf, 0xe8, 0xfc, 0x3c, 0x09, 0x7f, 0x7b, 0xc4, 0xa8, 0x2c, 0x3a, 0x4d, 0x1a, 0x1d, 0x75, - 0x67, 0x15, 0x4a, 0xfd, 0xe3, 0x93, 0x6c, 0x75, 0xce, 0xe5, 0x59, 0x10, 0x76, 0x36, 0xbf, 0xe6, - 0xc0, 0x4c, 0xec, 0xcd, 0x0f, 0xdf, 0x2c, 0xb0, 0xb5, 0x71, 0xee, 0x80, 0x7f, 0xab, 0xf8, 0x42, - 0xe6, 0xeb, 0x0a, 0xf5, 0x75, 0x19, 0x2e, 0xe5, 0xc8, 0x04, 0xdf, 0xc8, 0xbf, 0x94, 0x52, 0xcd, - 0x70, 0xf6, 0xc3, 0xbe, 0xc8, 0xe1, 0xcf, 0x45, 0x48, 0x14, 0x39, 0xfc, 0xf9, 0x38, 0x07, 0xe1, - 0xb1, 0xdf, 0xe6, 0x7e, 0xcc, 0xed, 0xe4, 0x2a, 0x00, 0xd8, 0x03, 0x52, 0x0c, 0x4b, 0x89, 0x9e, - 0xb2, 0xa9, 0xed, 0xbf, 0x34, 0x28, 0x48, 0x98, 0x12, 0xbf, 0x29, 0x81, 0x33, 0xb9, 0x1f, 0xaa, - 0xf0, 0xf6, 0xa0, 0x1d, 0xec, 0xa1, 0x6f, 0x6d, 0xfe, 0xce, 0xa8, 0x61, 0x59, 0xbc, 0x77, 0x68, - 0xb8, 0xb7, 0xa1, 0x5c, 0xb8, 0x5d, 0x56, 0x6c, 0xe4, 0x44, 0x11, 0x93, 0x1e, 0xa6, 0x5f, 0xc6, - 0x8f, 0xe0, 0x4f, 0xca, 0xe0, 0xb5, 0x3c, 0xef, 0x59, 0xb8, 0x35, 0x44, 0x37, 0x94, 0xf9, 0x90, - 0xe7, 0xdf, 0x1b, 0x21, 0x22, 0x8b, 0xd4, 0xa7, 0x7e, 0x66, 0xfe, 0x9e, 0xdb, 0xf9, 0x00, 0xbe, - 0x5f, 0x24, 0x5a, 0x21, 0x9c, 0xe2, 0xbd, 0xbd, 0x93, 0xe9, 0x99, 0x15, 0xb6, 0xef, 0x0c, 0x05, - 0x1e, 0xa4, 0x6d, 0x16, 0xf2, 0x6f, 0x4b, 0xa9, 0xe6, 0x3e, 0x56, 0x1b, 0xea, 0xc3, 0x70, 0x4a, - 0x41, 0xd8, 0x37, 0x86, 0x03, 0x19, 0xac, 0x06, 0x84, 0xc1, 0x18, 0xa6, 0x06, 0x64, 0x83, 0x84, - 0x35, 0xe0, 0x5f, 0x1c, 0xfb, 0x63, 0x55, 0x16, 0x1b, 0x02, 0x0b, 0xf0, 0x71, 0x87, 0x30, 0x2e, - 0xfc, 0xe6, 0xb0, 0x30, 0xc5, 0x1b, 0xe4, 0x1e, 0xe4, 0x0d, 0xfc, 0x0f, 0x97, 0xfa, 0x1f, 0x84, - 0x24, 0xbd, 0x02, 0xaf, 0x14, 0xdf, 0xe8, 0x4c, 0x8e, 0x87, 0xbf, 0x3a, 0x3c, 0x50, 0x71, 0xaf, - 0x63, 0xc9, 0x21, 0x3d, 0x0c, 0x29, 0xa6, 0x47, 0xb5, 0x6f, 0x7f, 0xf6, 0xb4, 0xc2, 0x7d, 0xfe, - 0xb4, 0xc2, 0xfd, 0xed, 0x69, 0x85, 0x7b, 0xfc, 0xac, 0x32, 0xf6, 0xf9, 0xb3, 0xca, 0xd8, 0x9f, - 0x9e, 0x55, 0xc6, 0x76, 0x2e, 0x34, 0x0d, 0x77, 0xef, 0x60, 0x57, 0xd4, 0x70, 0x8b, 0xfd, 0x97, - 0x4a, 0x4c, 0xcb, 0x37, 0x42, 0x2d, 0xed, 0x37, 0xa4, 0x07, 0xa9, 0x36, 0xbd, 0x63, 0x23, 0xb2, - 0x3b, 0x49, 0xff, 0x5e, 0xf8, 0xfa, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0x38, 0x75, 0x2e, 0x13, - 0x45, 0x24, 0x00, 0x00, + 0x15, 0x16, 0x57, 0x3f, 0x96, 0x46, 0xf1, 0x4f, 0xc6, 0xb2, 0xbd, 0x5e, 0xc9, 0x5a, 0x85, 0x76, + 0x5a, 0x59, 0xb6, 0x97, 0xd2, 0x06, 0x69, 0x12, 0xb7, 0x8e, 0xad, 0x5d, 0x59, 0xf6, 0x42, 0x8e, + 0xad, 0x50, 0xb2, 0x5b, 0x28, 0x4d, 0x69, 0x8a, 0x9c, 0xae, 0x58, 0x71, 0x39, 0x14, 0x67, 0x76, + 0xed, 0x85, 0xe1, 0x43, 0x5a, 0xa0, 0x48, 0x7a, 0x28, 0x0c, 0x14, 0x05, 0x7a, 0xcc, 0xa5, 0x40, + 0x0f, 0x3d, 0x15, 0x41, 0x8b, 0xde, 0x72, 0xcc, 0xad, 0x69, 0x7c, 0x29, 0x5a, 0xc0, 0x2d, 0xec, + 0x1e, 0x8a, 0x02, 0x05, 0x8a, 0xb4, 0xd7, 0x02, 0x05, 0x87, 0x43, 0x2e, 0xc9, 0xe5, 0x6a, 0xb9, + 0xbb, 0x02, 0x72, 0x13, 0x67, 0xde, 0xfb, 0xe6, 0x7d, 0x6f, 0xde, 0xbc, 0x79, 0xf3, 0x56, 0x40, + 0x32, 0x2c, 0x8a, 0x1c, 0x6d, 0x47, 0x35, 0x2c, 0x85, 0x20, 0xad, 0xee, 0x18, 0xb4, 0x29, 0x69, + 0x5a, 0x43, 0xb2, 0x1d, 0xdc, 0x30, 0x74, 0xe4, 0x48, 0x8d, 0x25, 0x69, 0xaf, 0x8e, 0x9c, 0x66, + 0xc1, 0x76, 0x30, 0xc5, 0xf0, 0x6c, 0x82, 0x42, 0x41, 0xd3, 0x1a, 0x05, 0x5f, 0xa1, 0xd0, 0x58, + 0xca, 0xcd, 0x54, 0x31, 0xae, 0x9a, 0x48, 0x52, 0x6d, 0x43, 0x52, 0x2d, 0x0b, 0x53, 0x95, 0x1a, + 0xd8, 0x22, 0x1e, 0x44, 0x6e, 0xaa, 0x8a, 0xab, 0x98, 0xfd, 0x29, 0xb9, 0x7f, 0xf1, 0xd1, 0x3c, + 0xd7, 0x61, 0x5f, 0xdb, 0xf5, 0xef, 0x4b, 0xd4, 0xa8, 0x21, 0x42, 0xd5, 0x9a, 0xcd, 0x05, 0x8a, + 0x69, 0x4c, 0x0d, 0xac, 0xf0, 0x74, 0x16, 0x3b, 0xe9, 0x34, 0x96, 0x24, 0xb2, 0xa3, 0x3a, 0x48, + 0x57, 0x34, 0x6c, 0x91, 0x7a, 0x2d, 0xd0, 0x78, 0x75, 0x1f, 0x8d, 0x07, 0x86, 0x83, 0xb8, 0xd8, + 0x0c, 0x45, 0x96, 0x8e, 0x9c, 0x9a, 0x61, 0x51, 0x49, 0x73, 0x9a, 0x36, 0xc5, 0xd2, 0x2e, 0x6a, + 0xfa, 0x0c, 0x4f, 0x6b, 0x98, 0xd4, 0x30, 0x51, 0x3c, 0x92, 0xde, 0x07, 0x9f, 0x3a, 0xe7, 0x7d, + 0x49, 0x84, 0xaa, 0xbb, 0x86, 0x55, 0x95, 0x1a, 0x4b, 0xdb, 0x88, 0xaa, 0x4b, 0xfe, 0xb7, 0x27, + 0x25, 0xbe, 0x0f, 0xa6, 0xdf, 0x75, 0x9d, 0x5e, 0xe6, 0xc6, 0xdd, 0x40, 0x16, 0x22, 0x06, 0x91, + 0xd1, 0x5e, 0x1d, 0x11, 0x0a, 0xcf, 0x80, 0x71, 0xcf, 0x42, 0x43, 0xcf, 0x0a, 0x73, 0xc2, 0xfc, + 0x44, 0x29, 0x93, 0x15, 0xe4, 0x43, 0x6c, 0xac, 0xa2, 0xc3, 0x3c, 0x98, 0xf4, 0x59, 0xb9, 0x12, + 0x19, 0x57, 0x42, 0x06, 0xfe, 0x50, 0x45, 0x17, 0x1f, 0x81, 0x99, 0x64, 0x78, 0x62, 0x63, 0x8b, + 0x20, 0xf8, 0x1e, 0x38, 0x5c, 0xf5, 0x86, 0x14, 0x42, 0x55, 0x8a, 0xd8, 0x22, 0x93, 0xc5, 0xc5, + 0x42, 0xa7, 0xcd, 0x6f, 0x2c, 0x15, 0x62, 0x58, 0x1b, 0xae, 0x5e, 0x69, 0xe4, 0xb3, 0x67, 0xf9, + 0x21, 0xf9, 0xa5, 0x6a, 0x68, 0x4c, 0x9c, 0x01, 0xb9, 0xc8, 0xe2, 0x65, 0x17, 0xce, 0xa7, 0x26, + 0xaa, 0x31, 0xe6, 0xfe, 0x2c, 0xb7, 0xac, 0x04, 0xc6, 0xd8, 0xf2, 0x24, 0x2b, 0xcc, 0x0d, 0xcf, + 0x4f, 0x16, 0x17, 0x0a, 0x29, 0xe2, 0xb1, 0xc0, 0x40, 0x64, 0xae, 0x29, 0x9e, 0x07, 0x5f, 0x6f, + 0x5f, 0x62, 0x83, 0xaa, 0x0e, 0x5d, 0x77, 0xb0, 0x8d, 0x89, 0x6a, 0x06, 0xd6, 0x7c, 0x28, 0x80, + 0xf9, 0xee, 0xb2, 0xdc, 0xb6, 0xef, 0x82, 0x09, 0xdb, 0x1f, 0xe4, 0x1e, 0x7b, 0x3b, 0x9d, 0x79, + 0x1c, 0x7c, 0x59, 0xd7, 0x0d, 0xf7, 0xa0, 0xb4, 0xa0, 0x5b, 0x80, 0xe2, 0x3c, 0xf8, 0x5a, 0x92, + 0x25, 0xd8, 0x6e, 0x33, 0xfa, 0xc7, 0x42, 0x32, 0xc1, 0x88, 0x68, 0xb0, 0xd3, 0x6d, 0x36, 0x5f, + 0xe9, 0xc9, 0x66, 0x19, 0xd5, 0x70, 0x43, 0x35, 0x13, 0x4d, 0xfe, 0x45, 0x06, 0x8c, 0xb2, 0xb5, + 0xe1, 0xe9, 0x78, 0xc0, 0xb6, 0x82, 0x75, 0x1a, 0x4c, 0x68, 0xa6, 0x81, 0x2c, 0xda, 0x0a, 0xd5, + 0x71, 0x6f, 0xa0, 0xa2, 0xc3, 0xe3, 0x60, 0x94, 0x62, 0x5b, 0xb9, 0x9d, 0x1d, 0x9e, 0x13, 0xe6, + 0x0f, 0xcb, 0x23, 0x14, 0xdb, 0xb7, 0xe1, 0x02, 0x80, 0x35, 0xc3, 0x52, 0x6c, 0xfc, 0xc0, 0x8d, + 0x6f, 0x4b, 0xf1, 0x24, 0x46, 0xe6, 0x84, 0xf9, 0x61, 0xf9, 0x48, 0xcd, 0xb0, 0xd6, 0xdd, 0x89, + 0x8a, 0xb5, 0xe9, 0xca, 0x2e, 0x82, 0xa9, 0x86, 0x6a, 0x1a, 0xba, 0x4a, 0xb1, 0x43, 0xb8, 0x8a, + 0xa6, 0xda, 0xd9, 0x51, 0x86, 0x07, 0x5b, 0x73, 0x4c, 0xa9, 0xac, 0xda, 0x70, 0x01, 0xbc, 0x1c, + 0x8c, 0x2a, 0x04, 0x51, 0x26, 0x3e, 0xc6, 0xc4, 0x8f, 0x06, 0x13, 0x1b, 0x88, 0xba, 0xb2, 0x33, + 0x60, 0x42, 0x35, 0x4d, 0xfc, 0xc0, 0x34, 0x08, 0xcd, 0x1e, 0x9a, 0x1b, 0x9e, 0x9f, 0x90, 0x5b, + 0x03, 0x30, 0x07, 0xc6, 0x75, 0x64, 0x35, 0xd9, 0xe4, 0x38, 0x9b, 0x0c, 0xbe, 0xc5, 0x5f, 0x0b, + 0xe0, 0x15, 0xb6, 0x47, 0xf7, 0x7c, 0xc8, 0x50, 0x10, 0x38, 0x29, 0xcf, 0xf9, 0x15, 0x70, 0xcc, + 0xdf, 0x12, 0x45, 0xd5, 0x75, 0x07, 0x11, 0xe2, 0x79, 0xb0, 0x04, 0xbf, 0x7c, 0x96, 0x3f, 0xd2, + 0x54, 0x6b, 0xe6, 0x65, 0x91, 0x4f, 0x88, 0xf2, 0x51, 0x5f, 0x76, 0xd9, 0x1b, 0x89, 0xa7, 0x89, + 0xe1, 0x78, 0x9a, 0xb8, 0x3c, 0xfe, 0xe1, 0xc7, 0xf9, 0xa1, 0x7f, 0x7c, 0x9c, 0x1f, 0x12, 0xef, + 0x00, 0x71, 0x3f, 0x6b, 0x79, 0x30, 0x9d, 0x07, 0xc7, 0x02, 0x40, 0xdf, 0x1e, 0x6f, 0xb7, 0x8f, + 0x6a, 0x21, 0x79, 0xd7, 0x9a, 0x76, 0xfe, 0xeb, 0x21, 0xeb, 0xd2, 0xf3, 0x6f, 0x5b, 0x6f, 0x1f, + 0xfe, 0x31, 0x1b, 0x06, 0xe2, 0x1f, 0xb5, 0xb6, 0xc5, 0xbf, 0x6d, 0x3f, 0x38, 0xff, 0x98, 0xef, + 0xc5, 0x69, 0x70, 0x9a, 0x01, 0x6e, 0xee, 0x38, 0x98, 0x52, 0x13, 0xb1, 0xd4, 0xe8, 0x1f, 0xe0, + 0x3f, 0x0a, 0x3c, 0x45, 0xc6, 0x66, 0xf9, 0x32, 0x79, 0x30, 0x49, 0x4c, 0x95, 0xec, 0x28, 0x35, + 0x44, 0x91, 0xc3, 0x56, 0x18, 0x96, 0x01, 0x1b, 0x7a, 0xc7, 0x1d, 0x81, 0x45, 0x70, 0x22, 0x24, + 0xa0, 0xb0, 0x88, 0x54, 0x2d, 0x0d, 0x31, 0xe7, 0x0c, 0xcb, 0xc7, 0x5b, 0xa2, 0xcb, 0xfe, 0x14, + 0xfc, 0x1e, 0xc8, 0x5a, 0xe8, 0x21, 0x55, 0x1c, 0x64, 0x9b, 0xc8, 0x32, 0xc8, 0x8e, 0xa2, 0xa9, + 0x96, 0xee, 0x92, 0x45, 0xcc, 0x33, 0x93, 0xc5, 0x5c, 0xc1, 0xbb, 0xa1, 0x0b, 0xfe, 0x0d, 0x5d, + 0xd8, 0xf4, 0x6f, 0xe8, 0xd2, 0xb8, 0x9b, 0xe7, 0x9f, 0xfc, 0x35, 0x2f, 0xc8, 0x27, 0x5d, 0x14, + 0xd9, 0x07, 0x29, 0xfb, 0x18, 0xe2, 0x45, 0xb0, 0xc0, 0x28, 0xc9, 0xa8, 0x6a, 0x10, 0x8a, 0x1c, + 0xa4, 0xb7, 0x32, 0xc8, 0x03, 0xd5, 0xd1, 0x57, 0x90, 0x85, 0x6b, 0x41, 0x0a, 0xbb, 0x0e, 0x2e, + 0xa4, 0x92, 0xe6, 0x1e, 0x39, 0x09, 0xc6, 0x74, 0x36, 0xc2, 0x6e, 0x85, 0x09, 0x99, 0x7f, 0x89, + 0xb3, 0xfc, 0x9e, 0xf3, 0xb2, 0x13, 0xd2, 0x59, 0x32, 0xaa, 0xac, 0x04, 0xcb, 0x7c, 0x20, 0x80, + 0x33, 0x1d, 0x04, 0x38, 0xf2, 0x7d, 0x70, 0xc4, 0x0e, 0xcf, 0xf9, 0xf7, 0x4e, 0x31, 0x55, 0x92, + 0x8c, 0xc0, 0xf2, 0xcb, 0x30, 0x86, 0x27, 0x5a, 0xe0, 0x70, 0x44, 0x0c, 0xce, 0x00, 0x1e, 0xe0, + 0x2b, 0xed, 0x31, 0xbf, 0x02, 0x67, 0x01, 0xf0, 0x13, 0x6c, 0x65, 0x85, 0x6d, 0xe8, 0x88, 0x1c, + 0x1a, 0xe9, 0x1a, 0xd4, 0xe2, 0x1e, 0x90, 0x18, 0xe5, 0x65, 0xd3, 0x5c, 0x57, 0x0d, 0x87, 0xdc, + 0x53, 0xcd, 0x32, 0xb6, 0xdc, 0xb8, 0x2c, 0x45, 0x2f, 0x8c, 0xca, 0xca, 0x41, 0x95, 0x1b, 0xbf, + 0x14, 0xc0, 0x62, 0xfa, 0x35, 0xb9, 0xe7, 0xf7, 0xc0, 0xcb, 0xb6, 0x6a, 0x38, 0x4a, 0x43, 0x35, + 0xdd, 0x1a, 0x8d, 0x1d, 0x28, 0xee, 0xfc, 0xd5, 0x74, 0xce, 0x57, 0x0d, 0xa7, 0xb5, 0x50, 0x70, + 0x60, 0xad, 0x56, 0x28, 0x1d, 0xb1, 0x23, 0x22, 0xe2, 0x7f, 0x05, 0xf0, 0x4a, 0x57, 0x2d, 0xb8, + 0xda, 0xe9, 0x94, 0x97, 0xa6, 0xbf, 0x7c, 0x96, 0x3f, 0xe5, 0x65, 0x9d, 0xb8, 0x44, 0x42, 0xfa, + 0x5d, 0xed, 0x98, 0xbd, 0x42, 0x38, 0x71, 0x89, 0x84, 0x34, 0x76, 0x15, 0xbc, 0x14, 0x48, 0xed, + 0xa2, 0x26, 0x3f, 0xad, 0x33, 0x85, 0x56, 0x85, 0x5a, 0xf0, 0x2a, 0xd4, 0xc2, 0x7a, 0x7d, 0xdb, + 0x34, 0xb4, 0x35, 0xd4, 0x94, 0x83, 0x0d, 0x5b, 0x43, 0x4d, 0x71, 0x0a, 0x40, 0xef, 0x10, 0xa8, + 0x8e, 0xda, 0x3a, 0x82, 0xf7, 0xc1, 0xf1, 0xc8, 0x28, 0xdf, 0x96, 0x0a, 0x18, 0xb3, 0xd9, 0x08, + 0xaf, 0x16, 0x2e, 0xa4, 0xdc, 0x0b, 0x57, 0x85, 0x9f, 0x00, 0x0e, 0x20, 0x9a, 0x3c, 0x25, 0x44, + 0x22, 0xe0, 0x8e, 0x4d, 0x91, 0x5e, 0xb1, 0x82, 0x44, 0x7b, 0x60, 0x35, 0xef, 0x1e, 0x4f, 0x29, + 0xdd, 0x56, 0x0b, 0x0a, 0xcd, 0x33, 0xe1, 0xc2, 0x21, 0xb6, 0x9d, 0xc8, 0xcf, 0x34, 0xd3, 0xa1, + 0x0a, 0x22, 0xba, 0xbf, 0x88, 0x88, 0xf7, 0xc1, 0x6c, 0x64, 0xc9, 0x83, 0x27, 0xf5, 0x74, 0x04, + 0xcc, 0x75, 0x58, 0x22, 0xf8, 0x2b, 0xb1, 0x4c, 0x10, 0xd2, 0x97, 0x09, 0xf1, 0xf8, 0xca, 0xf4, + 0x18, 0x5f, 0x70, 0x0a, 0x8c, 0xb2, 0xc2, 0x8b, 0x45, 0xe6, 0xb0, 0xec, 0x7d, 0xc0, 0x35, 0x30, + 0xa9, 0x23, 0xa2, 0x39, 0x86, 0xed, 0x96, 0xbc, 0xac, 0x7c, 0x9b, 0x2c, 0x9e, 0x2d, 0xf0, 0xc7, + 0x92, 0xff, 0x1c, 0xe2, 0xcf, 0xa3, 0xc2, 0x4a, 0x4b, 0x94, 0x47, 0x51, 0x58, 0x1b, 0x96, 0xc1, + 0x31, 0x6c, 0x23, 0x87, 0xd5, 0x6c, 0x3e, 0xc5, 0x51, 0x46, 0x31, 0xfb, 0xc5, 0x27, 0x97, 0xa6, + 0x38, 0x28, 0x67, 0xb4, 0x41, 0x1d, 0xc3, 0xaa, 0xca, 0x47, 0x7d, 0x0d, 0x9f, 0xe8, 0x49, 0x30, + 0xf6, 0x03, 0xd5, 0x30, 0x91, 0xce, 0xca, 0xbd, 0x71, 0x99, 0x7f, 0xc1, 0xcb, 0x60, 0xcc, 0x7d, + 0x05, 0xd5, 0x49, 0xf6, 0xd0, 0x9c, 0x30, 0x7f, 0xa4, 0x28, 0x76, 0x32, 0xb2, 0x84, 0x2d, 0x7d, + 0x83, 0x49, 0xca, 0x5c, 0x03, 0x6e, 0x82, 0xc0, 0x9f, 0x0a, 0xc5, 0xbb, 0xc8, 0x22, 0xd9, 0x71, + 0x66, 0xd7, 0x05, 0x97, 0xc4, 0x9f, 0x9f, 0xe5, 0x4f, 0x78, 0x58, 0x44, 0xdf, 0x2d, 0x18, 0x58, + 0xaa, 0xa9, 0x74, 0xa7, 0x50, 0xb1, 0xe8, 0x17, 0x9f, 0x5c, 0x02, 0x7c, 0x91, 0x8a, 0x45, 0xd9, + 0x9d, 0xc1, 0x30, 0x36, 0x19, 0x04, 0x7c, 0x15, 0x04, 0x23, 0x5e, 0x4d, 0x9b, 0x9d, 0x60, 0xae, + 0x3d, 0xec, 0x8f, 0xb2, 0x6a, 0x16, 0x7e, 0x03, 0x9c, 0xe2, 0xe1, 0x89, 0x88, 0xa2, 0xd5, 0x1d, + 0xc7, 0xad, 0xb2, 0x91, 0x8d, 0xb5, 0x9d, 0x2c, 0x60, 0x0c, 0x4f, 0x04, 0xd3, 0x65, 0x6f, 0xf6, + 0xba, 0x3b, 0xe9, 0xbe, 0x7a, 0xf2, 0x1d, 0x03, 0x97, 0x9f, 0x0f, 0x04, 0x40, 0x2b, 0xf4, 0x79, + 0x5e, 0xbe, 0x9e, 0x2a, 0x17, 0x74, 0x8b, 0x57, 0x39, 0x04, 0x2c, 0xee, 0xf1, 0x9b, 0x23, 0xfa, + 0x1c, 0x0c, 0x64, 0x6f, 0xaa, 0x64, 0x13, 0xf3, 0x2f, 0xbf, 0x7c, 0x1a, 0x30, 0xde, 0x45, 0x15, + 0x2c, 0xf5, 0xb0, 0x24, 0x77, 0xc7, 0x45, 0x00, 0x83, 0x43, 0xe2, 0x9f, 0x68, 0x3f, 0x47, 0x04, + 0x69, 0xde, 0xbb, 0xe2, 0x74, 0x56, 0xfd, 0x5e, 0x48, 0xae, 0xa7, 0xcb, 0xb8, 0x56, 0x33, 0x08, + 0x31, 0xb0, 0x25, 0x87, 0x18, 0x7d, 0xb5, 0xef, 0x00, 0xb1, 0x0a, 0x2e, 0xa6, 0xb3, 0x96, 0x3b, + 0xe3, 0x0d, 0x30, 0xe2, 0xf8, 0x5d, 0x83, 0x89, 0xd2, 0x59, 0x1e, 0xe9, 0xd3, 0xed, 0x91, 0x7e, + 0x0b, 0x55, 0x55, 0xad, 0xb9, 0x82, 0x34, 0x99, 0x29, 0x88, 0x22, 0xcf, 0x66, 0x25, 0x13, 0x6b, + 0xbb, 0xe4, 0xae, 0x45, 0x0d, 0xf3, 0x36, 0x7a, 0xe8, 0x45, 0xa5, 0x7f, 0x2f, 0x6d, 0xf1, 0x87, + 0x43, 0xb2, 0x0c, 0xb7, 0xe0, 0x75, 0x70, 0x6a, 0x9b, 0xcd, 0x2b, 0x75, 0x57, 0x40, 0x61, 0xa5, + 0xad, 0x17, 0xf9, 0x02, 0x2b, 0x99, 0xa6, 0xb6, 0x13, 0xd4, 0xc5, 0x65, 0x5e, 0xe6, 0x97, 0x03, + 0xee, 0xab, 0x0e, 0xae, 0x95, 0xf9, 0x6b, 0xd4, 0xdf, 0x8d, 0xc8, 0x8b, 0x55, 0x88, 0xbe, 0x58, + 0xc5, 0x55, 0x70, 0x76, 0x5f, 0x88, 0x56, 0x0d, 0x1f, 0xf6, 0xb9, 0x10, 0xf7, 0x79, 0xf1, 0xa3, + 0x73, 0x60, 0x94, 0x01, 0xc1, 0x5f, 0x65, 0xc0, 0x54, 0x52, 0xb7, 0x06, 0x5e, 0xeb, 0xfd, 0xb8, + 0x45, 0xfb, 0x48, 0xb9, 0xe5, 0x01, 0x10, 0x3c, 0x22, 0xe2, 0x4f, 0x84, 0x1f, 0x3e, 0xfd, 0xfb, + 0xcf, 0x32, 0x3f, 0x12, 0xb6, 0x4a, 0xf0, 0x5a, 0xf7, 0x6e, 0x62, 0x40, 0x9a, 0xb7, 0x84, 0xa4, + 0x47, 0x21, 0x37, 0x3c, 0x86, 0x57, 0xfa, 0x42, 0xe0, 0x47, 0xe3, 0x31, 0x7c, 0x2a, 0xf0, 0xa2, + 0x25, 0x7a, 0x76, 0xe1, 0xd5, 0xde, 0x79, 0x46, 0xba, 0x52, 0xb9, 0x6b, 0xfd, 0x03, 0x70, 0x3f, + 0xbd, 0xc5, 0xdc, 0xf4, 0x1a, 0x5c, 0xea, 0x81, 0xa1, 0xd7, 0xaf, 0x82, 0x1f, 0x64, 0x40, 0xb6, + 0x43, 0x13, 0x8a, 0xc0, 0x5b, 0x7d, 0x5a, 0x96, 0xd8, 0xef, 0xca, 0xbd, 0x73, 0x40, 0x68, 0x9c, + 0xf4, 0x4d, 0x46, 0xba, 0xb7, 0xc0, 0xe0, 0x42, 0x2e, 0xa0, 0x12, 0xb4, 0x92, 0xe0, 0xff, 0x04, + 0x70, 0x2a, 0xb9, 0xa7, 0x45, 0xe0, 0x5a, 0xdf, 0x46, 0xb7, 0x37, 0xcf, 0x72, 0xb7, 0x0e, 0x06, + 0x8c, 0x3b, 0xe0, 0x06, 0x73, 0xc0, 0x32, 0xbc, 0xda, 0x87, 0x03, 0xb0, 0x1d, 0xe2, 0xff, 0x6f, + 0xbf, 0x25, 0x90, 0xd8, 0x81, 0x81, 0xab, 0xe9, 0xad, 0xde, 0xaf, 0xe1, 0x94, 0xbb, 0x31, 0x30, + 0x0e, 0x27, 0xbe, 0xcc, 0x88, 0x7f, 0x13, 0xbe, 0x95, 0xe2, 0x07, 0x86, 0xa0, 0xdb, 0x16, 0x79, + 0xec, 0x24, 0x50, 0x0e, 0x57, 0xd8, 0x7d, 0x51, 0x4e, 0xe8, 0x31, 0xf5, 0x45, 0x39, 0xa9, 0xfb, + 0xd3, 0x1f, 0xe5, 0xc8, 0xbd, 0x0d, 0xff, 0x20, 0xf0, 0xa7, 0x58, 0xa4, 0xf1, 0x03, 0xdf, 0x4e, + 0x6f, 0x62, 0x52, 0x3f, 0x29, 0x77, 0xb5, 0x6f, 0x7d, 0x4e, 0xed, 0x4d, 0x46, 0xad, 0x08, 0x17, + 0xbb, 0x53, 0xa3, 0x1c, 0xc0, 0xfb, 0xe1, 0x00, 0xfe, 0x3c, 0xc3, 0xef, 0xc3, 0xfd, 0x3b, 0x39, + 0xf0, 0x4e, 0x7a, 0x13, 0x53, 0x75, 0x90, 0x72, 0xeb, 0x07, 0x07, 0xc8, 0x9d, 0xb0, 0xc6, 0x9c, + 0x70, 0x1d, 0x96, 0xbb, 0x3b, 0xc1, 0x09, 0x10, 0x5b, 0x31, 0xed, 0x30, 0x4c, 0xc5, 0xeb, 0x4c, + 0xc1, 0x7f, 0xb6, 0x75, 0x9e, 0xa2, 0x6d, 0x10, 0x02, 0x7b, 0xb8, 0x9b, 0x3b, 0xb4, 0xb7, 0x72, + 0xa5, 0x41, 0x20, 0x38, 0xeb, 0x12, 0x63, 0xfd, 0x2d, 0x78, 0xb9, 0x3b, 0x6b, 0xbf, 0xb1, 0xa5, + 0xc4, 0x2f, 0xb0, 0x4f, 0x33, 0xfc, 0x57, 0x94, 0x14, 0xfd, 0x1f, 0xb8, 0x99, 0xde, 0xe8, 0xf4, + 0x2d, 0xac, 0xdc, 0xdd, 0x03, 0x46, 0xe5, 0xde, 0xa9, 0x32, 0xef, 0xa8, 0x5b, 0x4b, 0x50, 0xea, + 0xee, 0x9f, 0x68, 0xa9, 0x73, 0x31, 0x8d, 0x42, 0x50, 0xd9, 0xfc, 0x46, 0x00, 0x93, 0xa1, 0x76, + 0x0c, 0x7c, 0xa3, 0x87, 0xad, 0x0d, 0xb7, 0x75, 0x72, 0x6f, 0xf6, 0xae, 0xc8, 0xb9, 0x2e, 0x32, + 0xae, 0x0b, 0x70, 0x3e, 0x45, 0x24, 0x78, 0x46, 0xfe, 0x25, 0x13, 0x2b, 0x86, 0x93, 0x7b, 0x2e, + 0xbd, 0x1c, 0xfe, 0x54, 0xbd, 0xa2, 0x5e, 0x0e, 0x7f, 0xba, 0x76, 0x90, 0xf8, 0xc4, 0x2b, 0x73, + 0x3f, 0x12, 0xb6, 0x52, 0x25, 0x00, 0xec, 0x02, 0x29, 0x86, 0xa5, 0xb4, 0x9e, 0xb2, 0xb1, 0xed, + 0xbf, 0xd6, 0x2f, 0x48, 0x10, 0x12, 0xbf, 0xcd, 0x80, 0xf3, 0xa9, 0x1f, 0xaa, 0xf0, 0x6e, 0xbf, + 0x15, 0xec, 0xbe, 0x6f, 0xed, 0xdc, 0xbd, 0x83, 0x86, 0xe5, 0xfe, 0xde, 0x62, 0xee, 0xde, 0x84, + 0x72, 0xcf, 0xe5, 0xb2, 0x62, 0x23, 0xa7, 0xe5, 0x31, 0xe9, 0x51, 0xfc, 0x65, 0xfc, 0x18, 0xfe, + 0x74, 0x18, 0x9c, 0x4b, 0xf3, 0x9e, 0x85, 0xeb, 0x03, 0x54, 0x43, 0x89, 0x0f, 0xf9, 0xdc, 0xbb, + 0x07, 0x88, 0xc8, 0x3d, 0xf5, 0xa9, 0x17, 0x99, 0xbf, 0x17, 0xb6, 0xde, 0x87, 0xef, 0xf5, 0xe2, + 0xad, 0x00, 0x4e, 0x71, 0xdf, 0xde, 0xd1, 0xf0, 0x4c, 0x72, 0xdb, 0x77, 0x06, 0x02, 0xf7, 0xc3, + 0x36, 0x09, 0xf9, 0x77, 0x99, 0x58, 0x71, 0x1f, 0xca, 0x0d, 0xe5, 0x41, 0x7a, 0x4a, 0xbe, 0xdb, + 0x57, 0x06, 0x03, 0xe9, 0x2f, 0x07, 0x04, 0xce, 0x18, 0x24, 0x07, 0x24, 0x83, 0x04, 0x39, 0xe0, + 0x5f, 0x02, 0xff, 0x1d, 0x31, 0xa9, 0x1b, 0x02, 0x7b, 0xe8, 0xc7, 0xed, 0xd3, 0x71, 0xc9, 0xad, + 0x0e, 0x0a, 0xd3, 0x7b, 0x81, 0xdc, 0xa1, 0x79, 0x03, 0xff, 0x23, 0xc4, 0xfe, 0x3d, 0x24, 0xda, + 0x5e, 0x81, 0x37, 0x7a, 0xdf, 0xe8, 0xc4, 0x1e, 0x4f, 0xee, 0xe6, 0xe0, 0x40, 0xbd, 0xb3, 0x0e, + 0x05, 0x87, 0xf4, 0x28, 0x68, 0x31, 0x3d, 0x2e, 0x7d, 0xfb, 0xb3, 0xe7, 0xb3, 0xc2, 0xe7, 0xcf, + 0x67, 0x85, 0xbf, 0x3d, 0x9f, 0x15, 0x9e, 0xbc, 0x98, 0x1d, 0xfa, 0xfc, 0xc5, 0xec, 0xd0, 0x9f, + 0x5e, 0xcc, 0x0e, 0x6d, 0x5d, 0xa9, 0x1a, 0x74, 0xa7, 0xbe, 0x5d, 0xd0, 0x70, 0x8d, 0xff, 0x9b, + 0x51, 0x68, 0x95, 0x4b, 0xc1, 0x2a, 0x8d, 0xd7, 0xa5, 0x87, 0xb1, 0x32, 0xbd, 0x69, 0x23, 0xb2, + 0x3d, 0xc6, 0x7e, 0xca, 0x7d, 0xed, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0xaf, 0x3d, 0x3f, 0x3a, + 0x06, 0x26, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3791,6 +3861,63 @@ 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] = 0x50 + } + if m.ProviderPower != 0 { + i = encodeVarintQuery(dAtA, i, uint64(m.ProviderPower)) + i-- + dAtA[i] = 0x48 + } + { + size := m.ProviderTokens.Size() + i -= size + if _, err := m.ProviderTokens.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x42 + if m.Status != 0 { + i = encodeVarintQuery(dAtA, i, uint64(m.Status)) + i-- + dAtA[i] = 0x38 + } + if m.Jailed { + i-- + if m.Jailed { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x30 + } + if len(m.OperatorAddress) > 0 { + i -= len(m.OperatorAddress) + copy(dAtA[i:], m.OperatorAddress) + i = encodeVarintQuery(dAtA, i, uint64(len(m.OperatorAddress))) + i-- + dAtA[i] = 0x2a + } + { + size, err := m.Description.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 if m.Power != 0 { i = encodeVarintQuery(dAtA, i, uint64(m.Power)) i-- @@ -4554,6 +4681,26 @@ func (m *QueryConsumerValidatorsValidator) Size() (n int) { if m.Power != 0 { n += 1 + sovQuery(uint64(m.Power)) } + l = m.Description.Size() + n += 1 + l + sovQuery(uint64(l)) + l = len(m.OperatorAddress) + 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 } @@ -7475,6 +7622,183 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { break } } + case 4: + 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 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field OperatorAddress", 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.OperatorAddress = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 6: + 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 7: + 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 8: + 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 9: + 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 10: + 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:]) From ae7ff6f80a8f812a2f36ce741b465b910c6b32d3 Mon Sep 17 00:00:00 2001 From: Simon Noetzlin Date: Thu, 22 Aug 2024 12:39:43 +0200 Subject: [PATCH 2/5] nit --- proto/interchain_security/ccv/provider/v1/query.proto | 1 - 1 file changed, 1 deletion(-) diff --git a/proto/interchain_security/ccv/provider/v1/query.proto b/proto/interchain_security/ccv/provider/v1/query.proto index fad978c404..15b7a92326 100644 --- a/proto/interchain_security/ccv/provider/v1/query.proto +++ b/proto/interchain_security/ccv/provider/v1/query.proto @@ -370,7 +370,6 @@ message QueryConsumerValidatorsValidator { int64 provider_power = 11; // validates_current_epoch defines whether the validator has to validate for the current epoch or not bool validates_current_epoch = 12; - } message QueryConsumerValidatorsResponse { From 7e8b127b999cb6bd57a061b31837ea1b6387087c Mon Sep 17 00:00:00 2001 From: Simon Noetzlin Date: Thu, 22 Aug 2024 15:13:12 +0200 Subject: [PATCH 3/5] nits --- .../ccv/provider/v1/query.proto | 14 +- x/ccv/provider/keeper/grpc_query.go | 32 +- x/ccv/provider/keeper/grpc_query_test.go | 48 +-- x/ccv/provider/types/query.pb.go | 331 +++++++++--------- 4 files changed, 213 insertions(+), 212 deletions(-) diff --git a/proto/interchain_security/ccv/provider/v1/query.proto b/proto/interchain_security/ccv/provider/v1/query.proto index 15b7a92326..e9ad050d21 100644 --- a/proto/interchain_security/ccv/provider/v1/query.proto +++ b/proto/interchain_security/ccv/provider/v1/query.proto @@ -347,19 +347,19 @@ message QueryConsumerValidatorsValidator { (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 = 9 [ + (gogoproto.customtype) = "cosmossdk.io/math.LegacyDec", + (gogoproto.nullable) = false + ]; // description defines the description terms for the validator cosmos.staking.v1beta1.Description description = 5 [(gogoproto.nullable) = false]; - // operator_address defines the address of the validator's operator - string operator_address = 6 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + // provider_operator_address defines the address of the validator's operator + string provider_operator_address = 6 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // jailed defined whether the validator has been jailed from bonded status or not. bool jailed = 7; // status is the validator status (bonded/unbonding/unbonded). cosmos.staking.v1beta1.BondStatus status = 8; - // The rate to charge delegators on the provider chain, as a fraction - string provider_commission_rate = 9 [ - (gogoproto.customtype) = "cosmossdk.io/math.LegacyDec", - (gogoproto.nullable) = false - ]; // provider_tokens defines the delegated tokens (incl. self-delegation). string provider_tokens = 10 [ (cosmos_proto.scalar) = "cosmos.Int", diff --git a/x/ccv/provider/keeper/grpc_query.go b/x/ccv/provider/keeper/grpc_query.go index 0793838e95..62ee3061ec 100644 --- a/x/ccv/provider/keeper/grpc_query.go +++ b/x/ccv/provider/keeper/grpc_query.go @@ -345,11 +345,11 @@ func (k Keeper) QueryConsumerValidators(goCtx context.Context, req *types.QueryC return nil, status.Error(codes.Internal, err.Error()) } - for _, consVal := range consumerValSet { - provAddr := types.ProviderConsAddress{Address: consVal.ProviderConsAddr} + for _, consumerVal := range consumerValSet { + provAddr := types.ProviderConsAddress{Address: consumerVal.ProviderConsAddr} consAddr := provAddr.ToSdkConsAddr() - provVal, err := k.stakingKeeper.GetValidatorByConsAddr(ctx, consAddr) + providerVal, err := k.stakingKeeper.GetValidatorByConsAddr(ctx, consAddr) if err != nil { k.Logger(ctx).Error("cannot find consensus address for provider address:%s", provAddr.String()) continue @@ -364,22 +364,22 @@ func (k Keeper) QueryConsumerValidators(goCtx context.Context, req *types.QueryC consumerRate, found := k.GetConsumerCommissionRate(ctx, consumerId, types.NewProviderConsAddress(consAddr)) if !found { - consumerRate = provVal.Commission.Rate + consumerRate = providerVal.Commission.Rate } validators = append(validators, &types.QueryConsumerValidatorsValidator{ - ProviderAddress: sdk.ConsAddress(consVal.ProviderConsAddr).String(), - ConsumerKey: consVal.PublicKey, - Power: consVal.Power, - ConsumerCommissionRate: consumerRate, - Description: provVal.Description, - OperatorAddress: provVal.OperatorAddress, - Jailed: provVal.Jailed, - Status: provVal.Status, - ProviderTokens: provVal.Tokens, - ProviderCommissionRate: provVal.Commission.Rate, - ProviderPower: provVal.GetConsensusPower(k.stakingKeeper.PowerReduction(ctx)), - ValidatesCurrentEpoch: hasToValidate, + ProviderAddress: sdk.ConsAddress(consumerVal.ProviderConsAddr).String(), + ConsumerKey: consumerVal.PublicKey, + Power: 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 710a01ab7c..4fa05b0604 100644 --- a/x/ccv/provider/keeper/grpc_query_test.go +++ b/x/ccv/provider/keeper/grpc_query_test.go @@ -140,32 +140,32 @@ func TestQueryConsumerValidators(t *testing.T) { expectedResponse := types.QueryConsumerValidatorsResponse{ Validators: []*types.QueryConsumerValidatorsValidator{ { - ProviderAddress: providerAddr1.String(), - ConsumerKey: &pk1, - Power: 1, - ConsumerCommissionRate: val1ConsComRate, - Description: val1.Description, - OperatorAddress: val1.OperatorAddress, - Jailed: val1.Jailed, - Status: val1.Status, - ProviderTokens: val1.Tokens, - ProviderCommissionRate: val1.Commission.Rate, - ProviderPower: 1, - ValidatesCurrentEpoch: true, + ProviderAddress: providerAddr1.String(), + ConsumerKey: &pk1, + Power: 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, - Power: 2, - ConsumerCommissionRate: val2.Commission.Rate, - Description: val2.Description, - OperatorAddress: val2.OperatorAddress, - Jailed: val2.Jailed, - Status: val2.Status, - ProviderTokens: val2.Tokens, - ProviderCommissionRate: val2.Commission.Rate, - ProviderPower: 2, - ValidatesCurrentEpoch: true, + ProviderAddress: providerAddr2.String(), + ConsumerKey: &pk2, + Power: 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, }, }, } diff --git a/x/ccv/provider/types/query.pb.go b/x/ccv/provider/types/query.pb.go index fabdf9f5da..05628a5284 100644 --- a/x/ccv/provider/types/query.pb.go +++ b/x/ccv/provider/types/query.pb.go @@ -1417,20 +1417,21 @@ type QueryConsumerValidatorsValidator struct { Power int64 `protobuf:"varint,3,opt,name=power,proto3" json:"power,omitempty"` // The rate to charge delegators on the consumer chain, as a fraction ConsumerCommissionRate cosmossdk_io_math.LegacyDec `protobuf:"bytes,4,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,9,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,5,opt,name=description,proto3" json:"description"` - // operator_address defines the address of the validator's operator - OperatorAddress string `protobuf:"bytes,6,opt,name=operator_address,json=operatorAddress,proto3" json:"operator_address,omitempty"` + // provider_operator_address defines the address of the validator's operator + ProviderOperatorAddress string `protobuf:"bytes,6,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,7,opt,name=jailed,proto3" json:"jailed,omitempty"` // status is the validator status (bonded/unbonding/unbonded). Status types1.BondStatus `protobuf:"varint,8,opt,name=status,proto3,enum=cosmos.staking.v1beta1.BondStatus" json:"status,omitempty"` // provider_tokens defines the delegated tokens (incl. self-delegation). - ProviderCommissionRate cosmossdk_io_math.LegacyDec `protobuf:"bytes,9,opt,name=provider_commission_rate,json=providerCommissionRate,proto3,customtype=cosmossdk.io/math.LegacyDec" json:"provider_commission_rate"` - ProviderTokens cosmossdk_io_math.Int `protobuf:"bytes,10,opt,name=provider_tokens,json=providerTokens,proto3,customtype=cosmossdk.io/math.Int" json:"provider_tokens"` + ProviderTokens cosmossdk_io_math.Int `protobuf:"bytes,10,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,11,opt,name=provider_power,json=providerPower,proto3" json:"provider_power,omitempty"` - // validates_current_epoch definines whether the validator has to validate for the current epoch or not + // validates_current_epoch defines whether the validator has to validate for the current epoch or not ValidatesCurrentEpoch bool `protobuf:"varint,12,opt,name=validates_current_epoch,json=validatesCurrentEpoch,proto3" json:"validates_current_epoch,omitempty"` } @@ -1495,9 +1496,9 @@ func (m *QueryConsumerValidatorsValidator) GetDescription() types1.Description { return types1.Description{} } -func (m *QueryConsumerValidatorsValidator) GetOperatorAddress() string { +func (m *QueryConsumerValidatorsValidator) GetProviderOperatorAddress() string { if m != nil { - return m.OperatorAddress + return m.ProviderOperatorAddress } return "" } @@ -1998,157 +1999,157 @@ func init() { } var fileDescriptor_422512d7b7586cd7 = []byte{ - // 2391 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, 0x13, 0x27, 0x5b, 0x71, 0x92, 0xc9, 0xd8, 0xf1, 0x78, 0x3b, - 0x59, 0x98, 0x38, 0xc9, 0xb4, 0x3d, 0xab, 0x65, 0x77, 0x03, 0xd9, 0xc4, 0x33, 0x8e, 0x93, 0x91, - 0xb3, 0x89, 0xb7, 0xed, 0x04, 0xe4, 0x25, 0x74, 0xda, 0xdd, 0xc5, 0xb8, 0x71, 0x4f, 0x77, 0xbb, - 0xab, 0x66, 0x92, 0x51, 0x94, 0xc3, 0x82, 0x84, 0x76, 0x39, 0xa0, 0x20, 0x84, 0xc4, 0x71, 0x2f, - 0x48, 0x1c, 0x38, 0xa1, 0x15, 0x88, 0xdb, 0x1e, 0xf7, 0xc6, 0xb2, 0x7b, 0x41, 0x20, 0x05, 0x94, - 0x70, 0x40, 0x48, 0x48, 0x28, 0x70, 0x45, 0x42, 0x5d, 0x5d, 0xfd, 0x3b, 0x3d, 0x9e, 0x9e, 0x19, - 0x1f, 0xb8, 0xb9, 0xab, 0xde, 0xfb, 0xea, 0xbd, 0x57, 0xef, 0xbd, 0x7a, 0xef, 0x8d, 0x81, 0xa0, - 0x19, 0x04, 0xd9, 0xca, 0x8e, 0xac, 0x19, 0x12, 0x46, 0x4a, 0xc3, 0xd6, 0x48, 0x4b, 0x50, 0x94, - 0xa6, 0x60, 0xd9, 0x66, 0x53, 0x53, 0x91, 0x2d, 0x34, 0x97, 0x84, 0xbd, 0x06, 0xb2, 0x5b, 0x45, - 0xcb, 0x36, 0x89, 0x09, 0xcf, 0x26, 0x30, 0x14, 0x15, 0xa5, 0x59, 0xf4, 0x18, 0x8a, 0xcd, 0xa5, - 0xdc, 0x6c, 0xcd, 0x34, 0x6b, 0x3a, 0x12, 0x64, 0x4b, 0x13, 0x64, 0xc3, 0x30, 0x89, 0x4c, 0x34, - 0xd3, 0xc0, 0x2e, 0x44, 0x6e, 0xba, 0x66, 0xd6, 0x4c, 0xfa, 0xa7, 0xe0, 0xfc, 0xc5, 0x56, 0xf3, - 0x8c, 0x87, 0x7e, 0x6d, 0x37, 0xbe, 0x2b, 0x10, 0xad, 0x8e, 0x30, 0x91, 0xeb, 0x16, 0x23, 0x28, - 0xa5, 0x11, 0xd5, 0x97, 0xc2, 0xe5, 0x59, 0xec, 0xc4, 0xd3, 0x5c, 0x12, 0xf0, 0x8e, 0x6c, 0x23, - 0x55, 0x52, 0x4c, 0x03, 0x37, 0xea, 0x3e, 0xc7, 0x6b, 0xfb, 0x70, 0x3c, 0xd4, 0x6c, 0xc4, 0xc8, - 0x66, 0x09, 0x32, 0x54, 0x64, 0xd7, 0x35, 0x83, 0x08, 0x8a, 0xdd, 0xb2, 0x88, 0x29, 0xec, 0xa2, - 0x96, 0xa7, 0xe1, 0x69, 0xc5, 0xc4, 0x75, 0x13, 0x4b, 0xae, 0x92, 0xee, 0x07, 0xdb, 0x3a, 0xe7, - 0x7e, 0x09, 0x98, 0xc8, 0xbb, 0x9a, 0x51, 0x13, 0x9a, 0x4b, 0xdb, 0x88, 0xc8, 0x4b, 0xde, 0xb7, - 0x4b, 0xc5, 0xdf, 0x07, 0x33, 0xef, 0x39, 0x46, 0xaf, 0x30, 0xe1, 0x6e, 0x20, 0x03, 0x61, 0x0d, - 0x8b, 0x68, 0xaf, 0x81, 0x30, 0x81, 0x67, 0xc0, 0xb8, 0x2b, 0xa1, 0xa6, 0x66, 0xb9, 0x79, 0xae, - 0x30, 0x51, 0xce, 0x64, 0x39, 0xf1, 0x10, 0x5d, 0xab, 0xaa, 0x30, 0x0f, 0x26, 0x3d, 0xad, 0x1c, - 0x8a, 0x8c, 0x43, 0x21, 0x02, 0x6f, 0xa9, 0xaa, 0xf2, 0x8f, 0xc1, 0x6c, 0x32, 0x3c, 0xb6, 0x4c, - 0x03, 0x23, 0xf8, 0x3e, 0x38, 0x52, 0x73, 0x97, 0x24, 0x4c, 0x64, 0x82, 0xe8, 0x21, 0x93, 0xa5, - 0xc5, 0x62, 0xa7, 0xcb, 0x6f, 0x2e, 0x15, 0x63, 0x58, 0x1b, 0x0e, 0x5f, 0x79, 0xe4, 0xb3, 0x67, - 0xf9, 0x21, 0xf1, 0x70, 0x2d, 0xb4, 0xc6, 0xcf, 0x82, 0x5c, 0xe4, 0xf0, 0x8a, 0x03, 0xe7, 0xa9, - 0xc6, 0xcb, 0x31, 0xcd, 0xbd, 0x5d, 0x26, 0x59, 0x19, 0x8c, 0xd1, 0xe3, 0x71, 0x96, 0x9b, 0x1f, - 0x2e, 0x4c, 0x96, 0x16, 0x8a, 0x29, 0xfc, 0xb1, 0x48, 0x41, 0x44, 0xc6, 0xc9, 0x9f, 0x07, 0x5f, - 0x6d, 0x3f, 0x62, 0x83, 0xc8, 0x36, 0x59, 0xb7, 0x4d, 0xcb, 0xc4, 0xb2, 0xee, 0x4b, 0xf3, 0x21, - 0x07, 0x0a, 0xdd, 0x69, 0x99, 0x6c, 0xdf, 0x06, 0x13, 0x96, 0xb7, 0xc8, 0x2c, 0xf6, 0x4e, 0x3a, - 0xf1, 0x18, 0xf8, 0xb2, 0xaa, 0x6a, 0x4e, 0xa0, 0x04, 0xd0, 0x01, 0x20, 0x5f, 0x00, 0x5f, 0x49, - 0x92, 0xc4, 0xb4, 0xda, 0x84, 0xfe, 0x21, 0x97, 0xac, 0x60, 0x84, 0xd4, 0xbf, 0xe9, 0x36, 0x99, - 0xaf, 0xf4, 0x24, 0xb3, 0x88, 0xea, 0x66, 0x53, 0xd6, 0x13, 0x45, 0xfe, 0x79, 0x06, 0x8c, 0xd2, - 0xb3, 0xe1, 0xe9, 0xb8, 0xc3, 0x06, 0xce, 0x3a, 0x03, 0x26, 0x14, 0x5d, 0x43, 0x06, 0x09, 0x5c, - 0x75, 0xdc, 0x5d, 0xa8, 0xaa, 0xf0, 0x38, 0x18, 0x25, 0xa6, 0x25, 0xdd, 0xce, 0x0e, 0xcf, 0x73, - 0x85, 0x23, 0xe2, 0x08, 0x31, 0xad, 0xdb, 0x70, 0x01, 0xc0, 0xba, 0x66, 0x48, 0x96, 0xf9, 0xd0, - 0xf1, 0x6f, 0x43, 0x72, 0x29, 0x46, 0xe6, 0xb9, 0xc2, 0xb0, 0x38, 0x55, 0xd7, 0x8c, 0x75, 0x67, - 0xa3, 0x6a, 0x6c, 0x3a, 0xb4, 0x8b, 0x60, 0xba, 0x29, 0xeb, 0x9a, 0x2a, 0x13, 0xd3, 0xc6, 0x8c, - 0x45, 0x91, 0xad, 0xec, 0x28, 0xc5, 0x83, 0xc1, 0x1e, 0x65, 0xaa, 0xc8, 0x16, 0x5c, 0x00, 0xaf, - 0xf8, 0xab, 0x12, 0x46, 0x84, 0x92, 0x8f, 0x51, 0xf2, 0xa3, 0xfe, 0xc6, 0x06, 0x22, 0x0e, 0xed, - 0x2c, 0x98, 0x90, 0x75, 0xdd, 0x7c, 0xa8, 0x6b, 0x98, 0x64, 0x0f, 0xcd, 0x0f, 0x17, 0x26, 0xc4, - 0x60, 0x01, 0xe6, 0xc0, 0xb8, 0x8a, 0x8c, 0x16, 0xdd, 0x1c, 0xa7, 0x9b, 0xfe, 0x37, 0xff, 0x2b, - 0x0e, 0xbc, 0x4a, 0xef, 0xe8, 0x9e, 0x07, 0x19, 0x72, 0x02, 0x3b, 0x65, 0x9c, 0x5f, 0x01, 0xc7, - 0xbc, 0x2b, 0x91, 0x64, 0x55, 0xb5, 0x11, 0xc6, 0xae, 0x05, 0xcb, 0xf0, 0xe5, 0xb3, 0xfc, 0x54, - 0x4b, 0xae, 0xeb, 0x97, 0x79, 0xb6, 0xc1, 0x8b, 0x47, 0x3d, 0xda, 0x65, 0x77, 0x25, 0x9e, 0x26, - 0x86, 0xe3, 0x69, 0xe2, 0xf2, 0xf8, 0x87, 0x1f, 0xe7, 0x87, 0xfe, 0xfe, 0x71, 0x7e, 0x88, 0xbf, - 0x03, 0xf8, 0xfd, 0xa4, 0x65, 0xce, 0x74, 0x1e, 0x1c, 0xf3, 0x01, 0x3d, 0x79, 0xdc, 0xdb, 0x3e, - 0xaa, 0x84, 0xe8, 0x1d, 0x69, 0xda, 0xf5, 0x5f, 0x0f, 0x49, 0x97, 0x5e, 0xff, 0xb6, 0xf3, 0xf6, - 0xd1, 0x3f, 0x26, 0xc3, 0x40, 0xfa, 0x47, 0xa5, 0x0d, 0xf4, 0x6f, 0xbb, 0x0f, 0xa6, 0x7f, 0xcc, - 0xf6, 0xfc, 0x0c, 0x38, 0x4d, 0x01, 0x37, 0x77, 0x6c, 0x93, 0x10, 0x1d, 0xd1, 0xd4, 0xe8, 0x05, - 0xf0, 0x1f, 0x38, 0x96, 0x22, 0x63, 0xbb, 0xec, 0x98, 0x3c, 0x98, 0xc4, 0xba, 0x8c, 0x77, 0xa4, - 0x3a, 0x22, 0xc8, 0xa6, 0x27, 0x0c, 0x8b, 0x80, 0x2e, 0xbd, 0xeb, 0xac, 0xc0, 0x12, 0x38, 0x11, - 0x22, 0x90, 0xa8, 0x47, 0xca, 0x86, 0x82, 0xa8, 0x71, 0x86, 0xc5, 0xe3, 0x01, 0xe9, 0xb2, 0xb7, - 0x05, 0xbf, 0x03, 0xb2, 0x06, 0x7a, 0x44, 0x24, 0x1b, 0x59, 0x3a, 0x32, 0x34, 0xbc, 0x23, 0x29, - 0xb2, 0xa1, 0x3a, 0xca, 0x22, 0x6a, 0x99, 0xc9, 0x52, 0xae, 0xe8, 0xbe, 0xd0, 0x45, 0xef, 0x85, - 0x2e, 0x6e, 0x7a, 0x2f, 0x74, 0x79, 0xdc, 0xc9, 0xf3, 0x4f, 0xff, 0x92, 0xe7, 0xc4, 0x93, 0x0e, - 0x8a, 0xe8, 0x81, 0x54, 0x3c, 0x0c, 0xfe, 0x22, 0x58, 0xa0, 0x2a, 0x89, 0xa8, 0xa6, 0x61, 0x82, - 0x6c, 0xa4, 0x06, 0x19, 0xe4, 0xa1, 0x6c, 0xab, 0x2b, 0xc8, 0x30, 0xeb, 0x7e, 0x0a, 0xbb, 0x0e, - 0x2e, 0xa4, 0xa2, 0x66, 0x16, 0x39, 0x09, 0xc6, 0x54, 0xba, 0x42, 0x5f, 0x85, 0x09, 0x91, 0x7d, - 0xf1, 0x73, 0xec, 0x9d, 0x73, 0xb3, 0x13, 0x52, 0x69, 0x32, 0xaa, 0xae, 0xf8, 0xc7, 0x7c, 0xc0, - 0x81, 0x33, 0x1d, 0x08, 0x18, 0xf2, 0x03, 0x30, 0x65, 0x85, 0xf7, 0xbc, 0x77, 0xa7, 0x94, 0x2a, - 0x49, 0x46, 0x60, 0xd9, 0x63, 0x18, 0xc3, 0xe3, 0x0d, 0x70, 0x24, 0x42, 0x06, 0x67, 0x01, 0x73, - 0xf0, 0x95, 0x76, 0x9f, 0x5f, 0x81, 0x73, 0x00, 0x78, 0x09, 0xb6, 0xba, 0x42, 0x2f, 0x74, 0x44, - 0x0c, 0xad, 0x74, 0x75, 0x6a, 0x7e, 0x0f, 0x08, 0x54, 0xe5, 0x65, 0x5d, 0x5f, 0x97, 0x35, 0x1b, - 0xdf, 0x93, 0xf5, 0x8a, 0x69, 0x38, 0x7e, 0x59, 0x8e, 0x3e, 0x18, 0xd5, 0x95, 0x83, 0x2a, 0x37, - 0x7e, 0xc1, 0x81, 0xc5, 0xf4, 0x67, 0x32, 0xcb, 0xef, 0x81, 0x57, 0x2c, 0x59, 0xb3, 0xa5, 0xa6, - 0xac, 0x3b, 0x35, 0x1a, 0x0d, 0x28, 0x66, 0xfc, 0xd5, 0x74, 0xc6, 0x97, 0x35, 0x3b, 0x38, 0xc8, - 0x0f, 0x58, 0x23, 0x70, 0xa5, 0x29, 0x2b, 0x42, 0xc2, 0xff, 0x87, 0x03, 0xaf, 0x76, 0xe5, 0x82, - 0xab, 0x9d, 0xa2, 0xbc, 0x3c, 0xf3, 0xf2, 0x59, 0xfe, 0x94, 0x9b, 0x75, 0xe2, 0x14, 0x09, 0xe9, - 0x77, 0xb5, 0x63, 0xf6, 0x0a, 0xe1, 0xc4, 0x29, 0x12, 0xd2, 0xd8, 0x55, 0x70, 0xd8, 0xa7, 0xda, - 0x45, 0x2d, 0x16, 0xad, 0xb3, 0xc5, 0xa0, 0x42, 0x2d, 0xba, 0x15, 0x6a, 0x71, 0xbd, 0xb1, 0xad, - 0x6b, 0xca, 0x1a, 0x6a, 0x89, 0xfe, 0x85, 0xad, 0xa1, 0x16, 0x3f, 0x0d, 0xa0, 0x1b, 0x04, 0xb2, - 0x2d, 0x07, 0x21, 0xf8, 0x00, 0x1c, 0x8f, 0xac, 0xb2, 0x6b, 0xa9, 0x82, 0x31, 0x8b, 0xae, 0xb0, - 0x6a, 0xe1, 0x42, 0xca, 0xbb, 0x70, 0x58, 0x58, 0x04, 0x30, 0x00, 0x5e, 0x67, 0x29, 0x21, 0xe2, - 0x01, 0x77, 0x2c, 0x82, 0xd4, 0xaa, 0xe1, 0x27, 0xda, 0x03, 0xab, 0x79, 0xf7, 0x58, 0x4a, 0xe9, - 0x76, 0x9a, 0x5f, 0x68, 0x9e, 0x09, 0x17, 0x0e, 0xb1, 0xeb, 0x44, 0x5e, 0xa6, 0x99, 0x09, 0x55, - 0x10, 0xd1, 0xfb, 0x45, 0x98, 0x7f, 0x00, 0xe6, 0x22, 0x47, 0x1e, 0xbc, 0x52, 0x3f, 0x19, 0x03, - 0xf3, 0x1d, 0x8e, 0xf0, 0xff, 0x4a, 0x2c, 0x13, 0xb8, 0xf4, 0x65, 0x42, 0xdc, 0xbf, 0x32, 0x3d, - 0xfa, 0x17, 0x9c, 0x06, 0xa3, 0xb4, 0xf0, 0xa2, 0x9e, 0x39, 0x2c, 0xba, 0x1f, 0xf0, 0x3e, 0xc8, - 0xfa, 0xb0, 0x8a, 0x59, 0xaf, 0x6b, 0x18, 0x6b, 0xa6, 0x21, 0xd9, 0xce, 0x83, 0x33, 0x42, 0xa5, - 0x3b, 0xeb, 0x78, 0xcb, 0x9f, 0x9e, 0xe5, 0x67, 0xdc, 0x96, 0x09, 0xab, 0xbb, 0x45, 0xcd, 0x14, - 0xea, 0x32, 0xd9, 0x29, 0xde, 0x42, 0x35, 0x59, 0x69, 0xad, 0x20, 0x45, 0x3c, 0xe9, 0x81, 0x54, - 0x7c, 0x0c, 0x51, 0x26, 0x08, 0xae, 0x81, 0x49, 0x15, 0x61, 0xc5, 0xd6, 0x2c, 0xa7, 0xa2, 0xa6, - 0xf5, 0xde, 0x64, 0xe9, 0x6c, 0x91, 0xf5, 0x62, 0x5e, 0xb7, 0xc5, 0xba, 0xaf, 0xe2, 0x4a, 0x40, - 0xca, 0x9c, 0x34, 0xcc, 0x0d, 0x2b, 0xe0, 0x98, 0x69, 0x21, 0x9b, 0x96, 0x84, 0x9e, 0x05, 0xc7, - 0xa8, 0x8c, 0xd9, 0x2f, 0x3e, 0xb9, 0x34, 0xcd, 0x40, 0x99, 0xc1, 0x36, 0x88, 0xad, 0x19, 0x35, - 0xf1, 0xa8, 0xc7, 0xe1, 0xd9, 0xf1, 0x24, 0x18, 0xfb, 0x9e, 0xac, 0xe9, 0x48, 0xcd, 0x1e, 0x9a, - 0xe7, 0x0a, 0xe3, 0x22, 0xfb, 0x82, 0x97, 0xc1, 0x98, 0xd3, 0x64, 0x35, 0x70, 0x76, 0x7c, 0x9e, - 0x2b, 0x4c, 0x95, 0xf8, 0x4e, 0x42, 0x96, 0x4d, 0x43, 0xdd, 0xa0, 0x94, 0x22, 0xe3, 0x70, 0x8c, - 0xe8, 0x5f, 0x6d, 0xdc, 0x88, 0x13, 0x3d, 0x18, 0xd1, 0x03, 0x89, 0x19, 0x71, 0x13, 0xf8, 0xde, - 0x20, 0x11, 0x73, 0x17, 0x19, 0x38, 0x0b, 0x28, 0xea, 0x05, 0x86, 0x7a, 0xa2, 0x1d, 0xb5, 0x6a, - 0x90, 0x2f, 0x3e, 0xb9, 0x04, 0x98, 0x0e, 0x55, 0x83, 0xd0, 0x17, 0x8f, 0x62, 0x6c, 0x52, 0x08, - 0xf8, 0x1a, 0xf0, 0x57, 0xdc, 0x8a, 0x3c, 0x3b, 0x49, 0x1d, 0xe3, 0x88, 0xb7, 0x4a, 0x6b, 0x71, - 0xf8, 0x35, 0x70, 0x8a, 0x05, 0x17, 0xc2, 0x92, 0xd2, 0xb0, 0x6d, 0xa7, 0x47, 0x40, 0x96, 0xa9, - 0xec, 0x64, 0x0f, 0x53, 0x03, 0x9e, 0xf0, 0xb7, 0x2b, 0xee, 0xee, 0x75, 0x67, 0xd3, 0xe9, 0xd9, - 0xf2, 0x1d, 0xc3, 0x8e, 0x45, 0x37, 0x02, 0x20, 0x08, 0x5c, 0xf6, 0xaa, 0x5c, 0x4f, 0x95, 0xc9, - 0xba, 0x45, 0x9b, 0x18, 0x02, 0xe6, 0xf7, 0xd8, 0xbb, 0x17, 0x6d, 0x66, 0x7d, 0xda, 0x9b, 0x32, - 0xde, 0x34, 0xd9, 0x97, 0x57, 0xfc, 0x0d, 0x18, 0xad, 0xbc, 0x0c, 0x96, 0x7a, 0x38, 0x92, 0x99, - 0xe3, 0x22, 0x80, 0x41, 0x2c, 0xb2, 0x7c, 0xe4, 0x65, 0x38, 0xff, 0x91, 0x72, 0x1f, 0x68, 0x95, - 0xd6, 0xee, 0x17, 0x92, 0xbb, 0x81, 0xa8, 0xfb, 0xfc, 0x7f, 0x74, 0x31, 0x7c, 0x0d, 0x5c, 0x4c, - 0x27, 0x2d, 0x33, 0xc6, 0x9b, 0x60, 0xc4, 0xf6, 0x66, 0x1e, 0x29, 0xe3, 0x87, 0x32, 0xf0, 0x3c, - 0xcb, 0xc5, 0x65, 0xdd, 0x54, 0x76, 0xf1, 0x5d, 0x83, 0x68, 0xfa, 0x6d, 0xf4, 0xc8, 0xf5, 0x4a, - 0xef, 0x55, 0xdd, 0x62, 0x6d, 0x4f, 0x32, 0x0d, 0x93, 0xe0, 0x0d, 0x70, 0x6a, 0x9b, 0xee, 0x4b, - 0x0d, 0x87, 0x40, 0xa2, 0x85, 0xb9, 0xeb, 0xf9, 0x1c, 0x2d, 0xf8, 0xa6, 0xb7, 0x13, 0xd8, 0xf9, - 0x65, 0xd6, 0xa4, 0x54, 0x7c, 0xdd, 0x57, 0x6d, 0xb3, 0x5e, 0x61, 0xbd, 0xb4, 0x77, 0x1b, 0x91, - 0x7e, 0x9b, 0x8b, 0xf6, 0xdb, 0xfc, 0x2a, 0x38, 0xbb, 0x2f, 0x44, 0xd0, 0x81, 0x84, 0x6d, 0xce, - 0xc5, 0x6d, 0x5e, 0xfa, 0xe8, 0x1c, 0x18, 0xa5, 0x40, 0xf0, 0x97, 0x19, 0x30, 0x9d, 0x34, 0x6b, - 0x82, 0xd7, 0x7a, 0x0f, 0xb7, 0xe8, 0x14, 0x2c, 0xb7, 0x3c, 0x00, 0x82, 0xab, 0x08, 0xff, 0x23, - 0xee, 0xfb, 0x5f, 0xfe, 0xed, 0xa7, 0x99, 0x1f, 0x70, 0x5b, 0x65, 0x78, 0xad, 0xfb, 0x2c, 0xd4, - 0x57, 0x9a, 0x0d, 0xb4, 0x84, 0xc7, 0x21, 0x33, 0x3c, 0x81, 0x57, 0xfa, 0x42, 0x60, 0xa1, 0xf1, - 0x04, 0x7e, 0xc9, 0xb1, 0x92, 0x2b, 0x1a, 0xbb, 0xf0, 0x6a, 0xef, 0x7a, 0x46, 0x66, 0x6a, 0xb9, - 0x6b, 0xfd, 0x03, 0x30, 0x3b, 0xbd, 0x4d, 0xcd, 0xf4, 0x3a, 0x5c, 0xea, 0x41, 0x43, 0x77, 0xda, - 0x06, 0x3f, 0xc8, 0x80, 0x6c, 0x87, 0x11, 0x1a, 0x86, 0xb7, 0xfa, 0x94, 0x2c, 0x71, 0x5a, 0x97, - 0x7b, 0xf7, 0x80, 0xd0, 0x98, 0xd2, 0x37, 0xa9, 0xd2, 0xbd, 0x39, 0x06, 0x23, 0x72, 0x00, 0x25, - 0x7f, 0x10, 0x06, 0xff, 0xcb, 0x81, 0x53, 0xc9, 0x13, 0x39, 0x0c, 0xd7, 0xfa, 0x16, 0xba, 0x7d, - 0xf4, 0x97, 0xbb, 0x75, 0x30, 0x60, 0xcc, 0x00, 0x37, 0xa8, 0x01, 0x96, 0xe1, 0xd5, 0x3e, 0x0c, - 0x60, 0x5a, 0x21, 0xfd, 0xff, 0xe5, 0x0d, 0x34, 0x12, 0xe7, 0x47, 0x70, 0x35, 0xbd, 0xd4, 0xfb, - 0x8d, 0xcb, 0x72, 0x37, 0x06, 0xc6, 0x61, 0x8a, 0x2f, 0x53, 0xc5, 0xbf, 0x0e, 0xdf, 0x4e, 0xf1, - 0xf3, 0x88, 0x3f, 0x2b, 0x8c, 0xb4, 0x6a, 0x09, 0x2a, 0x87, 0xfb, 0x83, 0xbe, 0x54, 0x4e, 0x98, - 0x90, 0xf5, 0xa5, 0x72, 0xd2, 0xec, 0xaa, 0x3f, 0x95, 0x23, 0xef, 0x36, 0xfc, 0x3d, 0xc7, 0x1a, - 0xc9, 0xc8, 0xd8, 0x0a, 0xbe, 0x93, 0x5e, 0xc4, 0xa4, 0x69, 0x58, 0xee, 0x6a, 0xdf, 0xfc, 0x4c, - 0xb5, 0xb7, 0xa8, 0x6a, 0x25, 0xb8, 0xd8, 0x5d, 0x35, 0xc2, 0x00, 0xdc, 0x9f, 0x3d, 0xe0, 0xcf, - 0x32, 0xec, 0x3d, 0xdc, 0x7f, 0x0e, 0x05, 0xef, 0xa4, 0x17, 0x31, 0xd5, 0xfc, 0x2b, 0xb7, 0x7e, - 0x70, 0x80, 0xcc, 0x08, 0x6b, 0xd4, 0x08, 0xd7, 0x61, 0xa5, 0xbb, 0x11, 0x6c, 0x1f, 0x31, 0xf0, - 0x69, 0x9b, 0x62, 0x4a, 0xee, 0x5c, 0x0d, 0xfe, 0xa3, 0x6d, 0x6e, 0x16, 0x1d, 0xe2, 0x60, 0xd8, - 0xc3, 0xdb, 0xdc, 0x61, 0x38, 0x97, 0x2b, 0x0f, 0x02, 0xc1, 0xb4, 0x2e, 0x53, 0xad, 0xbf, 0x01, - 0x2f, 0x77, 0xd7, 0xda, 0x1b, 0xcb, 0x49, 0xf1, 0x07, 0xec, 0xd3, 0x0c, 0xfb, 0x0d, 0x28, 0xc5, - 0xf4, 0x0a, 0x6e, 0xa6, 0x17, 0x3a, 0xfd, 0x00, 0x2e, 0x77, 0xf7, 0x80, 0x51, 0x99, 0x75, 0x6a, - 0xd4, 0x3a, 0xf2, 0xd6, 0x12, 0x14, 0xba, 0xdb, 0x27, 0x5a, 0xea, 0x5c, 0x4c, 0xc3, 0xe0, 0x57, - 0x36, 0xbf, 0xe6, 0xc0, 0x64, 0x68, 0x98, 0x04, 0xdf, 0xec, 0xe1, 0x6a, 0xc3, 0x43, 0xa9, 0xdc, - 0x5b, 0xbd, 0x33, 0x32, 0x5d, 0x17, 0xa9, 0xae, 0x0b, 0xb0, 0x90, 0xc2, 0x13, 0x5c, 0x21, 0xff, - 0x9c, 0x89, 0x15, 0xc3, 0xc9, 0x13, 0xa3, 0x5e, 0x82, 0x3f, 0xd5, 0xa4, 0xab, 0x97, 0xe0, 0x4f, - 0x37, 0xcc, 0xe2, 0x9f, 0xba, 0x65, 0xee, 0x47, 0xdc, 0x56, 0xaa, 0x04, 0x60, 0x3a, 0x40, 0x92, - 0x66, 0x48, 0x41, 0x2b, 0x1b, 0xbb, 0xfe, 0x6b, 0xfd, 0x82, 0xf8, 0x2e, 0xf1, 0x9b, 0x0c, 0x38, - 0x9f, 0xba, 0x51, 0x85, 0x77, 0xfb, 0xad, 0x60, 0xf7, 0xed, 0xb5, 0x73, 0xf7, 0x0e, 0x1a, 0x96, - 0xd9, 0x7b, 0x8b, 0x9a, 0x7b, 0x13, 0x8a, 0x3d, 0x97, 0xcb, 0x92, 0x85, 0xec, 0xc0, 0x62, 0xc2, - 0xe3, 0x78, 0x67, 0xfc, 0x04, 0xfe, 0x78, 0x18, 0x9c, 0x4b, 0xd3, 0xcf, 0xc2, 0xf5, 0x01, 0xaa, - 0xa1, 0xc4, 0x46, 0x3e, 0xf7, 0xde, 0x01, 0x22, 0x32, 0x4b, 0x7d, 0xea, 0x7a, 0xe6, 0xef, 0xb8, - 0xad, 0xfb, 0xf0, 0xfd, 0x5e, 0xac, 0x15, 0x1d, 0x76, 0x45, 0xdd, 0x33, 0xc9, 0x6c, 0xdf, 0x1a, - 0x08, 0xdc, 0x73, 0xdb, 0x24, 0xe4, 0xdf, 0x66, 0x62, 0xc5, 0x7d, 0x28, 0x37, 0x54, 0x06, 0x99, - 0x29, 0x79, 0x66, 0x5f, 0x19, 0x0c, 0xa4, 0xbf, 0x1c, 0xe0, 0x1b, 0x63, 0x90, 0x1c, 0x90, 0x0c, - 0xe2, 0xe7, 0x80, 0x7f, 0x72, 0xec, 0x57, 0xd0, 0xa4, 0x69, 0x08, 0xec, 0x61, 0x1e, 0xb7, 0xcf, - 0xc4, 0x25, 0xb7, 0x3a, 0x28, 0x4c, 0xef, 0x05, 0x72, 0x87, 0xe1, 0x0d, 0xfc, 0x37, 0x17, 0xfb, - 0xe7, 0x96, 0xe8, 0x78, 0x05, 0xde, 0xe8, 0xfd, 0xa2, 0x13, 0x67, 0x3c, 0xb9, 0x9b, 0x83, 0x03, - 0xf5, 0xae, 0x75, 0xc8, 0x39, 0x84, 0xc7, 0xfe, 0x88, 0xe9, 0x49, 0xf9, 0x9b, 0x9f, 0x3d, 0x9f, - 0xe3, 0x3e, 0x7f, 0x3e, 0xc7, 0xfd, 0xf5, 0xf9, 0x1c, 0xf7, 0xf4, 0xc5, 0xdc, 0xd0, 0xe7, 0x2f, - 0xe6, 0x86, 0xfe, 0xf8, 0x62, 0x6e, 0x68, 0xeb, 0x4a, 0x4d, 0x23, 0x3b, 0x8d, 0xed, 0xa2, 0x62, - 0xd6, 0xd9, 0x3f, 0x49, 0x85, 0x4e, 0xb9, 0xe4, 0x9f, 0xd2, 0x7c, 0x43, 0x78, 0x14, 0x2b, 0xd3, - 0x5b, 0x16, 0xc2, 0xdb, 0x63, 0xf4, 0x87, 0xe8, 0xd7, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0x03, - 0x04, 0x31, 0x6e, 0xc4, 0x26, 0x00, 0x00, + // 2396 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4d, 0x6c, 0x1b, 0xc7, + 0x15, 0xd6, 0x52, 0x3f, 0x96, 0x46, 0xb6, 0x9c, 0x8c, 0x65, 0x8b, 0xa6, 0x64, 0x51, 0x59, 0x3b, + 0x2d, 0x2d, 0xdb, 0x5c, 0x89, 0x41, 0x9a, 0xc4, 0xad, 0x63, 0x8b, 0x94, 0x65, 0x13, 0x72, 0x6c, + 0x65, 0x25, 0xbb, 0x85, 0x52, 0x77, 0xbd, 0xda, 0x9d, 0x52, 0x5b, 0x2d, 0x77, 0x57, 0x3b, 0x43, + 0xda, 0x84, 0xe1, 0x43, 0x5a, 0xa0, 0x48, 0x7a, 0x28, 0x0c, 0x14, 0x05, 0x7a, 0x0c, 0x0a, 0x14, + 0xe8, 0xa1, 0xa7, 0x22, 0x68, 0xd1, 0x5b, 0x8e, 0xb9, 0x35, 0x4d, 0x2e, 0x45, 0x0b, 0xb8, 0x85, + 0xdd, 0x43, 0x51, 0xa0, 0x40, 0x91, 0xf6, 0x5a, 0xa0, 0xd8, 0xd9, 0xd9, 0x5f, 0x2e, 0xc5, 0x25, + 0xa9, 0x43, 0x6f, 0xda, 0x99, 0xf7, 0xbe, 0x79, 0xef, 0xcd, 0x7b, 0x6f, 0xde, 0x7b, 0x14, 0x10, + 0x34, 0x83, 0x20, 0x5b, 0xd9, 0x95, 0x35, 0x43, 0xc2, 0x48, 0x69, 0xd8, 0x1a, 0x69, 0x09, 0x8a, + 0xd2, 0x14, 0x2c, 0xdb, 0x6c, 0x6a, 0x2a, 0xb2, 0x85, 0xe6, 0xb2, 0xb0, 0xdf, 0x40, 0x76, 0xab, + 0x68, 0xd9, 0x26, 0x31, 0xe1, 0xd9, 0x04, 0x86, 0xa2, 0xa2, 0x34, 0x8b, 0x1e, 0x43, 0xb1, 0xb9, + 0x9c, 0x9b, 0xab, 0x99, 0x66, 0x4d, 0x47, 0x82, 0x6c, 0x69, 0x82, 0x6c, 0x18, 0x26, 0x91, 0x89, + 0x66, 0x1a, 0xd8, 0x85, 0xc8, 0x4d, 0xd7, 0xcc, 0x9a, 0x49, 0xff, 0x14, 0x9c, 0xbf, 0xd8, 0x6a, + 0x9e, 0xf1, 0xd0, 0xaf, 0x9d, 0xc6, 0x77, 0x05, 0xa2, 0xd5, 0x11, 0x26, 0x72, 0xdd, 0x62, 0x04, + 0xa5, 0x34, 0xa2, 0xfa, 0x52, 0xb8, 0x3c, 0x4b, 0x9d, 0x78, 0x9a, 0xcb, 0x02, 0xde, 0x95, 0x6d, + 0xa4, 0x4a, 0x8a, 0x69, 0xe0, 0x46, 0xdd, 0xe7, 0x78, 0xf5, 0x00, 0x8e, 0x87, 0x9a, 0x8d, 0x18, + 0xd9, 0x1c, 0x41, 0x86, 0x8a, 0xec, 0xba, 0x66, 0x10, 0x41, 0xb1, 0x5b, 0x16, 0x31, 0x85, 0x3d, + 0xd4, 0xf2, 0x34, 0x3c, 0xad, 0x98, 0xb8, 0x6e, 0x62, 0xc9, 0x55, 0xd2, 0xfd, 0x60, 0x5b, 0xe7, + 0xdc, 0x2f, 0x01, 0x13, 0x79, 0x4f, 0x33, 0x6a, 0x42, 0x73, 0x79, 0x07, 0x11, 0x79, 0xd9, 0xfb, + 0x76, 0xa9, 0xf8, 0xfb, 0x60, 0xf6, 0x5d, 0xc7, 0xe8, 0x15, 0x26, 0xdc, 0x0d, 0x64, 0x20, 0xac, + 0x61, 0x11, 0xed, 0x37, 0x10, 0x26, 0xf0, 0x0c, 0x18, 0x77, 0x25, 0xd4, 0xd4, 0x2c, 0xb7, 0xc0, + 0x15, 0x26, 0xca, 0x99, 0x2c, 0x27, 0x1e, 0xa1, 0x6b, 0x55, 0x15, 0xe6, 0xc1, 0xa4, 0xa7, 0x95, + 0x43, 0x91, 0x71, 0x28, 0x44, 0xe0, 0x2d, 0x55, 0x55, 0xfe, 0x31, 0x98, 0x4b, 0x86, 0xc7, 0x96, + 0x69, 0x60, 0x04, 0xdf, 0x03, 0xc7, 0x6a, 0xee, 0x92, 0x84, 0x89, 0x4c, 0x10, 0x3d, 0x64, 0xb2, + 0xb4, 0x54, 0xec, 0x74, 0xf9, 0xcd, 0xe5, 0x62, 0x0c, 0x6b, 0xd3, 0xe1, 0x2b, 0x8f, 0x7c, 0xfa, + 0x2c, 0x3f, 0x24, 0x1e, 0xad, 0x85, 0xd6, 0xf8, 0x39, 0x90, 0x8b, 0x1c, 0x5e, 0x71, 0xe0, 0x3c, + 0xd5, 0x78, 0x39, 0xa6, 0xb9, 0xb7, 0xcb, 0x24, 0x2b, 0x83, 0x31, 0x7a, 0x3c, 0xce, 0x72, 0x0b, + 0xc3, 0x85, 0xc9, 0xd2, 0x62, 0x31, 0x85, 0x3f, 0x16, 0x29, 0x88, 0xc8, 0x38, 0xf9, 0xf3, 0xe0, + 0xab, 0xed, 0x47, 0x6c, 0x12, 0xd9, 0x26, 0x1b, 0xb6, 0x69, 0x99, 0x58, 0xd6, 0x7d, 0x69, 0x3e, + 0xe0, 0x40, 0xa1, 0x3b, 0x2d, 0x93, 0xed, 0xdb, 0x60, 0xc2, 0xf2, 0x16, 0x99, 0xc5, 0xde, 0x4e, + 0x27, 0x1e, 0x03, 0x5f, 0x51, 0x55, 0xcd, 0x09, 0x94, 0x00, 0x3a, 0x00, 0xe4, 0x0b, 0xe0, 0x2b, + 0x49, 0x92, 0x98, 0x56, 0x9b, 0xd0, 0x3f, 0xe4, 0x92, 0x15, 0x8c, 0x90, 0xfa, 0x37, 0xdd, 0x26, + 0xf3, 0x95, 0x9e, 0x64, 0x16, 0x51, 0xdd, 0x6c, 0xca, 0x7a, 0xa2, 0xc8, 0x3f, 0xcb, 0x80, 0x51, + 0x7a, 0x36, 0x3c, 0x1d, 0x77, 0xd8, 0xc0, 0x59, 0x67, 0xc1, 0x84, 0xa2, 0x6b, 0xc8, 0x20, 0x81, + 0xab, 0x8e, 0xbb, 0x0b, 0x55, 0x15, 0x9e, 0x00, 0xa3, 0xc4, 0xb4, 0xa4, 0xdb, 0xd9, 0xe1, 0x05, + 0xae, 0x70, 0x4c, 0x1c, 0x21, 0xa6, 0x75, 0x1b, 0x2e, 0x02, 0x58, 0xd7, 0x0c, 0xc9, 0x32, 0x1f, + 0x3a, 0xfe, 0x6d, 0x48, 0x2e, 0xc5, 0xc8, 0x02, 0x57, 0x18, 0x16, 0xa7, 0xea, 0x9a, 0xb1, 0xe1, + 0x6c, 0x54, 0x8d, 0x2d, 0x87, 0x76, 0x09, 0x4c, 0x37, 0x65, 0x5d, 0x53, 0x65, 0x62, 0xda, 0x98, + 0xb1, 0x28, 0xb2, 0x95, 0x1d, 0xa5, 0x78, 0x30, 0xd8, 0xa3, 0x4c, 0x15, 0xd9, 0x82, 0x8b, 0xe0, + 0x65, 0x7f, 0x55, 0xc2, 0x88, 0x50, 0xf2, 0x31, 0x4a, 0x7e, 0xdc, 0xdf, 0xd8, 0x44, 0xc4, 0xa1, + 0x9d, 0x03, 0x13, 0xb2, 0xae, 0x9b, 0x0f, 0x75, 0x0d, 0x93, 0xec, 0x91, 0x85, 0xe1, 0xc2, 0x84, + 0x18, 0x2c, 0xc0, 0x1c, 0x18, 0x57, 0x91, 0xd1, 0xa2, 0x9b, 0xe3, 0x74, 0xd3, 0xff, 0xe6, 0x7f, + 0xc5, 0x81, 0x57, 0xe8, 0x1d, 0xdd, 0xf3, 0x20, 0x43, 0x4e, 0x60, 0xa7, 0x8c, 0xf3, 0x2b, 0xe0, + 0x25, 0xef, 0x4a, 0x24, 0x59, 0x55, 0x6d, 0x84, 0xb1, 0x6b, 0xc1, 0x32, 0xfc, 0xf2, 0x59, 0x7e, + 0xaa, 0x25, 0xd7, 0xf5, 0xcb, 0x3c, 0xdb, 0xe0, 0xc5, 0xe3, 0x1e, 0xed, 0x8a, 0xbb, 0x12, 0x4f, + 0x13, 0xc3, 0xf1, 0x34, 0x71, 0x79, 0xfc, 0x83, 0x8f, 0xf2, 0x43, 0x7f, 0xff, 0x28, 0x3f, 0xc4, + 0xdf, 0x01, 0xfc, 0x41, 0xd2, 0x32, 0x67, 0x3a, 0x0f, 0x5e, 0xf2, 0x01, 0x3d, 0x79, 0xdc, 0xdb, + 0x3e, 0xae, 0x84, 0xe8, 0x1d, 0x69, 0xda, 0xf5, 0xdf, 0x08, 0x49, 0x97, 0x5e, 0xff, 0xb6, 0xf3, + 0x0e, 0xd0, 0x3f, 0x26, 0xc3, 0x40, 0xfa, 0x47, 0xa5, 0x0d, 0xf4, 0x6f, 0xbb, 0x0f, 0xa6, 0x7f, + 0xcc, 0xf6, 0xfc, 0x2c, 0x38, 0x4d, 0x01, 0xb7, 0x76, 0x6d, 0x93, 0x10, 0x1d, 0xd1, 0xd4, 0xe8, + 0x05, 0xf0, 0x1f, 0x38, 0x96, 0x22, 0x63, 0xbb, 0xec, 0x98, 0x3c, 0x98, 0xc4, 0xba, 0x8c, 0x77, + 0xa5, 0x3a, 0x22, 0xc8, 0xa6, 0x27, 0x0c, 0x8b, 0x80, 0x2e, 0xbd, 0xe3, 0xac, 0xc0, 0x12, 0x38, + 0x19, 0x22, 0x90, 0xa8, 0x47, 0xca, 0x86, 0x82, 0xa8, 0x71, 0x86, 0xc5, 0x13, 0x01, 0xe9, 0x8a, + 0xb7, 0x05, 0xbf, 0x03, 0xb2, 0x06, 0x7a, 0x44, 0x24, 0x1b, 0x59, 0x3a, 0x32, 0x34, 0xbc, 0x2b, + 0x29, 0xb2, 0xa1, 0x3a, 0xca, 0x22, 0x6a, 0x99, 0xc9, 0x52, 0xae, 0xe8, 0xbe, 0xd0, 0x45, 0xef, + 0x85, 0x2e, 0x6e, 0x79, 0x2f, 0x74, 0x79, 0xdc, 0xc9, 0xf3, 0x4f, 0xff, 0x92, 0xe7, 0xc4, 0x53, + 0x0e, 0x8a, 0xe8, 0x81, 0x54, 0x3c, 0x0c, 0xfe, 0x22, 0x58, 0xa4, 0x2a, 0x89, 0xa8, 0xa6, 0x61, + 0x82, 0x6c, 0xa4, 0x06, 0x19, 0xe4, 0xa1, 0x6c, 0xab, 0xab, 0xc8, 0x30, 0xeb, 0x7e, 0x0a, 0xbb, + 0x0e, 0x2e, 0xa4, 0xa2, 0x66, 0x16, 0x39, 0x05, 0xc6, 0x54, 0xba, 0x42, 0x5f, 0x85, 0x09, 0x91, + 0x7d, 0xf1, 0xf3, 0xec, 0x9d, 0x73, 0xb3, 0x13, 0x52, 0x69, 0x32, 0xaa, 0xae, 0xfa, 0xc7, 0xbc, + 0xcf, 0x81, 0x33, 0x1d, 0x08, 0x18, 0xf2, 0x03, 0x30, 0x65, 0x85, 0xf7, 0xbc, 0x77, 0xa7, 0x94, + 0x2a, 0x49, 0x46, 0x60, 0xd9, 0x63, 0x18, 0xc3, 0xe3, 0x0d, 0x70, 0x2c, 0x42, 0x06, 0xe7, 0x00, + 0x73, 0xf0, 0xd5, 0x76, 0x9f, 0x5f, 0x85, 0xf3, 0x00, 0x78, 0x09, 0xb6, 0xba, 0x4a, 0x2f, 0x74, + 0x44, 0x0c, 0xad, 0x74, 0x75, 0x6a, 0x7e, 0x1f, 0x08, 0x54, 0xe5, 0x15, 0x5d, 0xdf, 0x90, 0x35, + 0x1b, 0xdf, 0x93, 0xf5, 0x8a, 0x69, 0x38, 0x7e, 0x59, 0x8e, 0x3e, 0x18, 0xd5, 0xd5, 0xc3, 0x2a, + 0x37, 0x7e, 0xc1, 0x81, 0xa5, 0xf4, 0x67, 0x32, 0xcb, 0xef, 0x83, 0x97, 0x2d, 0x59, 0xb3, 0xa5, + 0xa6, 0xac, 0x3b, 0x35, 0x1a, 0x0d, 0x28, 0x66, 0xfc, 0xb5, 0x74, 0xc6, 0x97, 0x35, 0x3b, 0x38, + 0xc8, 0x0f, 0x58, 0x23, 0x70, 0xa5, 0x29, 0x2b, 0x42, 0xc2, 0xff, 0x87, 0x03, 0xaf, 0x74, 0xe5, + 0x82, 0x6b, 0x9d, 0xa2, 0xbc, 0x3c, 0xfb, 0xe5, 0xb3, 0xfc, 0x8c, 0x9b, 0x75, 0xe2, 0x14, 0x09, + 0xe9, 0x77, 0xad, 0x63, 0xf6, 0x0a, 0xe1, 0xc4, 0x29, 0x12, 0xd2, 0xd8, 0x55, 0x70, 0xd4, 0xa7, + 0xda, 0x43, 0x2d, 0x16, 0xad, 0x73, 0xc5, 0xa0, 0x42, 0x2d, 0xba, 0x15, 0x6a, 0x71, 0xa3, 0xb1, + 0xa3, 0x6b, 0xca, 0x3a, 0x6a, 0x89, 0xfe, 0x85, 0xad, 0xa3, 0x16, 0x3f, 0x0d, 0xa0, 0x1b, 0x04, + 0xb2, 0x2d, 0x07, 0x21, 0xf8, 0x00, 0x9c, 0x88, 0xac, 0xb2, 0x6b, 0xa9, 0x82, 0x31, 0x8b, 0xae, + 0xb0, 0x6a, 0xe1, 0x42, 0xca, 0xbb, 0x70, 0x58, 0x58, 0x04, 0x30, 0x00, 0x5e, 0x67, 0x29, 0x21, + 0xe2, 0x01, 0x77, 0x2c, 0x82, 0xd4, 0xaa, 0xe1, 0x27, 0xda, 0x43, 0xab, 0x79, 0xf7, 0x59, 0x4a, + 0xe9, 0x76, 0x9a, 0x5f, 0x68, 0x9e, 0x09, 0x17, 0x0e, 0xb1, 0xeb, 0x44, 0x5e, 0xa6, 0x99, 0x0d, + 0x55, 0x10, 0xd1, 0xfb, 0x45, 0x98, 0x7f, 0x00, 0xe6, 0x23, 0x47, 0x1e, 0xbe, 0x52, 0x3f, 0x1f, + 0x03, 0x0b, 0x1d, 0x8e, 0xf0, 0xff, 0x4a, 0x2c, 0x13, 0xb8, 0xf4, 0x65, 0x42, 0xdc, 0xbf, 0x32, + 0x3d, 0xfa, 0x17, 0x9c, 0x06, 0xa3, 0xb4, 0xf0, 0xa2, 0x9e, 0x39, 0x2c, 0xba, 0x1f, 0xf0, 0x3e, + 0xc8, 0xfa, 0xb0, 0x8a, 0x59, 0xaf, 0x6b, 0x18, 0x6b, 0xa6, 0x21, 0xd9, 0xce, 0x83, 0x33, 0x42, + 0xa5, 0x3b, 0xeb, 0x78, 0xcb, 0x9f, 0x9e, 0xe5, 0x67, 0xdd, 0x96, 0x09, 0xab, 0x7b, 0x45, 0xcd, + 0x14, 0xea, 0x32, 0xd9, 0x2d, 0xde, 0x42, 0x35, 0x59, 0x69, 0xad, 0x22, 0x45, 0x3c, 0xe5, 0x81, + 0x54, 0x7c, 0x0c, 0x51, 0x26, 0xc8, 0x81, 0xf7, 0x95, 0x8e, 0xc3, 0x4f, 0xf4, 0x00, 0xef, 0x81, + 0xc4, 0xe0, 0xd7, 0xc1, 0xa4, 0x8a, 0xb0, 0x62, 0x6b, 0x96, 0x53, 0xb0, 0xd3, 0x72, 0x72, 0xb2, + 0x74, 0xb6, 0xc8, 0x5a, 0x3d, 0xaf, 0x99, 0x63, 0xcd, 0x5d, 0x71, 0x35, 0x20, 0x65, 0x31, 0x10, + 0xe6, 0x86, 0x5b, 0xe0, 0xb4, 0x2f, 0xab, 0x69, 0x21, 0x9b, 0x96, 0x9e, 0xde, 0x4d, 0x8d, 0x51, + 0x61, 0xb3, 0x9f, 0x7f, 0x7c, 0x69, 0x9a, 0xa1, 0xb3, 0x8b, 0xd9, 0x24, 0xb6, 0x66, 0xd4, 0xc4, + 0x19, 0x8f, 0xf5, 0x0e, 0xe3, 0xf4, 0xee, 0xed, 0x14, 0x18, 0xfb, 0x9e, 0xac, 0xe9, 0x48, 0xcd, + 0x1e, 0x59, 0xe0, 0x0a, 0xe3, 0x22, 0xfb, 0x82, 0x97, 0xc1, 0x98, 0xd3, 0xd4, 0x35, 0x70, 0x76, + 0x7c, 0x81, 0x2b, 0x4c, 0x95, 0xf8, 0x4e, 0x52, 0x97, 0x4d, 0x43, 0xdd, 0xa4, 0x94, 0x22, 0xe3, + 0x80, 0x5b, 0xc0, 0x77, 0x0f, 0x89, 0x98, 0x7b, 0xc8, 0xc0, 0x59, 0x40, 0xe5, 0xbb, 0xc0, 0x8c, + 0x79, 0xb2, 0xdd, 0x98, 0x55, 0x83, 0x7c, 0xfe, 0xf1, 0x25, 0xc0, 0x0e, 0xa9, 0x1a, 0x84, 0x3e, + 0x81, 0x14, 0x63, 0x8b, 0x42, 0xc0, 0x57, 0x81, 0xbf, 0xe2, 0x96, 0xe8, 0xd9, 0x49, 0xea, 0x29, + 0xc7, 0xbc, 0x55, 0x5a, 0x9c, 0xc3, 0xaf, 0x81, 0x19, 0x16, 0x6d, 0x08, 0x4b, 0x4a, 0xc3, 0xb6, + 0x9d, 0xa6, 0x01, 0x59, 0xa6, 0xb2, 0x9b, 0x3d, 0x4a, 0x35, 0x3c, 0xe9, 0x6f, 0x57, 0xdc, 0xdd, + 0xeb, 0xce, 0xa6, 0xd3, 0xc4, 0xe5, 0x3b, 0xc6, 0x21, 0x0b, 0x77, 0x04, 0x40, 0x10, 0xc9, 0xec, + 0x99, 0xb9, 0x9e, 0x2a, 0xb5, 0x75, 0x0b, 0x3f, 0x31, 0x04, 0xcc, 0xef, 0xb3, 0x87, 0x30, 0xda, + 0xdd, 0xfa, 0xb4, 0x37, 0x65, 0xbc, 0x65, 0xb2, 0x2f, 0xaf, 0x1a, 0x1c, 0x30, 0x7c, 0x79, 0x19, + 0x2c, 0xf7, 0x70, 0x24, 0x33, 0xc7, 0x45, 0x00, 0x83, 0xe0, 0x64, 0x09, 0xca, 0x4b, 0x79, 0xfe, + 0xab, 0xe5, 0xbe, 0xd8, 0x2a, 0x2d, 0xe6, 0x2f, 0x24, 0xb7, 0x07, 0xd1, 0xa8, 0xf9, 0xff, 0x68, + 0x6b, 0xf8, 0x1a, 0xb8, 0x98, 0x4e, 0x5a, 0x66, 0x8c, 0x37, 0xc0, 0x88, 0xed, 0x0d, 0x41, 0x52, + 0xa6, 0x0d, 0xca, 0xc0, 0xf3, 0x2c, 0x39, 0x97, 0x75, 0x53, 0xd9, 0xc3, 0x77, 0x0d, 0xa2, 0xe9, + 0xb7, 0xd1, 0x23, 0xd7, 0x2b, 0xbd, 0x67, 0x76, 0x9b, 0xf5, 0x41, 0xc9, 0x34, 0x4c, 0x82, 0xd7, + 0xc1, 0xcc, 0x0e, 0xdd, 0x97, 0x1a, 0x0e, 0x81, 0x44, 0x2b, 0x75, 0xd7, 0xf3, 0x39, 0x5a, 0x01, + 0x4e, 0xef, 0x24, 0xb0, 0xf3, 0x2b, 0xac, 0x6b, 0xa9, 0xf8, 0xba, 0xaf, 0xd9, 0x66, 0xbd, 0xc2, + 0x9a, 0x6b, 0xef, 0x36, 0x22, 0x0d, 0x38, 0x17, 0x6d, 0xc0, 0xf9, 0x35, 0x70, 0xf6, 0x40, 0x88, + 0xa0, 0x25, 0x09, 0xdb, 0x9c, 0x8b, 0xdb, 0xbc, 0xf4, 0xe1, 0x39, 0x30, 0x4a, 0x81, 0xe0, 0x2f, + 0x33, 0x60, 0x3a, 0x69, 0xf8, 0x04, 0xaf, 0xf5, 0x1e, 0x6e, 0xd1, 0xb1, 0x58, 0x6e, 0x65, 0x00, + 0x04, 0x57, 0x11, 0xfe, 0x47, 0xdc, 0xf7, 0xbf, 0xf8, 0xdb, 0x4f, 0x32, 0x3f, 0xe0, 0xb6, 0xcb, + 0xf0, 0x5a, 0xf7, 0xe1, 0xa8, 0xaf, 0x34, 0x9b, 0x70, 0x09, 0x8f, 0x43, 0x66, 0x78, 0x02, 0xaf, + 0xf4, 0x85, 0xc0, 0x42, 0xe3, 0x09, 0xfc, 0x82, 0x63, 0x35, 0x58, 0x34, 0x76, 0xe1, 0xd5, 0xde, + 0xf5, 0x8c, 0x0c, 0xd9, 0x72, 0xd7, 0xfa, 0x07, 0x60, 0x76, 0x7a, 0x8b, 0x9a, 0xe9, 0x35, 0xb8, + 0xdc, 0x83, 0x86, 0xee, 0xf8, 0x0d, 0xbe, 0x9f, 0x01, 0xd9, 0x0e, 0x33, 0x35, 0x0c, 0x6f, 0xf5, + 0x29, 0x59, 0xe2, 0xf8, 0x2e, 0xf7, 0xce, 0x21, 0xa1, 0x31, 0xa5, 0x6f, 0x52, 0xa5, 0x7b, 0x73, + 0x0c, 0x46, 0xe4, 0x00, 0x4a, 0xfe, 0x64, 0x0c, 0xfe, 0x97, 0x03, 0x33, 0xc9, 0x23, 0x3a, 0x0c, + 0xd7, 0xfb, 0x16, 0xba, 0x7d, 0x16, 0x98, 0xbb, 0x75, 0x38, 0x60, 0xcc, 0x00, 0x37, 0xa8, 0x01, + 0x56, 0xe0, 0xd5, 0x3e, 0x0c, 0x60, 0x5a, 0x21, 0xfd, 0xff, 0xe5, 0x4d, 0x38, 0x12, 0x07, 0x4a, + 0x70, 0x2d, 0xbd, 0xd4, 0x07, 0xcd, 0xcf, 0x72, 0x37, 0x06, 0xc6, 0x61, 0x8a, 0xaf, 0x50, 0xc5, + 0xbf, 0x0e, 0xdf, 0x4a, 0xf1, 0x7b, 0x89, 0x3f, 0x3c, 0x8c, 0xf4, 0x6e, 0x09, 0x2a, 0x87, 0x1b, + 0x86, 0xbe, 0x54, 0x4e, 0x18, 0x99, 0xf5, 0xa5, 0x72, 0xd2, 0x30, 0xab, 0x3f, 0x95, 0x23, 0xef, + 0x36, 0xfc, 0x3d, 0xc7, 0x3a, 0xcb, 0xc8, 0x1c, 0x0b, 0xbe, 0x9d, 0x5e, 0xc4, 0xa4, 0xf1, 0x58, + 0xee, 0x6a, 0xdf, 0xfc, 0x4c, 0xb5, 0x37, 0xa9, 0x6a, 0x25, 0xb8, 0xd4, 0x5d, 0x35, 0xc2, 0x00, + 0xdc, 0xdf, 0x41, 0xe0, 0x4f, 0x33, 0xec, 0x3d, 0x3c, 0x78, 0x30, 0x05, 0xef, 0xa4, 0x17, 0x31, + 0xd5, 0x40, 0x2c, 0xb7, 0x71, 0x78, 0x80, 0xcc, 0x08, 0xeb, 0xd4, 0x08, 0xd7, 0x61, 0xa5, 0xbb, + 0x11, 0x6c, 0x1f, 0x31, 0xf0, 0x69, 0x9b, 0x62, 0x4a, 0xee, 0xa0, 0x0d, 0xfe, 0xa3, 0x6d, 0x90, + 0x16, 0x9d, 0xea, 0x60, 0xd8, 0xc3, 0xdb, 0xdc, 0x61, 0x5a, 0x97, 0x2b, 0x0f, 0x02, 0xc1, 0xb4, + 0x2e, 0x53, 0xad, 0xbf, 0x01, 0x2f, 0x77, 0xd7, 0xda, 0x9b, 0xd3, 0x49, 0xf1, 0x07, 0xec, 0x93, + 0x0c, 0xfb, 0x51, 0x28, 0xc5, 0x38, 0x0b, 0x6e, 0xa5, 0x17, 0x3a, 0xfd, 0x44, 0x2e, 0x77, 0xf7, + 0x90, 0x51, 0x99, 0x75, 0x6a, 0xd4, 0x3a, 0xf2, 0xf6, 0x32, 0x14, 0xba, 0xdb, 0x27, 0x5a, 0xea, + 0x5c, 0x4c, 0xc3, 0xe0, 0x57, 0x36, 0xbf, 0xe6, 0xc0, 0x64, 0x68, 0xba, 0x04, 0xdf, 0xe8, 0xe1, + 0x6a, 0xc3, 0x53, 0xaa, 0xdc, 0x9b, 0xbd, 0x33, 0x32, 0x5d, 0x97, 0xa8, 0xae, 0x8b, 0xb0, 0x90, + 0xc2, 0x13, 0x5c, 0x21, 0xff, 0x9c, 0x89, 0x15, 0xc3, 0xc9, 0x23, 0xa4, 0x5e, 0x82, 0x3f, 0xd5, + 0xe8, 0xab, 0x97, 0xe0, 0x4f, 0x37, 0xdd, 0xe2, 0x9f, 0xba, 0x65, 0xee, 0x87, 0xdc, 0x76, 0xaa, + 0x04, 0x60, 0x3a, 0x40, 0x92, 0x66, 0x48, 0x41, 0x2b, 0x1b, 0xbb, 0xfe, 0x6b, 0xfd, 0x82, 0xf8, + 0x2e, 0xf1, 0x9b, 0x0c, 0x38, 0x9f, 0xba, 0x51, 0x85, 0x77, 0xfb, 0xad, 0x60, 0x0f, 0xec, 0xb5, + 0x73, 0xf7, 0x0e, 0x1b, 0x96, 0xd9, 0x7b, 0x9b, 0x9a, 0x7b, 0x0b, 0x8a, 0x3d, 0x97, 0xcb, 0x92, + 0x85, 0xec, 0xc0, 0x62, 0xc2, 0xe3, 0x78, 0x67, 0xfc, 0x04, 0xfe, 0x78, 0x18, 0x9c, 0x4b, 0xd3, + 0xcf, 0xc2, 0x8d, 0x01, 0xaa, 0xa1, 0xc4, 0x46, 0x3e, 0xf7, 0xee, 0x21, 0x22, 0x32, 0x4b, 0x7d, + 0xe2, 0x7a, 0xe6, 0xef, 0xb8, 0xed, 0xfb, 0xf0, 0xbd, 0x5e, 0xac, 0x15, 0x9d, 0xf1, 0x45, 0xdd, + 0x33, 0xc9, 0x6c, 0xdf, 0x1a, 0x08, 0xdc, 0x73, 0xdb, 0x24, 0xe4, 0xdf, 0x66, 0x62, 0xc5, 0x7d, + 0x28, 0x37, 0x54, 0x06, 0x99, 0x29, 0x79, 0x66, 0x5f, 0x1d, 0x0c, 0xa4, 0xbf, 0x1c, 0xe0, 0x1b, + 0x63, 0x90, 0x1c, 0x90, 0x0c, 0xe2, 0xe7, 0x80, 0x7f, 0x72, 0xec, 0x67, 0xd1, 0xa4, 0x69, 0x08, + 0xec, 0x61, 0x1e, 0x77, 0xc0, 0xc4, 0x25, 0xb7, 0x36, 0x28, 0x4c, 0xef, 0x05, 0x72, 0x87, 0xe1, + 0x0d, 0xfc, 0x37, 0x17, 0xfb, 0x6f, 0x97, 0xe8, 0x78, 0x05, 0xde, 0xe8, 0xfd, 0xa2, 0x13, 0x67, + 0x3c, 0xb9, 0x9b, 0x83, 0x03, 0xf5, 0xae, 0x75, 0xc8, 0x39, 0x84, 0xc7, 0xfe, 0x88, 0xe9, 0x49, + 0xf9, 0x9b, 0x9f, 0x3e, 0x9f, 0xe7, 0x3e, 0x7b, 0x3e, 0xcf, 0xfd, 0xf5, 0xf9, 0x3c, 0xf7, 0xf4, + 0xc5, 0xfc, 0xd0, 0x67, 0x2f, 0xe6, 0x87, 0xfe, 0xf8, 0x62, 0x7e, 0x68, 0xfb, 0x4a, 0x4d, 0x23, + 0xbb, 0x8d, 0x9d, 0xa2, 0x62, 0xd6, 0xd9, 0x7f, 0x4d, 0x85, 0x4e, 0xb9, 0xe4, 0x9f, 0xd2, 0x7c, + 0x5d, 0x78, 0x14, 0x2b, 0xd3, 0x5b, 0x16, 0xc2, 0x3b, 0x63, 0xf4, 0x97, 0xe9, 0xd7, 0xfe, 0x17, + 0x00, 0x00, 0xff, 0xff, 0x61, 0x21, 0xf7, 0x82, 0xd5, 0x26, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3916,10 +3917,10 @@ func (m *QueryConsumerValidatorsValidator) MarshalToSizedBuffer(dAtA []byte) (in i-- dAtA[i] = 0x38 } - if len(m.OperatorAddress) > 0 { - i -= len(m.OperatorAddress) - copy(dAtA[i:], m.OperatorAddress) - i = encodeVarintQuery(dAtA, i, uint64(len(m.OperatorAddress))) + 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] = 0x32 } @@ -4710,7 +4711,7 @@ func (m *QueryConsumerValidatorsValidator) Size() (n int) { n += 1 + l + sovQuery(uint64(l)) l = m.Description.Size() n += 1 + l + sovQuery(uint64(l)) - l = len(m.OperatorAddress) + l = len(m.ProviderOperatorAddress) if l > 0 { n += 1 + l + sovQuery(uint64(l)) } @@ -7720,7 +7721,7 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 6: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field OperatorAddress", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ProviderOperatorAddress", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -7748,7 +7749,7 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.OperatorAddress = string(dAtA[iNdEx:postIndex]) + m.ProviderOperatorAddress = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 7: if wireType != 0 { From 2900664c91fcd921713e188f55823074da839da3 Mon Sep 17 00:00:00 2001 From: Simon Noetzlin Date: Thu, 22 Aug 2024 15:26:54 +0200 Subject: [PATCH 4/5] fix msg order --- .../ccv/provider/v1/query.proto | 10 +- x/ccv/provider/types/query.pb.go | 414 +++++++++--------- 2 files changed, 212 insertions(+), 212 deletions(-) diff --git a/proto/interchain_security/ccv/provider/v1/query.proto b/proto/interchain_security/ccv/provider/v1/query.proto index e9ad050d21..199c97b3dc 100644 --- a/proto/interchain_security/ccv/provider/v1/query.proto +++ b/proto/interchain_security/ccv/provider/v1/query.proto @@ -348,18 +348,18 @@ message QueryConsumerValidatorsValidator { (gogoproto.nullable) = false ]; // The rate to charge delegators on the provider chain, as a fraction - string provider_commission_rate = 9 [ + string provider_commission_rate = 5 [ (gogoproto.customtype) = "cosmossdk.io/math.LegacyDec", (gogoproto.nullable) = false ]; // description defines the description terms for the validator - cosmos.staking.v1beta1.Description description = 5 [(gogoproto.nullable) = false]; + cosmos.staking.v1beta1.Description description = 6 [(gogoproto.nullable) = false]; // provider_operator_address defines the address of the validator's operator - string provider_operator_address = 6 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + string provider_operator_address = 7 [(cosmos_proto.scalar) = "cosmos.ValidatorAddressString"]; // jailed defined whether the validator has been jailed from bonded status or not. - bool jailed = 7; + bool jailed = 8; // status is the validator status (bonded/unbonding/unbonded). - cosmos.staking.v1beta1.BondStatus status = 8; + cosmos.staking.v1beta1.BondStatus status = 9; // provider_tokens defines the delegated tokens (incl. self-delegation). string provider_tokens = 10 [ (cosmos_proto.scalar) = "cosmos.Int", diff --git a/x/ccv/provider/types/query.pb.go b/x/ccv/provider/types/query.pb.go index 05628a5284..36ae432556 100644 --- a/x/ccv/provider/types/query.pb.go +++ b/x/ccv/provider/types/query.pb.go @@ -1418,15 +1418,15 @@ type QueryConsumerValidatorsValidator struct { // The rate to charge delegators on the consumer chain, as a fraction ConsumerCommissionRate cosmossdk_io_math.LegacyDec `protobuf:"bytes,4,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,9,opt,name=provider_commission_rate,json=providerCommissionRate,proto3,customtype=cosmossdk.io/math.LegacyDec" json:"provider_commission_rate"` + ProviderCommissionRate cosmossdk_io_math.LegacyDec `protobuf:"bytes,5,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,5,opt,name=description,proto3" json:"description"` + Description types1.Description `protobuf:"bytes,6,opt,name=description,proto3" json:"description"` // provider_operator_address defines the address of the validator's operator - ProviderOperatorAddress string `protobuf:"bytes,6,opt,name=provider_operator_address,json=providerOperatorAddress,proto3" json:"provider_operator_address,omitempty"` + ProviderOperatorAddress string `protobuf:"bytes,7,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,7,opt,name=jailed,proto3" json:"jailed,omitempty"` + Jailed bool `protobuf:"varint,8,opt,name=jailed,proto3" json:"jailed,omitempty"` // status is the validator status (bonded/unbonding/unbonded). - Status types1.BondStatus `protobuf:"varint,8,opt,name=status,proto3,enum=cosmos.staking.v1beta1.BondStatus" json:"status,omitempty"` + Status types1.BondStatus `protobuf:"varint,9,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,10,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 @@ -2000,156 +2000,156 @@ func init() { var fileDescriptor_422512d7b7586cd7 = []byte{ // 2396 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4d, 0x6c, 0x1b, 0xc7, - 0x15, 0xd6, 0x52, 0x3f, 0x96, 0x46, 0xb6, 0x9c, 0x8c, 0x65, 0x8b, 0xa6, 0x64, 0x51, 0x59, 0x3b, - 0x2d, 0x2d, 0xdb, 0x5c, 0x89, 0x41, 0x9a, 0xc4, 0xad, 0x63, 0x8b, 0x94, 0x65, 0x13, 0x72, 0x6c, - 0x65, 0x25, 0xbb, 0x85, 0x52, 0x77, 0xbd, 0xda, 0x9d, 0x52, 0x5b, 0x2d, 0x77, 0x57, 0x3b, 0x43, - 0xda, 0x84, 0xe1, 0x43, 0x5a, 0xa0, 0x48, 0x7a, 0x28, 0x0c, 0x14, 0x05, 0x7a, 0x0c, 0x0a, 0x14, - 0xe8, 0xa1, 0xa7, 0x22, 0x68, 0xd1, 0x5b, 0x8e, 0xb9, 0x35, 0x4d, 0x2e, 0x45, 0x0b, 0xb8, 0x85, - 0xdd, 0x43, 0x51, 0xa0, 0x40, 0x91, 0xf6, 0x5a, 0xa0, 0xd8, 0xd9, 0xd9, 0x5f, 0x2e, 0xc5, 0x25, - 0xa9, 0x43, 0x6f, 0xda, 0x99, 0xf7, 0xbe, 0x79, 0xef, 0xcd, 0x7b, 0x6f, 0xde, 0x7b, 0x14, 0x10, - 0x34, 0x83, 0x20, 0x5b, 0xd9, 0x95, 0x35, 0x43, 0xc2, 0x48, 0x69, 0xd8, 0x1a, 0x69, 0x09, 0x8a, - 0xd2, 0x14, 0x2c, 0xdb, 0x6c, 0x6a, 0x2a, 0xb2, 0x85, 0xe6, 0xb2, 0xb0, 0xdf, 0x40, 0x76, 0xab, - 0x68, 0xd9, 0x26, 0x31, 0xe1, 0xd9, 0x04, 0x86, 0xa2, 0xa2, 0x34, 0x8b, 0x1e, 0x43, 0xb1, 0xb9, - 0x9c, 0x9b, 0xab, 0x99, 0x66, 0x4d, 0x47, 0x82, 0x6c, 0x69, 0x82, 0x6c, 0x18, 0x26, 0x91, 0x89, - 0x66, 0x1a, 0xd8, 0x85, 0xc8, 0x4d, 0xd7, 0xcc, 0x9a, 0x49, 0xff, 0x14, 0x9c, 0xbf, 0xd8, 0x6a, - 0x9e, 0xf1, 0xd0, 0xaf, 0x9d, 0xc6, 0x77, 0x05, 0xa2, 0xd5, 0x11, 0x26, 0x72, 0xdd, 0x62, 0x04, - 0xa5, 0x34, 0xa2, 0xfa, 0x52, 0xb8, 0x3c, 0x4b, 0x9d, 0x78, 0x9a, 0xcb, 0x02, 0xde, 0x95, 0x6d, - 0xa4, 0x4a, 0x8a, 0x69, 0xe0, 0x46, 0xdd, 0xe7, 0x78, 0xf5, 0x00, 0x8e, 0x87, 0x9a, 0x8d, 0x18, - 0xd9, 0x1c, 0x41, 0x86, 0x8a, 0xec, 0xba, 0x66, 0x10, 0x41, 0xb1, 0x5b, 0x16, 0x31, 0x85, 0x3d, - 0xd4, 0xf2, 0x34, 0x3c, 0xad, 0x98, 0xb8, 0x6e, 0x62, 0xc9, 0x55, 0xd2, 0xfd, 0x60, 0x5b, 0xe7, - 0xdc, 0x2f, 0x01, 0x13, 0x79, 0x4f, 0x33, 0x6a, 0x42, 0x73, 0x79, 0x07, 0x11, 0x79, 0xd9, 0xfb, - 0x76, 0xa9, 0xf8, 0xfb, 0x60, 0xf6, 0x5d, 0xc7, 0xe8, 0x15, 0x26, 0xdc, 0x0d, 0x64, 0x20, 0xac, - 0x61, 0x11, 0xed, 0x37, 0x10, 0x26, 0xf0, 0x0c, 0x18, 0x77, 0x25, 0xd4, 0xd4, 0x2c, 0xb7, 0xc0, - 0x15, 0x26, 0xca, 0x99, 0x2c, 0x27, 0x1e, 0xa1, 0x6b, 0x55, 0x15, 0xe6, 0xc1, 0xa4, 0xa7, 0x95, - 0x43, 0x91, 0x71, 0x28, 0x44, 0xe0, 0x2d, 0x55, 0x55, 0xfe, 0x31, 0x98, 0x4b, 0x86, 0xc7, 0x96, - 0x69, 0x60, 0x04, 0xdf, 0x03, 0xc7, 0x6a, 0xee, 0x92, 0x84, 0x89, 0x4c, 0x10, 0x3d, 0x64, 0xb2, - 0xb4, 0x54, 0xec, 0x74, 0xf9, 0xcd, 0xe5, 0x62, 0x0c, 0x6b, 0xd3, 0xe1, 0x2b, 0x8f, 0x7c, 0xfa, - 0x2c, 0x3f, 0x24, 0x1e, 0xad, 0x85, 0xd6, 0xf8, 0x39, 0x90, 0x8b, 0x1c, 0x5e, 0x71, 0xe0, 0x3c, - 0xd5, 0x78, 0x39, 0xa6, 0xb9, 0xb7, 0xcb, 0x24, 0x2b, 0x83, 0x31, 0x7a, 0x3c, 0xce, 0x72, 0x0b, - 0xc3, 0x85, 0xc9, 0xd2, 0x62, 0x31, 0x85, 0x3f, 0x16, 0x29, 0x88, 0xc8, 0x38, 0xf9, 0xf3, 0xe0, - 0xab, 0xed, 0x47, 0x6c, 0x12, 0xd9, 0x26, 0x1b, 0xb6, 0x69, 0x99, 0x58, 0xd6, 0x7d, 0x69, 0x3e, - 0xe0, 0x40, 0xa1, 0x3b, 0x2d, 0x93, 0xed, 0xdb, 0x60, 0xc2, 0xf2, 0x16, 0x99, 0xc5, 0xde, 0x4e, - 0x27, 0x1e, 0x03, 0x5f, 0x51, 0x55, 0xcd, 0x09, 0x94, 0x00, 0x3a, 0x00, 0xe4, 0x0b, 0xe0, 0x2b, - 0x49, 0x92, 0x98, 0x56, 0x9b, 0xd0, 0x3f, 0xe4, 0x92, 0x15, 0x8c, 0x90, 0xfa, 0x37, 0xdd, 0x26, - 0xf3, 0x95, 0x9e, 0x64, 0x16, 0x51, 0xdd, 0x6c, 0xca, 0x7a, 0xa2, 0xc8, 0x3f, 0xcb, 0x80, 0x51, - 0x7a, 0x36, 0x3c, 0x1d, 0x77, 0xd8, 0xc0, 0x59, 0x67, 0xc1, 0x84, 0xa2, 0x6b, 0xc8, 0x20, 0x81, - 0xab, 0x8e, 0xbb, 0x0b, 0x55, 0x15, 0x9e, 0x00, 0xa3, 0xc4, 0xb4, 0xa4, 0xdb, 0xd9, 0xe1, 0x05, - 0xae, 0x70, 0x4c, 0x1c, 0x21, 0xa6, 0x75, 0x1b, 0x2e, 0x02, 0x58, 0xd7, 0x0c, 0xc9, 0x32, 0x1f, - 0x3a, 0xfe, 0x6d, 0x48, 0x2e, 0xc5, 0xc8, 0x02, 0x57, 0x18, 0x16, 0xa7, 0xea, 0x9a, 0xb1, 0xe1, - 0x6c, 0x54, 0x8d, 0x2d, 0x87, 0x76, 0x09, 0x4c, 0x37, 0x65, 0x5d, 0x53, 0x65, 0x62, 0xda, 0x98, - 0xb1, 0x28, 0xb2, 0x95, 0x1d, 0xa5, 0x78, 0x30, 0xd8, 0xa3, 0x4c, 0x15, 0xd9, 0x82, 0x8b, 0xe0, - 0x65, 0x7f, 0x55, 0xc2, 0x88, 0x50, 0xf2, 0x31, 0x4a, 0x7e, 0xdc, 0xdf, 0xd8, 0x44, 0xc4, 0xa1, - 0x9d, 0x03, 0x13, 0xb2, 0xae, 0x9b, 0x0f, 0x75, 0x0d, 0x93, 0xec, 0x91, 0x85, 0xe1, 0xc2, 0x84, - 0x18, 0x2c, 0xc0, 0x1c, 0x18, 0x57, 0x91, 0xd1, 0xa2, 0x9b, 0xe3, 0x74, 0xd3, 0xff, 0xe6, 0x7f, - 0xc5, 0x81, 0x57, 0xe8, 0x1d, 0xdd, 0xf3, 0x20, 0x43, 0x4e, 0x60, 0xa7, 0x8c, 0xf3, 0x2b, 0xe0, - 0x25, 0xef, 0x4a, 0x24, 0x59, 0x55, 0x6d, 0x84, 0xb1, 0x6b, 0xc1, 0x32, 0xfc, 0xf2, 0x59, 0x7e, - 0xaa, 0x25, 0xd7, 0xf5, 0xcb, 0x3c, 0xdb, 0xe0, 0xc5, 0xe3, 0x1e, 0xed, 0x8a, 0xbb, 0x12, 0x4f, - 0x13, 0xc3, 0xf1, 0x34, 0x71, 0x79, 0xfc, 0x83, 0x8f, 0xf2, 0x43, 0x7f, 0xff, 0x28, 0x3f, 0xc4, - 0xdf, 0x01, 0xfc, 0x41, 0xd2, 0x32, 0x67, 0x3a, 0x0f, 0x5e, 0xf2, 0x01, 0x3d, 0x79, 0xdc, 0xdb, - 0x3e, 0xae, 0x84, 0xe8, 0x1d, 0x69, 0xda, 0xf5, 0xdf, 0x08, 0x49, 0x97, 0x5e, 0xff, 0xb6, 0xf3, - 0x0e, 0xd0, 0x3f, 0x26, 0xc3, 0x40, 0xfa, 0x47, 0xa5, 0x0d, 0xf4, 0x6f, 0xbb, 0x0f, 0xa6, 0x7f, - 0xcc, 0xf6, 0xfc, 0x2c, 0x38, 0x4d, 0x01, 0xb7, 0x76, 0x6d, 0x93, 0x10, 0x1d, 0xd1, 0xd4, 0xe8, - 0x05, 0xf0, 0x1f, 0x38, 0x96, 0x22, 0x63, 0xbb, 0xec, 0x98, 0x3c, 0x98, 0xc4, 0xba, 0x8c, 0x77, - 0xa5, 0x3a, 0x22, 0xc8, 0xa6, 0x27, 0x0c, 0x8b, 0x80, 0x2e, 0xbd, 0xe3, 0xac, 0xc0, 0x12, 0x38, - 0x19, 0x22, 0x90, 0xa8, 0x47, 0xca, 0x86, 0x82, 0xa8, 0x71, 0x86, 0xc5, 0x13, 0x01, 0xe9, 0x8a, - 0xb7, 0x05, 0xbf, 0x03, 0xb2, 0x06, 0x7a, 0x44, 0x24, 0x1b, 0x59, 0x3a, 0x32, 0x34, 0xbc, 0x2b, - 0x29, 0xb2, 0xa1, 0x3a, 0xca, 0x22, 0x6a, 0x99, 0xc9, 0x52, 0xae, 0xe8, 0xbe, 0xd0, 0x45, 0xef, - 0x85, 0x2e, 0x6e, 0x79, 0x2f, 0x74, 0x79, 0xdc, 0xc9, 0xf3, 0x4f, 0xff, 0x92, 0xe7, 0xc4, 0x53, - 0x0e, 0x8a, 0xe8, 0x81, 0x54, 0x3c, 0x0c, 0xfe, 0x22, 0x58, 0xa4, 0x2a, 0x89, 0xa8, 0xa6, 0x61, - 0x82, 0x6c, 0xa4, 0x06, 0x19, 0xe4, 0xa1, 0x6c, 0xab, 0xab, 0xc8, 0x30, 0xeb, 0x7e, 0x0a, 0xbb, - 0x0e, 0x2e, 0xa4, 0xa2, 0x66, 0x16, 0x39, 0x05, 0xc6, 0x54, 0xba, 0x42, 0x5f, 0x85, 0x09, 0x91, - 0x7d, 0xf1, 0xf3, 0xec, 0x9d, 0x73, 0xb3, 0x13, 0x52, 0x69, 0x32, 0xaa, 0xae, 0xfa, 0xc7, 0xbc, - 0xcf, 0x81, 0x33, 0x1d, 0x08, 0x18, 0xf2, 0x03, 0x30, 0x65, 0x85, 0xf7, 0xbc, 0x77, 0xa7, 0x94, - 0x2a, 0x49, 0x46, 0x60, 0xd9, 0x63, 0x18, 0xc3, 0xe3, 0x0d, 0x70, 0x2c, 0x42, 0x06, 0xe7, 0x00, - 0x73, 0xf0, 0xd5, 0x76, 0x9f, 0x5f, 0x85, 0xf3, 0x00, 0x78, 0x09, 0xb6, 0xba, 0x4a, 0x2f, 0x74, - 0x44, 0x0c, 0xad, 0x74, 0x75, 0x6a, 0x7e, 0x1f, 0x08, 0x54, 0xe5, 0x15, 0x5d, 0xdf, 0x90, 0x35, - 0x1b, 0xdf, 0x93, 0xf5, 0x8a, 0x69, 0x38, 0x7e, 0x59, 0x8e, 0x3e, 0x18, 0xd5, 0xd5, 0xc3, 0x2a, - 0x37, 0x7e, 0xc1, 0x81, 0xa5, 0xf4, 0x67, 0x32, 0xcb, 0xef, 0x83, 0x97, 0x2d, 0x59, 0xb3, 0xa5, - 0xa6, 0xac, 0x3b, 0x35, 0x1a, 0x0d, 0x28, 0x66, 0xfc, 0xb5, 0x74, 0xc6, 0x97, 0x35, 0x3b, 0x38, - 0xc8, 0x0f, 0x58, 0x23, 0x70, 0xa5, 0x29, 0x2b, 0x42, 0xc2, 0xff, 0x87, 0x03, 0xaf, 0x74, 0xe5, - 0x82, 0x6b, 0x9d, 0xa2, 0xbc, 0x3c, 0xfb, 0xe5, 0xb3, 0xfc, 0x8c, 0x9b, 0x75, 0xe2, 0x14, 0x09, - 0xe9, 0x77, 0xad, 0x63, 0xf6, 0x0a, 0xe1, 0xc4, 0x29, 0x12, 0xd2, 0xd8, 0x55, 0x70, 0xd4, 0xa7, - 0xda, 0x43, 0x2d, 0x16, 0xad, 0x73, 0xc5, 0xa0, 0x42, 0x2d, 0xba, 0x15, 0x6a, 0x71, 0xa3, 0xb1, - 0xa3, 0x6b, 0xca, 0x3a, 0x6a, 0x89, 0xfe, 0x85, 0xad, 0xa3, 0x16, 0x3f, 0x0d, 0xa0, 0x1b, 0x04, - 0xb2, 0x2d, 0x07, 0x21, 0xf8, 0x00, 0x9c, 0x88, 0xac, 0xb2, 0x6b, 0xa9, 0x82, 0x31, 0x8b, 0xae, - 0xb0, 0x6a, 0xe1, 0x42, 0xca, 0xbb, 0x70, 0x58, 0x58, 0x04, 0x30, 0x00, 0x5e, 0x67, 0x29, 0x21, - 0xe2, 0x01, 0x77, 0x2c, 0x82, 0xd4, 0xaa, 0xe1, 0x27, 0xda, 0x43, 0xab, 0x79, 0xf7, 0x59, 0x4a, - 0xe9, 0x76, 0x9a, 0x5f, 0x68, 0x9e, 0x09, 0x17, 0x0e, 0xb1, 0xeb, 0x44, 0x5e, 0xa6, 0x99, 0x0d, - 0x55, 0x10, 0xd1, 0xfb, 0x45, 0x98, 0x7f, 0x00, 0xe6, 0x23, 0x47, 0x1e, 0xbe, 0x52, 0x3f, 0x1f, - 0x03, 0x0b, 0x1d, 0x8e, 0xf0, 0xff, 0x4a, 0x2c, 0x13, 0xb8, 0xf4, 0x65, 0x42, 0xdc, 0xbf, 0x32, - 0x3d, 0xfa, 0x17, 0x9c, 0x06, 0xa3, 0xb4, 0xf0, 0xa2, 0x9e, 0x39, 0x2c, 0xba, 0x1f, 0xf0, 0x3e, - 0xc8, 0xfa, 0xb0, 0x8a, 0x59, 0xaf, 0x6b, 0x18, 0x6b, 0xa6, 0x21, 0xd9, 0xce, 0x83, 0x33, 0x42, - 0xa5, 0x3b, 0xeb, 0x78, 0xcb, 0x9f, 0x9e, 0xe5, 0x67, 0xdd, 0x96, 0x09, 0xab, 0x7b, 0x45, 0xcd, - 0x14, 0xea, 0x32, 0xd9, 0x2d, 0xde, 0x42, 0x35, 0x59, 0x69, 0xad, 0x22, 0x45, 0x3c, 0xe5, 0x81, - 0x54, 0x7c, 0x0c, 0x51, 0x26, 0xc8, 0x81, 0xf7, 0x95, 0x8e, 0xc3, 0x4f, 0xf4, 0x00, 0xef, 0x81, - 0xc4, 0xe0, 0xd7, 0xc1, 0xa4, 0x8a, 0xb0, 0x62, 0x6b, 0x96, 0x53, 0xb0, 0xd3, 0x72, 0x72, 0xb2, - 0x74, 0xb6, 0xc8, 0x5a, 0x3d, 0xaf, 0x99, 0x63, 0xcd, 0x5d, 0x71, 0x35, 0x20, 0x65, 0x31, 0x10, - 0xe6, 0x86, 0x5b, 0xe0, 0xb4, 0x2f, 0xab, 0x69, 0x21, 0x9b, 0x96, 0x9e, 0xde, 0x4d, 0x8d, 0x51, - 0x61, 0xb3, 0x9f, 0x7f, 0x7c, 0x69, 0x9a, 0xa1, 0xb3, 0x8b, 0xd9, 0x24, 0xb6, 0x66, 0xd4, 0xc4, - 0x19, 0x8f, 0xf5, 0x0e, 0xe3, 0xf4, 0xee, 0xed, 0x14, 0x18, 0xfb, 0x9e, 0xac, 0xe9, 0x48, 0xcd, - 0x1e, 0x59, 0xe0, 0x0a, 0xe3, 0x22, 0xfb, 0x82, 0x97, 0xc1, 0x98, 0xd3, 0xd4, 0x35, 0x70, 0x76, - 0x7c, 0x81, 0x2b, 0x4c, 0x95, 0xf8, 0x4e, 0x52, 0x97, 0x4d, 0x43, 0xdd, 0xa4, 0x94, 0x22, 0xe3, - 0x80, 0x5b, 0xc0, 0x77, 0x0f, 0x89, 0x98, 0x7b, 0xc8, 0xc0, 0x59, 0x40, 0xe5, 0xbb, 0xc0, 0x8c, - 0x79, 0xb2, 0xdd, 0x98, 0x55, 0x83, 0x7c, 0xfe, 0xf1, 0x25, 0xc0, 0x0e, 0xa9, 0x1a, 0x84, 0x3e, - 0x81, 0x14, 0x63, 0x8b, 0x42, 0xc0, 0x57, 0x81, 0xbf, 0xe2, 0x96, 0xe8, 0xd9, 0x49, 0xea, 0x29, - 0xc7, 0xbc, 0x55, 0x5a, 0x9c, 0xc3, 0xaf, 0x81, 0x19, 0x16, 0x6d, 0x08, 0x4b, 0x4a, 0xc3, 0xb6, - 0x9d, 0xa6, 0x01, 0x59, 0xa6, 0xb2, 0x9b, 0x3d, 0x4a, 0x35, 0x3c, 0xe9, 0x6f, 0x57, 0xdc, 0xdd, - 0xeb, 0xce, 0xa6, 0xd3, 0xc4, 0xe5, 0x3b, 0xc6, 0x21, 0x0b, 0x77, 0x04, 0x40, 0x10, 0xc9, 0xec, - 0x99, 0xb9, 0x9e, 0x2a, 0xb5, 0x75, 0x0b, 0x3f, 0x31, 0x04, 0xcc, 0xef, 0xb3, 0x87, 0x30, 0xda, - 0xdd, 0xfa, 0xb4, 0x37, 0x65, 0xbc, 0x65, 0xb2, 0x2f, 0xaf, 0x1a, 0x1c, 0x30, 0x7c, 0x79, 0x19, - 0x2c, 0xf7, 0x70, 0x24, 0x33, 0xc7, 0x45, 0x00, 0x83, 0xe0, 0x64, 0x09, 0xca, 0x4b, 0x79, 0xfe, - 0xab, 0xe5, 0xbe, 0xd8, 0x2a, 0x2d, 0xe6, 0x2f, 0x24, 0xb7, 0x07, 0xd1, 0xa8, 0xf9, 0xff, 0x68, - 0x6b, 0xf8, 0x1a, 0xb8, 0x98, 0x4e, 0x5a, 0x66, 0x8c, 0x37, 0xc0, 0x88, 0xed, 0x0d, 0x41, 0x52, - 0xa6, 0x0d, 0xca, 0xc0, 0xf3, 0x2c, 0x39, 0x97, 0x75, 0x53, 0xd9, 0xc3, 0x77, 0x0d, 0xa2, 0xe9, - 0xb7, 0xd1, 0x23, 0xd7, 0x2b, 0xbd, 0x67, 0x76, 0x9b, 0xf5, 0x41, 0xc9, 0x34, 0x4c, 0x82, 0xd7, - 0xc1, 0xcc, 0x0e, 0xdd, 0x97, 0x1a, 0x0e, 0x81, 0x44, 0x2b, 0x75, 0xd7, 0xf3, 0x39, 0x5a, 0x01, - 0x4e, 0xef, 0x24, 0xb0, 0xf3, 0x2b, 0xac, 0x6b, 0xa9, 0xf8, 0xba, 0xaf, 0xd9, 0x66, 0xbd, 0xc2, - 0x9a, 0x6b, 0xef, 0x36, 0x22, 0x0d, 0x38, 0x17, 0x6d, 0xc0, 0xf9, 0x35, 0x70, 0xf6, 0x40, 0x88, - 0xa0, 0x25, 0x09, 0xdb, 0x9c, 0x8b, 0xdb, 0xbc, 0xf4, 0xe1, 0x39, 0x30, 0x4a, 0x81, 0xe0, 0x2f, - 0x33, 0x60, 0x3a, 0x69, 0xf8, 0x04, 0xaf, 0xf5, 0x1e, 0x6e, 0xd1, 0xb1, 0x58, 0x6e, 0x65, 0x00, - 0x04, 0x57, 0x11, 0xfe, 0x47, 0xdc, 0xf7, 0xbf, 0xf8, 0xdb, 0x4f, 0x32, 0x3f, 0xe0, 0xb6, 0xcb, - 0xf0, 0x5a, 0xf7, 0xe1, 0xa8, 0xaf, 0x34, 0x9b, 0x70, 0x09, 0x8f, 0x43, 0x66, 0x78, 0x02, 0xaf, - 0xf4, 0x85, 0xc0, 0x42, 0xe3, 0x09, 0xfc, 0x82, 0x63, 0x35, 0x58, 0x34, 0x76, 0xe1, 0xd5, 0xde, - 0xf5, 0x8c, 0x0c, 0xd9, 0x72, 0xd7, 0xfa, 0x07, 0x60, 0x76, 0x7a, 0x8b, 0x9a, 0xe9, 0x35, 0xb8, - 0xdc, 0x83, 0x86, 0xee, 0xf8, 0x0d, 0xbe, 0x9f, 0x01, 0xd9, 0x0e, 0x33, 0x35, 0x0c, 0x6f, 0xf5, - 0x29, 0x59, 0xe2, 0xf8, 0x2e, 0xf7, 0xce, 0x21, 0xa1, 0x31, 0xa5, 0x6f, 0x52, 0xa5, 0x7b, 0x73, - 0x0c, 0x46, 0xe4, 0x00, 0x4a, 0xfe, 0x64, 0x0c, 0xfe, 0x97, 0x03, 0x33, 0xc9, 0x23, 0x3a, 0x0c, - 0xd7, 0xfb, 0x16, 0xba, 0x7d, 0x16, 0x98, 0xbb, 0x75, 0x38, 0x60, 0xcc, 0x00, 0x37, 0xa8, 0x01, - 0x56, 0xe0, 0xd5, 0x3e, 0x0c, 0x60, 0x5a, 0x21, 0xfd, 0xff, 0xe5, 0x4d, 0x38, 0x12, 0x07, 0x4a, - 0x70, 0x2d, 0xbd, 0xd4, 0x07, 0xcd, 0xcf, 0x72, 0x37, 0x06, 0xc6, 0x61, 0x8a, 0xaf, 0x50, 0xc5, - 0xbf, 0x0e, 0xdf, 0x4a, 0xf1, 0x7b, 0x89, 0x3f, 0x3c, 0x8c, 0xf4, 0x6e, 0x09, 0x2a, 0x87, 0x1b, - 0x86, 0xbe, 0x54, 0x4e, 0x18, 0x99, 0xf5, 0xa5, 0x72, 0xd2, 0x30, 0xab, 0x3f, 0x95, 0x23, 0xef, - 0x36, 0xfc, 0x3d, 0xc7, 0x3a, 0xcb, 0xc8, 0x1c, 0x0b, 0xbe, 0x9d, 0x5e, 0xc4, 0xa4, 0xf1, 0x58, - 0xee, 0x6a, 0xdf, 0xfc, 0x4c, 0xb5, 0x37, 0xa9, 0x6a, 0x25, 0xb8, 0xd4, 0x5d, 0x35, 0xc2, 0x00, - 0xdc, 0xdf, 0x41, 0xe0, 0x4f, 0x33, 0xec, 0x3d, 0x3c, 0x78, 0x30, 0x05, 0xef, 0xa4, 0x17, 0x31, - 0xd5, 0x40, 0x2c, 0xb7, 0x71, 0x78, 0x80, 0xcc, 0x08, 0xeb, 0xd4, 0x08, 0xd7, 0x61, 0xa5, 0xbb, - 0x11, 0x6c, 0x1f, 0x31, 0xf0, 0x69, 0x9b, 0x62, 0x4a, 0xee, 0xa0, 0x0d, 0xfe, 0xa3, 0x6d, 0x90, - 0x16, 0x9d, 0xea, 0x60, 0xd8, 0xc3, 0xdb, 0xdc, 0x61, 0x5a, 0x97, 0x2b, 0x0f, 0x02, 0xc1, 0xb4, - 0x2e, 0x53, 0xad, 0xbf, 0x01, 0x2f, 0x77, 0xd7, 0xda, 0x9b, 0xd3, 0x49, 0xf1, 0x07, 0xec, 0x93, - 0x0c, 0xfb, 0x51, 0x28, 0xc5, 0x38, 0x0b, 0x6e, 0xa5, 0x17, 0x3a, 0xfd, 0x44, 0x2e, 0x77, 0xf7, - 0x90, 0x51, 0x99, 0x75, 0x6a, 0xd4, 0x3a, 0xf2, 0xf6, 0x32, 0x14, 0xba, 0xdb, 0x27, 0x5a, 0xea, - 0x5c, 0x4c, 0xc3, 0xe0, 0x57, 0x36, 0xbf, 0xe6, 0xc0, 0x64, 0x68, 0xba, 0x04, 0xdf, 0xe8, 0xe1, - 0x6a, 0xc3, 0x53, 0xaa, 0xdc, 0x9b, 0xbd, 0x33, 0x32, 0x5d, 0x97, 0xa8, 0xae, 0x8b, 0xb0, 0x90, - 0xc2, 0x13, 0x5c, 0x21, 0xff, 0x9c, 0x89, 0x15, 0xc3, 0xc9, 0x23, 0xa4, 0x5e, 0x82, 0x3f, 0xd5, - 0xe8, 0xab, 0x97, 0xe0, 0x4f, 0x37, 0xdd, 0xe2, 0x9f, 0xba, 0x65, 0xee, 0x87, 0xdc, 0x76, 0xaa, - 0x04, 0x60, 0x3a, 0x40, 0x92, 0x66, 0x48, 0x41, 0x2b, 0x1b, 0xbb, 0xfe, 0x6b, 0xfd, 0x82, 0xf8, - 0x2e, 0xf1, 0x9b, 0x0c, 0x38, 0x9f, 0xba, 0x51, 0x85, 0x77, 0xfb, 0xad, 0x60, 0x0f, 0xec, 0xb5, - 0x73, 0xf7, 0x0e, 0x1b, 0x96, 0xd9, 0x7b, 0x9b, 0x9a, 0x7b, 0x0b, 0x8a, 0x3d, 0x97, 0xcb, 0x92, - 0x85, 0xec, 0xc0, 0x62, 0xc2, 0xe3, 0x78, 0x67, 0xfc, 0x04, 0xfe, 0x78, 0x18, 0x9c, 0x4b, 0xd3, - 0xcf, 0xc2, 0x8d, 0x01, 0xaa, 0xa1, 0xc4, 0x46, 0x3e, 0xf7, 0xee, 0x21, 0x22, 0x32, 0x4b, 0x7d, - 0xe2, 0x7a, 0xe6, 0xef, 0xb8, 0xed, 0xfb, 0xf0, 0xbd, 0x5e, 0xac, 0x15, 0x9d, 0xf1, 0x45, 0xdd, - 0x33, 0xc9, 0x6c, 0xdf, 0x1a, 0x08, 0xdc, 0x73, 0xdb, 0x24, 0xe4, 0xdf, 0x66, 0x62, 0xc5, 0x7d, - 0x28, 0x37, 0x54, 0x06, 0x99, 0x29, 0x79, 0x66, 0x5f, 0x1d, 0x0c, 0xa4, 0xbf, 0x1c, 0xe0, 0x1b, - 0x63, 0x90, 0x1c, 0x90, 0x0c, 0xe2, 0xe7, 0x80, 0x7f, 0x72, 0xec, 0x67, 0xd1, 0xa4, 0x69, 0x08, - 0xec, 0x61, 0x1e, 0x77, 0xc0, 0xc4, 0x25, 0xb7, 0x36, 0x28, 0x4c, 0xef, 0x05, 0x72, 0x87, 0xe1, - 0x0d, 0xfc, 0x37, 0x17, 0xfb, 0x6f, 0x97, 0xe8, 0x78, 0x05, 0xde, 0xe8, 0xfd, 0xa2, 0x13, 0x67, - 0x3c, 0xb9, 0x9b, 0x83, 0x03, 0xf5, 0xae, 0x75, 0xc8, 0x39, 0x84, 0xc7, 0xfe, 0x88, 0xe9, 0x49, - 0xf9, 0x9b, 0x9f, 0x3e, 0x9f, 0xe7, 0x3e, 0x7b, 0x3e, 0xcf, 0xfd, 0xf5, 0xf9, 0x3c, 0xf7, 0xf4, - 0xc5, 0xfc, 0xd0, 0x67, 0x2f, 0xe6, 0x87, 0xfe, 0xf8, 0x62, 0x7e, 0x68, 0xfb, 0x4a, 0x4d, 0x23, - 0xbb, 0x8d, 0x9d, 0xa2, 0x62, 0xd6, 0xd9, 0x7f, 0x4d, 0x85, 0x4e, 0xb9, 0xe4, 0x9f, 0xd2, 0x7c, - 0x5d, 0x78, 0x14, 0x2b, 0xd3, 0x5b, 0x16, 0xc2, 0x3b, 0x63, 0xf4, 0x97, 0xe9, 0xd7, 0xfe, 0x17, - 0x00, 0x00, 0xff, 0xff, 0x61, 0x21, 0xf7, 0x82, 0xd5, 0x26, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4f, 0x6c, 0x1c, 0x57, + 0x19, 0xf7, 0xac, 0xff, 0xd4, 0x7e, 0x4e, 0x9c, 0xf6, 0xc5, 0x89, 0x37, 0x6b, 0xc7, 0xeb, 0x4c, + 0x52, 0xd8, 0x38, 0xc9, 0x8e, 0xbd, 0x55, 0x69, 0x1b, 0x48, 0x13, 0xef, 0x3a, 0x4e, 0x56, 0x4e, + 0x13, 0x77, 0xec, 0x04, 0xe4, 0x12, 0x26, 0xe3, 0x99, 0xc7, 0x7a, 0xf0, 0xec, 0xcc, 0x78, 0xde, + 0xdb, 0x4d, 0x56, 0x51, 0x0e, 0x05, 0x09, 0xb5, 0x1c, 0x50, 0x24, 0x84, 0xc4, 0xb1, 0x17, 0x24, + 0x24, 0x38, 0xa1, 0x0a, 0xc4, 0xad, 0xc7, 0xde, 0x28, 0xed, 0x05, 0x81, 0x14, 0x50, 0xc2, 0x01, + 0x21, 0x21, 0xa1, 0xc2, 0x15, 0x09, 0xcd, 0x9b, 0x37, 0x7f, 0x77, 0xd6, 0x3b, 0xbb, 0xeb, 0x03, + 0x37, 0xcf, 0x7b, 0xdf, 0xfb, 0xbd, 0xef, 0xff, 0xfb, 0xbe, 0x6f, 0x0d, 0x04, 0xcd, 0x20, 0xc8, + 0x56, 0x76, 0x65, 0xcd, 0x90, 0x30, 0x52, 0x1a, 0xb6, 0x46, 0x5a, 0x82, 0xa2, 0x34, 0x05, 0xcb, + 0x36, 0x9b, 0x9a, 0x8a, 0x6c, 0xa1, 0xb9, 0x2c, 0xec, 0x37, 0x90, 0xdd, 0x2a, 0x5a, 0xb6, 0x49, + 0x4c, 0x78, 0x36, 0xe1, 0x40, 0x51, 0x51, 0x9a, 0x45, 0xef, 0x40, 0xb1, 0xb9, 0x9c, 0x9b, 0xab, + 0x99, 0x66, 0x4d, 0x47, 0x82, 0x6c, 0x69, 0x82, 0x6c, 0x18, 0x26, 0x91, 0x89, 0x66, 0x1a, 0xd8, + 0x85, 0xc8, 0x4d, 0xd7, 0xcc, 0x9a, 0x49, 0xff, 0x14, 0x9c, 0xbf, 0xd8, 0x6a, 0x9e, 0x9d, 0xa1, + 0x5f, 0x3b, 0x8d, 0xef, 0x0a, 0x44, 0xab, 0x23, 0x4c, 0xe4, 0xba, 0xc5, 0x08, 0x4a, 0x69, 0x58, + 0xf5, 0xb9, 0x70, 0xcf, 0x2c, 0x75, 0x3a, 0xd3, 0x5c, 0x16, 0xf0, 0xae, 0x6c, 0x23, 0x55, 0x52, + 0x4c, 0x03, 0x37, 0xea, 0xfe, 0x89, 0x57, 0x0f, 0x38, 0xf1, 0x50, 0xb3, 0x11, 0x23, 0x9b, 0x23, + 0xc8, 0x50, 0x91, 0x5d, 0xd7, 0x0c, 0x22, 0x28, 0x76, 0xcb, 0x22, 0xa6, 0xb0, 0x87, 0x5a, 0x9e, + 0x84, 0xa7, 0x14, 0x13, 0xd7, 0x4d, 0x2c, 0xb9, 0x42, 0xba, 0x1f, 0x6c, 0xeb, 0x9c, 0xfb, 0x25, + 0x60, 0x22, 0xef, 0x69, 0x46, 0x4d, 0x68, 0x2e, 0xef, 0x20, 0x22, 0x2f, 0x7b, 0xdf, 0x2e, 0x15, + 0x7f, 0x1f, 0xcc, 0xbe, 0xeb, 0x28, 0xbd, 0xc2, 0x98, 0xbb, 0x81, 0x0c, 0x84, 0x35, 0x2c, 0xa2, + 0xfd, 0x06, 0xc2, 0x04, 0x9e, 0x06, 0xe3, 0x2e, 0x87, 0x9a, 0x9a, 0xe5, 0x16, 0xb8, 0xc2, 0x44, + 0x39, 0x93, 0xe5, 0xc4, 0x97, 0xe8, 0x5a, 0x55, 0x85, 0x79, 0x30, 0xe9, 0x49, 0xe5, 0x50, 0x64, + 0x1c, 0x0a, 0x11, 0x78, 0x4b, 0x55, 0x95, 0x7f, 0x0c, 0xe6, 0x92, 0xe1, 0xb1, 0x65, 0x1a, 0x18, + 0xc1, 0xf7, 0xc0, 0xd1, 0x9a, 0xbb, 0x24, 0x61, 0x22, 0x13, 0x44, 0x2f, 0x99, 0x2c, 0x2d, 0x15, + 0x3b, 0x19, 0xbf, 0xb9, 0x5c, 0x8c, 0x61, 0x6d, 0x3a, 0xe7, 0xca, 0x23, 0x9f, 0x3e, 0xcb, 0x0f, + 0x89, 0x47, 0x6a, 0xa1, 0x35, 0x7e, 0x0e, 0xe4, 0x22, 0x97, 0x57, 0x1c, 0x38, 0x4f, 0x34, 0x5e, + 0x8e, 0x49, 0xee, 0xed, 0x32, 0xce, 0xca, 0x60, 0x8c, 0x5e, 0x8f, 0xb3, 0xdc, 0xc2, 0x70, 0x61, + 0xb2, 0xb4, 0x58, 0x4c, 0xe1, 0x8f, 0x45, 0x0a, 0x22, 0xb2, 0x93, 0xfc, 0x79, 0xf0, 0xd5, 0xf6, + 0x2b, 0x36, 0x89, 0x6c, 0x93, 0x0d, 0xdb, 0xb4, 0x4c, 0x2c, 0xeb, 0x3e, 0x37, 0x1f, 0x70, 0xa0, + 0xd0, 0x9d, 0x96, 0xf1, 0xf6, 0x6d, 0x30, 0x61, 0x79, 0x8b, 0x4c, 0x63, 0x6f, 0xa7, 0x63, 0x8f, + 0x81, 0xaf, 0xa8, 0xaa, 0xe6, 0x04, 0x4a, 0x00, 0x1d, 0x00, 0xf2, 0x05, 0xf0, 0x95, 0x24, 0x4e, + 0x4c, 0xab, 0x8d, 0xe9, 0x1f, 0x72, 0xc9, 0x02, 0x46, 0x48, 0x7d, 0x4b, 0xb7, 0xf1, 0x7c, 0xa5, + 0x27, 0x9e, 0x45, 0x54, 0x37, 0x9b, 0xb2, 0x9e, 0xc8, 0xf2, 0xcf, 0x32, 0x60, 0x94, 0xde, 0x0d, + 0x4f, 0xc5, 0x1d, 0x36, 0x70, 0xd6, 0x59, 0x30, 0xa1, 0xe8, 0x1a, 0x32, 0x48, 0xe0, 0xaa, 0xe3, + 0xee, 0x42, 0x55, 0x85, 0xc7, 0xc1, 0x28, 0x31, 0x2d, 0xe9, 0x76, 0x76, 0x78, 0x81, 0x2b, 0x1c, + 0x15, 0x47, 0x88, 0x69, 0xdd, 0x86, 0x8b, 0x00, 0xd6, 0x35, 0x43, 0xb2, 0xcc, 0x87, 0x8e, 0x7f, + 0x1b, 0x92, 0x4b, 0x31, 0xb2, 0xc0, 0x15, 0x86, 0xc5, 0xa9, 0xba, 0x66, 0x6c, 0x38, 0x1b, 0x55, + 0x63, 0xcb, 0xa1, 0x5d, 0x02, 0xd3, 0x4d, 0x59, 0xd7, 0x54, 0x99, 0x98, 0x36, 0x66, 0x47, 0x14, + 0xd9, 0xca, 0x8e, 0x52, 0x3c, 0x18, 0xec, 0xd1, 0x43, 0x15, 0xd9, 0x82, 0x8b, 0xe0, 0x15, 0x7f, + 0x55, 0xc2, 0x88, 0x50, 0xf2, 0x31, 0x4a, 0x7e, 0xcc, 0xdf, 0xd8, 0x44, 0xc4, 0xa1, 0x9d, 0x03, + 0x13, 0xb2, 0xae, 0x9b, 0x0f, 0x75, 0x0d, 0x93, 0xec, 0x4b, 0x0b, 0xc3, 0x85, 0x09, 0x31, 0x58, + 0x80, 0x39, 0x30, 0xae, 0x22, 0xa3, 0x45, 0x37, 0xc7, 0xe9, 0xa6, 0xff, 0xcd, 0xff, 0x8a, 0x03, + 0x67, 0xa8, 0x8d, 0xee, 0x79, 0x90, 0x21, 0x27, 0xb0, 0x53, 0xc6, 0xf9, 0x15, 0xf0, 0xb2, 0x67, + 0x12, 0x49, 0x56, 0x55, 0x1b, 0x61, 0xec, 0x6a, 0xb0, 0x0c, 0xbf, 0x7c, 0x96, 0x9f, 0x6a, 0xc9, + 0x75, 0xfd, 0x32, 0xcf, 0x36, 0x78, 0xf1, 0x98, 0x47, 0xbb, 0xe2, 0xae, 0xc4, 0xd3, 0xc4, 0x70, + 0x3c, 0x4d, 0x5c, 0x1e, 0xff, 0xe0, 0xa3, 0xfc, 0xd0, 0xdf, 0x3f, 0xca, 0x0f, 0xf1, 0x77, 0x00, + 0x7f, 0x10, 0xb7, 0xcc, 0x99, 0xce, 0x83, 0x97, 0x7d, 0x40, 0x8f, 0x1f, 0xd7, 0xda, 0xc7, 0x94, + 0x10, 0xbd, 0xc3, 0x4d, 0xbb, 0xfc, 0x1b, 0x21, 0xee, 0xd2, 0xcb, 0xdf, 0x76, 0xdf, 0x01, 0xf2, + 0xc7, 0x78, 0x18, 0x48, 0xfe, 0x28, 0xb7, 0x81, 0xfc, 0x6d, 0xf6, 0x60, 0xf2, 0xc7, 0x74, 0xcf, + 0xcf, 0x82, 0x53, 0x14, 0x70, 0x6b, 0xd7, 0x36, 0x09, 0xd1, 0x11, 0x4d, 0x8d, 0x5e, 0x00, 0xff, + 0x81, 0x63, 0x29, 0x32, 0xb6, 0xcb, 0xae, 0xc9, 0x83, 0x49, 0xac, 0xcb, 0x78, 0x57, 0xaa, 0x23, + 0x82, 0x6c, 0x7a, 0xc3, 0xb0, 0x08, 0xe8, 0xd2, 0x3b, 0xce, 0x0a, 0x2c, 0x81, 0x13, 0x21, 0x02, + 0x89, 0x7a, 0xa4, 0x6c, 0x28, 0x88, 0x2a, 0x67, 0x58, 0x3c, 0x1e, 0x90, 0xae, 0x78, 0x5b, 0xf0, + 0x3b, 0x20, 0x6b, 0xa0, 0x47, 0x44, 0xb2, 0x91, 0xa5, 0x23, 0x43, 0xc3, 0xbb, 0x92, 0x22, 0x1b, + 0xaa, 0x23, 0x2c, 0xa2, 0x9a, 0x99, 0x2c, 0xe5, 0x8a, 0xee, 0x0b, 0x5d, 0xf4, 0x5e, 0xe8, 0xe2, + 0x96, 0xf7, 0x42, 0x97, 0xc7, 0x9d, 0x3c, 0xff, 0xf4, 0x2f, 0x79, 0x4e, 0x3c, 0xe9, 0xa0, 0x88, + 0x1e, 0x48, 0xc5, 0xc3, 0xe0, 0x2f, 0x82, 0x45, 0x2a, 0x92, 0x88, 0x6a, 0x1a, 0x26, 0xc8, 0x46, + 0x6a, 0x90, 0x41, 0x1e, 0xca, 0xb6, 0xba, 0x8a, 0x0c, 0xb3, 0xee, 0xa7, 0xb0, 0xeb, 0xe0, 0x42, + 0x2a, 0x6a, 0xa6, 0x91, 0x93, 0x60, 0x4c, 0xa5, 0x2b, 0xf4, 0x55, 0x98, 0x10, 0xd9, 0x17, 0x3f, + 0xcf, 0xde, 0x39, 0x37, 0x3b, 0x21, 0x95, 0x26, 0xa3, 0xea, 0xaa, 0x7f, 0xcd, 0xfb, 0x1c, 0x38, + 0xdd, 0x81, 0x80, 0x21, 0x3f, 0x00, 0x53, 0x56, 0x78, 0xcf, 0x7b, 0x77, 0x4a, 0xa9, 0x92, 0x64, + 0x04, 0x96, 0x3d, 0x86, 0x31, 0x3c, 0xde, 0x00, 0x47, 0x23, 0x64, 0x70, 0x0e, 0x30, 0x07, 0x5f, + 0x6d, 0xf7, 0xf9, 0x55, 0x38, 0x0f, 0x80, 0x97, 0x60, 0xab, 0xab, 0xd4, 0xa0, 0x23, 0x62, 0x68, + 0xa5, 0xab, 0x53, 0xf3, 0xfb, 0x40, 0xa0, 0x22, 0xaf, 0xe8, 0xfa, 0x86, 0xac, 0xd9, 0xf8, 0x9e, + 0xac, 0x57, 0x4c, 0xc3, 0xf1, 0xcb, 0x72, 0xf4, 0xc1, 0xa8, 0xae, 0x1e, 0x56, 0xb9, 0xf1, 0x73, + 0x0e, 0x2c, 0xa5, 0xbf, 0x93, 0x69, 0x7e, 0x1f, 0xbc, 0x62, 0xc9, 0x9a, 0x2d, 0x35, 0x65, 0xdd, + 0xa9, 0xd1, 0x68, 0x40, 0x31, 0xe5, 0xaf, 0xa5, 0x53, 0xbe, 0xac, 0xd9, 0xc1, 0x45, 0x7e, 0xc0, + 0x1a, 0x81, 0x2b, 0x4d, 0x59, 0x11, 0x12, 0xfe, 0x3f, 0x1c, 0x38, 0xd3, 0xf5, 0x14, 0x5c, 0xeb, + 0x14, 0xe5, 0xe5, 0xd9, 0x2f, 0x9f, 0xe5, 0x67, 0xdc, 0xac, 0x13, 0xa7, 0x48, 0x48, 0xbf, 0x6b, + 0x1d, 0xb3, 0x57, 0x08, 0x27, 0x4e, 0x91, 0x90, 0xc6, 0xae, 0x82, 0x23, 0x3e, 0xd5, 0x1e, 0x6a, + 0xb1, 0x68, 0x9d, 0x2b, 0x06, 0x15, 0x6a, 0xd1, 0xad, 0x50, 0x8b, 0x1b, 0x8d, 0x1d, 0x5d, 0x53, + 0xd6, 0x51, 0x4b, 0xf4, 0x0d, 0xb6, 0x8e, 0x5a, 0xfc, 0x34, 0x80, 0x6e, 0x10, 0xc8, 0xb6, 0x1c, + 0x84, 0xe0, 0x03, 0x70, 0x3c, 0xb2, 0xca, 0xcc, 0x52, 0x05, 0x63, 0x16, 0x5d, 0x61, 0xd5, 0xc2, + 0x85, 0x94, 0xb6, 0x70, 0x8e, 0xb0, 0x08, 0x60, 0x00, 0xbc, 0xce, 0x52, 0x42, 0xc4, 0x03, 0xee, + 0x58, 0x04, 0xa9, 0x55, 0xc3, 0x4f, 0xb4, 0x87, 0x56, 0xf3, 0xee, 0xb3, 0x94, 0xd2, 0xed, 0x36, + 0xbf, 0xd0, 0x3c, 0x1d, 0x2e, 0x1c, 0x62, 0xe6, 0x44, 0x5e, 0xa6, 0x99, 0x0d, 0x55, 0x10, 0x51, + 0xfb, 0x22, 0xcc, 0x3f, 0x00, 0xf3, 0x91, 0x2b, 0x0f, 0x5f, 0xa8, 0x5f, 0x8e, 0x81, 0x85, 0x0e, + 0x57, 0xf8, 0x7f, 0x25, 0x96, 0x09, 0x5c, 0xfa, 0x32, 0x21, 0xee, 0x5f, 0x99, 0x1e, 0xfd, 0x0b, + 0x4e, 0x83, 0x51, 0x5a, 0x78, 0x51, 0xcf, 0x1c, 0x16, 0xdd, 0x0f, 0x78, 0x1f, 0x64, 0x7d, 0x58, + 0xc5, 0xac, 0xd7, 0x35, 0x8c, 0x35, 0xd3, 0x90, 0x6c, 0xe7, 0xc1, 0x19, 0xa1, 0xdc, 0x9d, 0x75, + 0xbc, 0xe5, 0x4f, 0xcf, 0xf2, 0xb3, 0x6e, 0xcb, 0x84, 0xd5, 0xbd, 0xa2, 0x66, 0x0a, 0x75, 0x99, + 0xec, 0x16, 0x6f, 0xa1, 0x9a, 0xac, 0xb4, 0x56, 0x91, 0x22, 0x9e, 0xf4, 0x40, 0x2a, 0x3e, 0x86, + 0x28, 0x13, 0xe4, 0xc0, 0xfb, 0x42, 0xc7, 0xe1, 0x47, 0x7b, 0x80, 0xf7, 0x40, 0x62, 0xf0, 0xeb, + 0x60, 0x52, 0x45, 0x58, 0xb1, 0x35, 0xcb, 0x29, 0xd8, 0x69, 0x7d, 0x38, 0x59, 0x3a, 0x5b, 0x64, + 0xad, 0x9e, 0xd7, 0xcc, 0xb1, 0xe6, 0xae, 0xb8, 0x1a, 0x90, 0xb2, 0x18, 0x08, 0x9f, 0x86, 0xf7, + 0xc1, 0x29, 0x9f, 0x57, 0xd3, 0x42, 0x36, 0x2d, 0x3d, 0x3d, 0x4b, 0xbd, 0x44, 0x99, 0x3d, 0xf3, + 0xf9, 0xc7, 0x97, 0x4e, 0x33, 0x74, 0xdf, 0xb2, 0xcc, 0x42, 0x9b, 0xc4, 0xd6, 0x8c, 0x9a, 0x38, + 0xe3, 0x61, 0xdc, 0x61, 0x10, 0x9e, 0x01, 0x4f, 0x82, 0xb1, 0xef, 0xc9, 0x9a, 0x8e, 0xd4, 0xec, + 0xf8, 0x02, 0x57, 0x18, 0x17, 0xd9, 0x17, 0xbc, 0x0c, 0xc6, 0x9c, 0xee, 0xae, 0x81, 0xb3, 0x13, + 0x0b, 0x5c, 0x61, 0xaa, 0xc4, 0x77, 0x62, 0xbf, 0x6c, 0x1a, 0xea, 0x26, 0xa5, 0x14, 0xd9, 0x09, + 0xb8, 0x05, 0x7c, 0x3f, 0x91, 0x88, 0xb9, 0x87, 0x0c, 0x9c, 0x05, 0x94, 0xd1, 0x0b, 0x4c, 0xab, + 0x27, 0xda, 0xb5, 0x5a, 0x35, 0xc8, 0xe7, 0x1f, 0x5f, 0x02, 0xec, 0x92, 0xaa, 0x41, 0xe8, 0x5b, + 0x48, 0x31, 0xb6, 0x28, 0x04, 0x7c, 0x15, 0xf8, 0x2b, 0x6e, 0xad, 0x9e, 0x9d, 0xa4, 0x2e, 0x73, + 0xd4, 0x5b, 0xa5, 0x55, 0x3a, 0xfc, 0x1a, 0x98, 0x61, 0x61, 0x87, 0xb0, 0xa4, 0x34, 0x6c, 0xdb, + 0xe9, 0x1e, 0x90, 0x65, 0x2a, 0xbb, 0xd9, 0x23, 0x54, 0xc2, 0x13, 0xfe, 0x76, 0xc5, 0xdd, 0xbd, + 0xee, 0x6c, 0x3a, 0xdd, 0x5c, 0xbe, 0x63, 0x40, 0xb2, 0xb8, 0x47, 0x00, 0x04, 0x21, 0xcd, 0xde, + 0x9b, 0xeb, 0xa9, 0x72, 0x5c, 0xb7, 0x38, 0x14, 0x43, 0xc0, 0xfc, 0x3e, 0x7b, 0x11, 0xa3, 0x6d, + 0xae, 0x4f, 0x7b, 0x53, 0xc6, 0x5b, 0x26, 0xfb, 0xf2, 0xca, 0xc2, 0x01, 0xe3, 0x98, 0x97, 0xc1, + 0x72, 0x0f, 0x57, 0x32, 0x75, 0x5c, 0x04, 0x30, 0x88, 0x52, 0x96, 0xa9, 0xbc, 0xdc, 0xe7, 0x3f, + 0x5f, 0xee, 0xd3, 0xad, 0xd2, 0xaa, 0xfe, 0x42, 0x72, 0x9f, 0x10, 0x0d, 0x9f, 0xff, 0x8f, 0xfe, + 0x86, 0xaf, 0x81, 0x8b, 0xe9, 0xb8, 0x65, 0xca, 0x78, 0x03, 0x8c, 0xd8, 0xde, 0x34, 0x24, 0x65, + 0xfe, 0xa0, 0x07, 0x78, 0x9e, 0x65, 0xe9, 0xb2, 0x6e, 0x2a, 0x7b, 0xf8, 0xae, 0x41, 0x34, 0xfd, + 0x36, 0x7a, 0xe4, 0x7a, 0xa5, 0xf7, 0xde, 0x6e, 0xb3, 0x86, 0x28, 0x99, 0x86, 0x71, 0xf0, 0x3a, + 0x98, 0xd9, 0xa1, 0xfb, 0x52, 0xc3, 0x21, 0x90, 0x68, 0xc9, 0xee, 0x7a, 0x3e, 0x47, 0x4b, 0xc1, + 0xe9, 0x9d, 0x84, 0xe3, 0xfc, 0x0a, 0x6b, 0x5f, 0x2a, 0xbe, 0xec, 0x6b, 0xb6, 0x59, 0xaf, 0xb0, + 0x2e, 0xdb, 0xb3, 0x46, 0xa4, 0x13, 0xe7, 0xa2, 0x9d, 0x38, 0xbf, 0x06, 0xce, 0x1e, 0x08, 0x11, + 0xf4, 0x26, 0x61, 0x9d, 0x73, 0x71, 0x9d, 0x97, 0x3e, 0x3c, 0x07, 0x46, 0x29, 0x10, 0xfc, 0x45, + 0x06, 0x4c, 0x27, 0x4d, 0xa1, 0xe0, 0xb5, 0xde, 0xc3, 0x2d, 0x3a, 0x1f, 0xcb, 0xad, 0x0c, 0x80, + 0xe0, 0x0a, 0xc2, 0xff, 0x88, 0xfb, 0xfe, 0x17, 0x7f, 0xfb, 0x49, 0xe6, 0x07, 0xdc, 0x76, 0x19, + 0x5e, 0xeb, 0x3e, 0x25, 0xf5, 0x85, 0x66, 0xa3, 0x2e, 0xe1, 0x71, 0x48, 0x0d, 0x4f, 0xe0, 0x95, + 0xbe, 0x10, 0x58, 0x68, 0x3c, 0x81, 0x5f, 0x70, 0xac, 0x18, 0x8b, 0xc6, 0x2e, 0xbc, 0xda, 0xbb, + 0x9c, 0x91, 0x69, 0x5b, 0xee, 0x5a, 0xff, 0x00, 0x4c, 0x4f, 0x6f, 0x51, 0x35, 0xbd, 0x06, 0x97, + 0x7b, 0x90, 0xd0, 0x9d, 0xc3, 0xc1, 0xf7, 0x33, 0x20, 0xdb, 0x61, 0xb8, 0x86, 0xe1, 0xad, 0x3e, + 0x39, 0x4b, 0x9c, 0xe3, 0xe5, 0xde, 0x39, 0x24, 0x34, 0x26, 0xf4, 0x4d, 0x2a, 0x74, 0x6f, 0x8e, + 0xc1, 0x88, 0x1c, 0x40, 0xc9, 0x1f, 0x91, 0xc1, 0xff, 0x72, 0x60, 0x26, 0x79, 0x56, 0x87, 0xe1, + 0x7a, 0xdf, 0x4c, 0xb7, 0x0f, 0x05, 0x73, 0xb7, 0x0e, 0x07, 0x8c, 0x29, 0xe0, 0x06, 0x55, 0xc0, + 0x0a, 0xbc, 0xda, 0x87, 0x02, 0x4c, 0x2b, 0x24, 0xff, 0xbf, 0xbc, 0x51, 0x47, 0xe2, 0x64, 0x09, + 0xae, 0xa5, 0xe7, 0xfa, 0xa0, 0x41, 0x5a, 0xee, 0xc6, 0xc0, 0x38, 0x4c, 0xf0, 0x15, 0x2a, 0xf8, + 0xd7, 0xe1, 0x5b, 0x29, 0x7e, 0x38, 0xf1, 0xa7, 0x88, 0x91, 0x26, 0x2e, 0x41, 0xe4, 0x70, 0xe7, + 0xd0, 0x97, 0xc8, 0x09, 0xb3, 0xb3, 0xbe, 0x44, 0x4e, 0x9a, 0x6a, 0xf5, 0x27, 0x72, 0xe4, 0xdd, + 0x86, 0xbf, 0xe7, 0x58, 0x8b, 0x19, 0x19, 0x68, 0xc1, 0xb7, 0xd3, 0xb3, 0x98, 0x34, 0x27, 0xcb, + 0x5d, 0xed, 0xfb, 0x3c, 0x13, 0xed, 0x4d, 0x2a, 0x5a, 0x09, 0x2e, 0x75, 0x17, 0x8d, 0x30, 0x00, + 0xf7, 0x07, 0x11, 0xf8, 0xd3, 0x0c, 0x7b, 0x0f, 0x0f, 0x9e, 0x50, 0xc1, 0x3b, 0xe9, 0x59, 0x4c, + 0x35, 0x19, 0xcb, 0x6d, 0x1c, 0x1e, 0x20, 0x53, 0xc2, 0x3a, 0x55, 0xc2, 0x75, 0x58, 0xe9, 0xae, + 0x04, 0xdb, 0x47, 0x0c, 0x7c, 0xda, 0xa6, 0x98, 0x92, 0x3b, 0x71, 0x83, 0xff, 0x68, 0x9b, 0xa8, + 0x45, 0xc7, 0x3b, 0x18, 0xf6, 0xf0, 0x36, 0x77, 0x18, 0xdb, 0xe5, 0xca, 0x83, 0x40, 0x30, 0xa9, + 0xcb, 0x54, 0xea, 0x6f, 0xc0, 0xcb, 0xdd, 0xa5, 0xf6, 0x06, 0x76, 0x52, 0xfc, 0x01, 0xfb, 0x24, + 0xc3, 0x7e, 0x1d, 0x4a, 0x31, 0xd7, 0x82, 0x5b, 0xe9, 0x99, 0x4e, 0x3f, 0x9a, 0xcb, 0xdd, 0x3d, + 0x64, 0x54, 0xa6, 0x9d, 0x1a, 0xd5, 0x8e, 0xbc, 0xbd, 0x0c, 0x85, 0xee, 0xfa, 0x89, 0x96, 0x3a, + 0x17, 0xd3, 0x1c, 0xf0, 0x2b, 0x9b, 0x5f, 0x73, 0x60, 0x32, 0x34, 0x66, 0x82, 0x6f, 0xf4, 0x60, + 0xda, 0xf0, 0xb8, 0x2a, 0xf7, 0x66, 0xef, 0x07, 0x99, 0xac, 0x4b, 0x54, 0xd6, 0x45, 0x58, 0x48, + 0xe1, 0x09, 0x2e, 0x93, 0x7f, 0xce, 0xc4, 0x8a, 0xe1, 0xe4, 0x59, 0x52, 0x2f, 0xc1, 0x9f, 0x6a, + 0x06, 0xd6, 0x4b, 0xf0, 0xa7, 0x1b, 0x73, 0xf1, 0x4f, 0xdd, 0x32, 0xf7, 0x43, 0x6e, 0x3b, 0x55, + 0x02, 0x30, 0x1d, 0x20, 0x49, 0x33, 0xa4, 0xa0, 0x95, 0x8d, 0x99, 0xff, 0x5a, 0xbf, 0x20, 0xbe, + 0x4b, 0xfc, 0x26, 0x03, 0xce, 0xa7, 0x6e, 0x54, 0xe1, 0xdd, 0x7e, 0x2b, 0xd8, 0x03, 0x7b, 0xed, + 0xdc, 0xbd, 0xc3, 0x86, 0x65, 0xfa, 0xde, 0xa6, 0xea, 0xde, 0x82, 0x62, 0xcf, 0xe5, 0xb2, 0x64, + 0x21, 0x3b, 0xd0, 0x98, 0xf0, 0x38, 0xde, 0x19, 0x3f, 0x81, 0x3f, 0x1e, 0x06, 0xe7, 0xd2, 0xf4, + 0xb3, 0x70, 0x63, 0x80, 0x6a, 0x28, 0xb1, 0x91, 0xcf, 0xbd, 0x7b, 0x88, 0x88, 0x4c, 0x53, 0x9f, + 0xb8, 0x9e, 0xf9, 0x3b, 0x6e, 0xfb, 0x3e, 0x7c, 0xaf, 0x17, 0x6d, 0x45, 0x87, 0x7d, 0x51, 0xf7, + 0x4c, 0x52, 0xdb, 0xb7, 0x06, 0x02, 0xf7, 0xdc, 0x36, 0x09, 0xf9, 0xb7, 0x99, 0x58, 0x71, 0x1f, + 0xca, 0x0d, 0x95, 0x41, 0x66, 0x4a, 0x9e, 0xda, 0x57, 0x07, 0x03, 0xe9, 0x2f, 0x07, 0xf8, 0xca, + 0x18, 0x24, 0x07, 0x24, 0x83, 0xf8, 0x39, 0xe0, 0x9f, 0x1c, 0xfb, 0x7d, 0x34, 0x69, 0x1a, 0x02, + 0x7b, 0x98, 0xc7, 0x1d, 0x30, 0x71, 0xc9, 0xad, 0x0d, 0x0a, 0xd3, 0x7b, 0x81, 0xdc, 0x61, 0x78, + 0x03, 0xff, 0xcd, 0xc5, 0xfe, 0xed, 0x25, 0x3a, 0x5e, 0x81, 0x37, 0x7a, 0x37, 0x74, 0xe2, 0x8c, + 0x27, 0x77, 0x73, 0x70, 0xa0, 0xde, 0xa5, 0x0e, 0x39, 0x87, 0xf0, 0xd8, 0x1f, 0x31, 0x3d, 0x29, + 0x7f, 0xf3, 0xd3, 0xe7, 0xf3, 0xdc, 0x67, 0xcf, 0xe7, 0xb9, 0xbf, 0x3e, 0x9f, 0xe7, 0x9e, 0xbe, + 0x98, 0x1f, 0xfa, 0xec, 0xc5, 0xfc, 0xd0, 0x1f, 0x5f, 0xcc, 0x0f, 0x6d, 0x5f, 0xa9, 0x69, 0x64, + 0xb7, 0xb1, 0x53, 0x54, 0xcc, 0x3a, 0xfb, 0xf7, 0xa9, 0xd0, 0x2d, 0x97, 0xfc, 0x5b, 0x9a, 0xaf, + 0x0b, 0x8f, 0x62, 0x65, 0x7a, 0xcb, 0x42, 0x78, 0x67, 0x8c, 0xfe, 0x44, 0xfd, 0xda, 0xff, 0x02, + 0x00, 0x00, 0xff, 0xff, 0xfc, 0xce, 0x4e, 0x9a, 0xde, 0x26, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3892,20 +3892,10 @@ func (m *QueryConsumerValidatorsValidator) MarshalToSizedBuffer(dAtA []byte) (in } i-- dAtA[i] = 0x52 - { - 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] = 0x4a if m.Status != 0 { i = encodeVarintQuery(dAtA, i, uint64(m.Status)) i-- - dAtA[i] = 0x40 + dAtA[i] = 0x48 } if m.Jailed { i-- @@ -3915,14 +3905,14 @@ func (m *QueryConsumerValidatorsValidator) MarshalToSizedBuffer(dAtA []byte) (in dAtA[i] = 0 } i-- - dAtA[i] = 0x38 + dAtA[i] = 0x40 } 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] = 0x32 + dAtA[i] = 0x3a } { size, err := m.Description.MarshalToSizedBuffer(dAtA[:i]) @@ -3933,6 +3923,16 @@ func (m *QueryConsumerValidatorsValidator) MarshalToSizedBuffer(dAtA []byte) (in i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- + dAtA[i] = 0x32 + { + 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] = 0x2a { size := m.ConsumerCommissionRate.Size() @@ -4709,6 +4709,8 @@ func (m *QueryConsumerValidatorsValidator) Size() (n int) { } 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) @@ -4721,8 +4723,6 @@ func (m *QueryConsumerValidatorsValidator) Size() (n int) { if m.Status != 0 { n += 1 + sovQuery(uint64(m.Status)) } - l = m.ProviderCommissionRate.Size() - n += 1 + l + sovQuery(uint64(l)) l = m.ProviderTokens.Size() n += 1 + l + sovQuery(uint64(l)) if m.ProviderPower != 0 { @@ -7687,6 +7687,40 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { } iNdEx = postIndex case 5: + 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 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Description", wireType) } @@ -7719,7 +7753,7 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 6: + case 7: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ProviderOperatorAddress", wireType) } @@ -7751,7 +7785,7 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { } m.ProviderOperatorAddress = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 7: + case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Jailed", wireType) } @@ -7771,7 +7805,7 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { } } m.Jailed = bool(v != 0) - case 8: + case 9: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) } @@ -7790,40 +7824,6 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { break } } - case 9: - 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 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ProviderTokens", wireType) From 87bc7323eb4298b213f2e14341147e3330f3ae40 Mon Sep 17 00:00:00 2001 From: Simon Noetzlin Date: Fri, 23 Aug 2024 15:14:05 +0200 Subject: [PATCH 5/5] deprecate power for consumer_power --- .../ccv/provider/v1/query.proto | 24 +- x/ccv/provider/keeper/grpc_query.go | 2 +- x/ccv/provider/keeper/grpc_query_test.go | 4 +- x/ccv/provider/types/query.pb.go | 394 ++++++++++-------- 4 files changed, 232 insertions(+), 192 deletions(-) diff --git a/proto/interchain_security/ccv/provider/v1/query.proto b/proto/interchain_security/ccv/provider/v1/query.proto index 199c97b3dc..0af0d31293 100644 --- a/proto/interchain_security/ccv/provider/v1/query.proto +++ b/proto/interchain_security/ccv/provider/v1/query.proto @@ -340,36 +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 consumer_commission_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 = 5 [ + 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 = 6 [(gogoproto.nullable) = false]; + cosmos.staking.v1beta1.Description description = 7 [(gogoproto.nullable) = false]; // provider_operator_address defines the address of the validator's operator - string provider_operator_address = 7 [(cosmos_proto.scalar) = "cosmos.ValidatorAddressString"]; + 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 = 8; + bool jailed = 9; // status is the validator status (bonded/unbonding/unbonded). - cosmos.staking.v1beta1.BondStatus status = 9; + cosmos.staking.v1beta1.BondStatus status = 10; // provider_tokens defines the delegated tokens (incl. self-delegation). - string provider_tokens = 10 [ + 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 = 11; + int64 provider_power = 12; // validates_current_epoch defines whether the validator has to validate for the current epoch or not - bool validates_current_epoch = 12; + 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 62ee3061ec..5408cc606a 100644 --- a/x/ccv/provider/keeper/grpc_query.go +++ b/x/ccv/provider/keeper/grpc_query.go @@ -370,7 +370,7 @@ func (k Keeper) QueryConsumerValidators(goCtx context.Context, req *types.QueryC validators = append(validators, &types.QueryConsumerValidatorsValidator{ ProviderAddress: sdk.ConsAddress(consumerVal.ProviderConsAddr).String(), ConsumerKey: consumerVal.PublicKey, - Power: consumerVal.Power, + ConsumerPower: consumerVal.Power, ConsumerCommissionRate: consumerRate, Description: providerVal.Description, ProviderOperatorAddress: providerVal.OperatorAddress, diff --git a/x/ccv/provider/keeper/grpc_query_test.go b/x/ccv/provider/keeper/grpc_query_test.go index 4fa05b0604..00457efa19 100644 --- a/x/ccv/provider/keeper/grpc_query_test.go +++ b/x/ccv/provider/keeper/grpc_query_test.go @@ -142,7 +142,7 @@ func TestQueryConsumerValidators(t *testing.T) { { ProviderAddress: providerAddr1.String(), ConsumerKey: &pk1, - Power: 1, + ConsumerPower: 1, ConsumerCommissionRate: val1ConsComRate, Description: val1.Description, ProviderOperatorAddress: val1.OperatorAddress, @@ -156,7 +156,7 @@ func TestQueryConsumerValidators(t *testing.T) { { ProviderAddress: providerAddr2.String(), ConsumerKey: &pk2, - Power: 2, + ConsumerPower: 2, ConsumerCommissionRate: val2.Commission.Rate, Description: val2.Description, ProviderOperatorAddress: val2.OperatorAddress, diff --git a/x/ccv/provider/types/query.pb.go b/x/ccv/provider/types/query.pb.go index 36ae432556..467cd046c0 100644 --- a/x/ccv/provider/types/query.pb.go +++ b/x/ccv/provider/types/query.pb.go @@ -1413,26 +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 - ConsumerCommissionRate cosmossdk_io_math.LegacyDec `protobuf:"bytes,4,opt,name=consumer_commission_rate,json=consumerCommissionRate,proto3,customtype=cosmossdk.io/math.LegacyDec" json:"consumer_commission_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,5,opt,name=provider_commission_rate,json=providerCommissionRate,proto3,customtype=cosmossdk.io/math.LegacyDec" json:"provider_commission_rate"` + 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,6,opt,name=description,proto3" json:"description"` + 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,7,opt,name=provider_operator_address,json=providerOperatorAddress,proto3" json:"provider_operator_address,omitempty"` + 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,8,opt,name=jailed,proto3" json:"jailed,omitempty"` + 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,9,opt,name=status,proto3,enum=cosmos.staking.v1beta1.BondStatus" json:"status,omitempty"` + 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,10,opt,name=provider_tokens,json=providerTokens,proto3,customtype=cosmossdk.io/math.Int" json:"provider_tokens"` + 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,11,opt,name=provider_power,json=providerPower,proto3" json:"provider_power,omitempty"` + 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,12,opt,name=validates_current_epoch,json=validatesCurrentEpoch,proto3" json:"validates_current_epoch,omitempty"` + ValidatesCurrentEpoch bool `protobuf:"varint,13,opt,name=validates_current_epoch,json=validatesCurrentEpoch,proto3" json:"validates_current_epoch,omitempty"` } func (m *QueryConsumerValidatorsValidator) Reset() { *m = QueryConsumerValidatorsValidator{} } @@ -1482,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 @@ -1489,6 +1492,13 @@ 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 @@ -1999,157 +2009,158 @@ func init() { } var fileDescriptor_422512d7b7586cd7 = []byte{ - // 2396 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4f, 0x6c, 0x1c, 0x57, - 0x19, 0xf7, 0xac, 0xff, 0xd4, 0x7e, 0x4e, 0x9c, 0xf6, 0xc5, 0x89, 0x37, 0x6b, 0xc7, 0xeb, 0x4c, - 0x52, 0xd8, 0x38, 0xc9, 0x8e, 0xbd, 0x55, 0x69, 0x1b, 0x48, 0x13, 0xef, 0x3a, 0x4e, 0x56, 0x4e, - 0x13, 0x77, 0xec, 0x04, 0xe4, 0x12, 0x26, 0xe3, 0x99, 0xc7, 0x7a, 0xf0, 0xec, 0xcc, 0x78, 0xde, - 0xdb, 0x4d, 0x56, 0x51, 0x0e, 0x05, 0x09, 0xb5, 0x1c, 0x50, 0x24, 0x84, 0xc4, 0xb1, 0x17, 0x24, - 0x24, 0x38, 0xa1, 0x0a, 0xc4, 0xad, 0xc7, 0xde, 0x28, 0xed, 0x05, 0x81, 0x14, 0x50, 0xc2, 0x01, - 0x21, 0x21, 0xa1, 0xc2, 0x15, 0x09, 0xcd, 0x9b, 0x37, 0x7f, 0x77, 0xd6, 0x3b, 0xbb, 0xeb, 0x03, - 0x37, 0xcf, 0x7b, 0xdf, 0xfb, 0xbd, 0xef, 0xff, 0xfb, 0xbe, 0x6f, 0x0d, 0x04, 0xcd, 0x20, 0xc8, - 0x56, 0x76, 0x65, 0xcd, 0x90, 0x30, 0x52, 0x1a, 0xb6, 0x46, 0x5a, 0x82, 0xa2, 0x34, 0x05, 0xcb, - 0x36, 0x9b, 0x9a, 0x8a, 0x6c, 0xa1, 0xb9, 0x2c, 0xec, 0x37, 0x90, 0xdd, 0x2a, 0x5a, 0xb6, 0x49, - 0x4c, 0x78, 0x36, 0xe1, 0x40, 0x51, 0x51, 0x9a, 0x45, 0xef, 0x40, 0xb1, 0xb9, 0x9c, 0x9b, 0xab, - 0x99, 0x66, 0x4d, 0x47, 0x82, 0x6c, 0x69, 0x82, 0x6c, 0x18, 0x26, 0x91, 0x89, 0x66, 0x1a, 0xd8, - 0x85, 0xc8, 0x4d, 0xd7, 0xcc, 0x9a, 0x49, 0xff, 0x14, 0x9c, 0xbf, 0xd8, 0x6a, 0x9e, 0x9d, 0xa1, - 0x5f, 0x3b, 0x8d, 0xef, 0x0a, 0x44, 0xab, 0x23, 0x4c, 0xe4, 0xba, 0xc5, 0x08, 0x4a, 0x69, 0x58, - 0xf5, 0xb9, 0x70, 0xcf, 0x2c, 0x75, 0x3a, 0xd3, 0x5c, 0x16, 0xf0, 0xae, 0x6c, 0x23, 0x55, 0x52, - 0x4c, 0x03, 0x37, 0xea, 0xfe, 0x89, 0x57, 0x0f, 0x38, 0xf1, 0x50, 0xb3, 0x11, 0x23, 0x9b, 0x23, - 0xc8, 0x50, 0x91, 0x5d, 0xd7, 0x0c, 0x22, 0x28, 0x76, 0xcb, 0x22, 0xa6, 0xb0, 0x87, 0x5a, 0x9e, - 0x84, 0xa7, 0x14, 0x13, 0xd7, 0x4d, 0x2c, 0xb9, 0x42, 0xba, 0x1f, 0x6c, 0xeb, 0x9c, 0xfb, 0x25, - 0x60, 0x22, 0xef, 0x69, 0x46, 0x4d, 0x68, 0x2e, 0xef, 0x20, 0x22, 0x2f, 0x7b, 0xdf, 0x2e, 0x15, - 0x7f, 0x1f, 0xcc, 0xbe, 0xeb, 0x28, 0xbd, 0xc2, 0x98, 0xbb, 0x81, 0x0c, 0x84, 0x35, 0x2c, 0xa2, - 0xfd, 0x06, 0xc2, 0x04, 0x9e, 0x06, 0xe3, 0x2e, 0x87, 0x9a, 0x9a, 0xe5, 0x16, 0xb8, 0xc2, 0x44, - 0x39, 0x93, 0xe5, 0xc4, 0x97, 0xe8, 0x5a, 0x55, 0x85, 0x79, 0x30, 0xe9, 0x49, 0xe5, 0x50, 0x64, - 0x1c, 0x0a, 0x11, 0x78, 0x4b, 0x55, 0x95, 0x7f, 0x0c, 0xe6, 0x92, 0xe1, 0xb1, 0x65, 0x1a, 0x18, - 0xc1, 0xf7, 0xc0, 0xd1, 0x9a, 0xbb, 0x24, 0x61, 0x22, 0x13, 0x44, 0x2f, 0x99, 0x2c, 0x2d, 0x15, - 0x3b, 0x19, 0xbf, 0xb9, 0x5c, 0x8c, 0x61, 0x6d, 0x3a, 0xe7, 0xca, 0x23, 0x9f, 0x3e, 0xcb, 0x0f, - 0x89, 0x47, 0x6a, 0xa1, 0x35, 0x7e, 0x0e, 0xe4, 0x22, 0x97, 0x57, 0x1c, 0x38, 0x4f, 0x34, 0x5e, - 0x8e, 0x49, 0xee, 0xed, 0x32, 0xce, 0xca, 0x60, 0x8c, 0x5e, 0x8f, 0xb3, 0xdc, 0xc2, 0x70, 0x61, - 0xb2, 0xb4, 0x58, 0x4c, 0xe1, 0x8f, 0x45, 0x0a, 0x22, 0xb2, 0x93, 0xfc, 0x79, 0xf0, 0xd5, 0xf6, - 0x2b, 0x36, 0x89, 0x6c, 0x93, 0x0d, 0xdb, 0xb4, 0x4c, 0x2c, 0xeb, 0x3e, 0x37, 0x1f, 0x70, 0xa0, - 0xd0, 0x9d, 0x96, 0xf1, 0xf6, 0x6d, 0x30, 0x61, 0x79, 0x8b, 0x4c, 0x63, 0x6f, 0xa7, 0x63, 0x8f, - 0x81, 0xaf, 0xa8, 0xaa, 0xe6, 0x04, 0x4a, 0x00, 0x1d, 0x00, 0xf2, 0x05, 0xf0, 0x95, 0x24, 0x4e, - 0x4c, 0xab, 0x8d, 0xe9, 0x1f, 0x72, 0xc9, 0x02, 0x46, 0x48, 0x7d, 0x4b, 0xb7, 0xf1, 0x7c, 0xa5, - 0x27, 0x9e, 0x45, 0x54, 0x37, 0x9b, 0xb2, 0x9e, 0xc8, 0xf2, 0xcf, 0x32, 0x60, 0x94, 0xde, 0x0d, - 0x4f, 0xc5, 0x1d, 0x36, 0x70, 0xd6, 0x59, 0x30, 0xa1, 0xe8, 0x1a, 0x32, 0x48, 0xe0, 0xaa, 0xe3, - 0xee, 0x42, 0x55, 0x85, 0xc7, 0xc1, 0x28, 0x31, 0x2d, 0xe9, 0x76, 0x76, 0x78, 0x81, 0x2b, 0x1c, - 0x15, 0x47, 0x88, 0x69, 0xdd, 0x86, 0x8b, 0x00, 0xd6, 0x35, 0x43, 0xb2, 0xcc, 0x87, 0x8e, 0x7f, - 0x1b, 0x92, 0x4b, 0x31, 0xb2, 0xc0, 0x15, 0x86, 0xc5, 0xa9, 0xba, 0x66, 0x6c, 0x38, 0x1b, 0x55, - 0x63, 0xcb, 0xa1, 0x5d, 0x02, 0xd3, 0x4d, 0x59, 0xd7, 0x54, 0x99, 0x98, 0x36, 0x66, 0x47, 0x14, - 0xd9, 0xca, 0x8e, 0x52, 0x3c, 0x18, 0xec, 0xd1, 0x43, 0x15, 0xd9, 0x82, 0x8b, 0xe0, 0x15, 0x7f, - 0x55, 0xc2, 0x88, 0x50, 0xf2, 0x31, 0x4a, 0x7e, 0xcc, 0xdf, 0xd8, 0x44, 0xc4, 0xa1, 0x9d, 0x03, - 0x13, 0xb2, 0xae, 0x9b, 0x0f, 0x75, 0x0d, 0x93, 0xec, 0x4b, 0x0b, 0xc3, 0x85, 0x09, 0x31, 0x58, - 0x80, 0x39, 0x30, 0xae, 0x22, 0xa3, 0x45, 0x37, 0xc7, 0xe9, 0xa6, 0xff, 0xcd, 0xff, 0x8a, 0x03, - 0x67, 0xa8, 0x8d, 0xee, 0x79, 0x90, 0x21, 0x27, 0xb0, 0x53, 0xc6, 0xf9, 0x15, 0xf0, 0xb2, 0x67, - 0x12, 0x49, 0x56, 0x55, 0x1b, 0x61, 0xec, 0x6a, 0xb0, 0x0c, 0xbf, 0x7c, 0x96, 0x9f, 0x6a, 0xc9, - 0x75, 0xfd, 0x32, 0xcf, 0x36, 0x78, 0xf1, 0x98, 0x47, 0xbb, 0xe2, 0xae, 0xc4, 0xd3, 0xc4, 0x70, - 0x3c, 0x4d, 0x5c, 0x1e, 0xff, 0xe0, 0xa3, 0xfc, 0xd0, 0xdf, 0x3f, 0xca, 0x0f, 0xf1, 0x77, 0x00, - 0x7f, 0x10, 0xb7, 0xcc, 0x99, 0xce, 0x83, 0x97, 0x7d, 0x40, 0x8f, 0x1f, 0xd7, 0xda, 0xc7, 0x94, - 0x10, 0xbd, 0xc3, 0x4d, 0xbb, 0xfc, 0x1b, 0x21, 0xee, 0xd2, 0xcb, 0xdf, 0x76, 0xdf, 0x01, 0xf2, - 0xc7, 0x78, 0x18, 0x48, 0xfe, 0x28, 0xb7, 0x81, 0xfc, 0x6d, 0xf6, 0x60, 0xf2, 0xc7, 0x74, 0xcf, - 0xcf, 0x82, 0x53, 0x14, 0x70, 0x6b, 0xd7, 0x36, 0x09, 0xd1, 0x11, 0x4d, 0x8d, 0x5e, 0x00, 0xff, - 0x81, 0x63, 0x29, 0x32, 0xb6, 0xcb, 0xae, 0xc9, 0x83, 0x49, 0xac, 0xcb, 0x78, 0x57, 0xaa, 0x23, - 0x82, 0x6c, 0x7a, 0xc3, 0xb0, 0x08, 0xe8, 0xd2, 0x3b, 0xce, 0x0a, 0x2c, 0x81, 0x13, 0x21, 0x02, - 0x89, 0x7a, 0xa4, 0x6c, 0x28, 0x88, 0x2a, 0x67, 0x58, 0x3c, 0x1e, 0x90, 0xae, 0x78, 0x5b, 0xf0, - 0x3b, 0x20, 0x6b, 0xa0, 0x47, 0x44, 0xb2, 0x91, 0xa5, 0x23, 0x43, 0xc3, 0xbb, 0x92, 0x22, 0x1b, - 0xaa, 0x23, 0x2c, 0xa2, 0x9a, 0x99, 0x2c, 0xe5, 0x8a, 0xee, 0x0b, 0x5d, 0xf4, 0x5e, 0xe8, 0xe2, - 0x96, 0xf7, 0x42, 0x97, 0xc7, 0x9d, 0x3c, 0xff, 0xf4, 0x2f, 0x79, 0x4e, 0x3c, 0xe9, 0xa0, 0x88, - 0x1e, 0x48, 0xc5, 0xc3, 0xe0, 0x2f, 0x82, 0x45, 0x2a, 0x92, 0x88, 0x6a, 0x1a, 0x26, 0xc8, 0x46, - 0x6a, 0x90, 0x41, 0x1e, 0xca, 0xb6, 0xba, 0x8a, 0x0c, 0xb3, 0xee, 0xa7, 0xb0, 0xeb, 0xe0, 0x42, - 0x2a, 0x6a, 0xa6, 0x91, 0x93, 0x60, 0x4c, 0xa5, 0x2b, 0xf4, 0x55, 0x98, 0x10, 0xd9, 0x17, 0x3f, - 0xcf, 0xde, 0x39, 0x37, 0x3b, 0x21, 0x95, 0x26, 0xa3, 0xea, 0xaa, 0x7f, 0xcd, 0xfb, 0x1c, 0x38, - 0xdd, 0x81, 0x80, 0x21, 0x3f, 0x00, 0x53, 0x56, 0x78, 0xcf, 0x7b, 0x77, 0x4a, 0xa9, 0x92, 0x64, - 0x04, 0x96, 0x3d, 0x86, 0x31, 0x3c, 0xde, 0x00, 0x47, 0x23, 0x64, 0x70, 0x0e, 0x30, 0x07, 0x5f, - 0x6d, 0xf7, 0xf9, 0x55, 0x38, 0x0f, 0x80, 0x97, 0x60, 0xab, 0xab, 0xd4, 0xa0, 0x23, 0x62, 0x68, - 0xa5, 0xab, 0x53, 0xf3, 0xfb, 0x40, 0xa0, 0x22, 0xaf, 0xe8, 0xfa, 0x86, 0xac, 0xd9, 0xf8, 0x9e, - 0xac, 0x57, 0x4c, 0xc3, 0xf1, 0xcb, 0x72, 0xf4, 0xc1, 0xa8, 0xae, 0x1e, 0x56, 0xb9, 0xf1, 0x73, - 0x0e, 0x2c, 0xa5, 0xbf, 0x93, 0x69, 0x7e, 0x1f, 0xbc, 0x62, 0xc9, 0x9a, 0x2d, 0x35, 0x65, 0xdd, - 0xa9, 0xd1, 0x68, 0x40, 0x31, 0xe5, 0xaf, 0xa5, 0x53, 0xbe, 0xac, 0xd9, 0xc1, 0x45, 0x7e, 0xc0, - 0x1a, 0x81, 0x2b, 0x4d, 0x59, 0x11, 0x12, 0xfe, 0x3f, 0x1c, 0x38, 0xd3, 0xf5, 0x14, 0x5c, 0xeb, - 0x14, 0xe5, 0xe5, 0xd9, 0x2f, 0x9f, 0xe5, 0x67, 0xdc, 0xac, 0x13, 0xa7, 0x48, 0x48, 0xbf, 0x6b, - 0x1d, 0xb3, 0x57, 0x08, 0x27, 0x4e, 0x91, 0x90, 0xc6, 0xae, 0x82, 0x23, 0x3e, 0xd5, 0x1e, 0x6a, - 0xb1, 0x68, 0x9d, 0x2b, 0x06, 0x15, 0x6a, 0xd1, 0xad, 0x50, 0x8b, 0x1b, 0x8d, 0x1d, 0x5d, 0x53, - 0xd6, 0x51, 0x4b, 0xf4, 0x0d, 0xb6, 0x8e, 0x5a, 0xfc, 0x34, 0x80, 0x6e, 0x10, 0xc8, 0xb6, 0x1c, - 0x84, 0xe0, 0x03, 0x70, 0x3c, 0xb2, 0xca, 0xcc, 0x52, 0x05, 0x63, 0x16, 0x5d, 0x61, 0xd5, 0xc2, - 0x85, 0x94, 0xb6, 0x70, 0x8e, 0xb0, 0x08, 0x60, 0x00, 0xbc, 0xce, 0x52, 0x42, 0xc4, 0x03, 0xee, - 0x58, 0x04, 0xa9, 0x55, 0xc3, 0x4f, 0xb4, 0x87, 0x56, 0xf3, 0xee, 0xb3, 0x94, 0xd2, 0xed, 0x36, - 0xbf, 0xd0, 0x3c, 0x1d, 0x2e, 0x1c, 0x62, 0xe6, 0x44, 0x5e, 0xa6, 0x99, 0x0d, 0x55, 0x10, 0x51, - 0xfb, 0x22, 0xcc, 0x3f, 0x00, 0xf3, 0x91, 0x2b, 0x0f, 0x5f, 0xa8, 0x5f, 0x8e, 0x81, 0x85, 0x0e, - 0x57, 0xf8, 0x7f, 0x25, 0x96, 0x09, 0x5c, 0xfa, 0x32, 0x21, 0xee, 0x5f, 0x99, 0x1e, 0xfd, 0x0b, - 0x4e, 0x83, 0x51, 0x5a, 0x78, 0x51, 0xcf, 0x1c, 0x16, 0xdd, 0x0f, 0x78, 0x1f, 0x64, 0x7d, 0x58, - 0xc5, 0xac, 0xd7, 0x35, 0x8c, 0x35, 0xd3, 0x90, 0x6c, 0xe7, 0xc1, 0x19, 0xa1, 0xdc, 0x9d, 0x75, - 0xbc, 0xe5, 0x4f, 0xcf, 0xf2, 0xb3, 0x6e, 0xcb, 0x84, 0xd5, 0xbd, 0xa2, 0x66, 0x0a, 0x75, 0x99, - 0xec, 0x16, 0x6f, 0xa1, 0x9a, 0xac, 0xb4, 0x56, 0x91, 0x22, 0x9e, 0xf4, 0x40, 0x2a, 0x3e, 0x86, - 0x28, 0x13, 0xe4, 0xc0, 0xfb, 0x42, 0xc7, 0xe1, 0x47, 0x7b, 0x80, 0xf7, 0x40, 0x62, 0xf0, 0xeb, - 0x60, 0x52, 0x45, 0x58, 0xb1, 0x35, 0xcb, 0x29, 0xd8, 0x69, 0x7d, 0x38, 0x59, 0x3a, 0x5b, 0x64, - 0xad, 0x9e, 0xd7, 0xcc, 0xb1, 0xe6, 0xae, 0xb8, 0x1a, 0x90, 0xb2, 0x18, 0x08, 0x9f, 0x86, 0xf7, - 0xc1, 0x29, 0x9f, 0x57, 0xd3, 0x42, 0x36, 0x2d, 0x3d, 0x3d, 0x4b, 0xbd, 0x44, 0x99, 0x3d, 0xf3, - 0xf9, 0xc7, 0x97, 0x4e, 0x33, 0x74, 0xdf, 0xb2, 0xcc, 0x42, 0x9b, 0xc4, 0xd6, 0x8c, 0x9a, 0x38, - 0xe3, 0x61, 0xdc, 0x61, 0x10, 0x9e, 0x01, 0x4f, 0x82, 0xb1, 0xef, 0xc9, 0x9a, 0x8e, 0xd4, 0xec, - 0xf8, 0x02, 0x57, 0x18, 0x17, 0xd9, 0x17, 0xbc, 0x0c, 0xc6, 0x9c, 0xee, 0xae, 0x81, 0xb3, 0x13, - 0x0b, 0x5c, 0x61, 0xaa, 0xc4, 0x77, 0x62, 0xbf, 0x6c, 0x1a, 0xea, 0x26, 0xa5, 0x14, 0xd9, 0x09, - 0xb8, 0x05, 0x7c, 0x3f, 0x91, 0x88, 0xb9, 0x87, 0x0c, 0x9c, 0x05, 0x94, 0xd1, 0x0b, 0x4c, 0xab, - 0x27, 0xda, 0xb5, 0x5a, 0x35, 0xc8, 0xe7, 0x1f, 0x5f, 0x02, 0xec, 0x92, 0xaa, 0x41, 0xe8, 0x5b, - 0x48, 0x31, 0xb6, 0x28, 0x04, 0x7c, 0x15, 0xf8, 0x2b, 0x6e, 0xad, 0x9e, 0x9d, 0xa4, 0x2e, 0x73, - 0xd4, 0x5b, 0xa5, 0x55, 0x3a, 0xfc, 0x1a, 0x98, 0x61, 0x61, 0x87, 0xb0, 0xa4, 0x34, 0x6c, 0xdb, - 0xe9, 0x1e, 0x90, 0x65, 0x2a, 0xbb, 0xd9, 0x23, 0x54, 0xc2, 0x13, 0xfe, 0x76, 0xc5, 0xdd, 0xbd, - 0xee, 0x6c, 0x3a, 0xdd, 0x5c, 0xbe, 0x63, 0x40, 0xb2, 0xb8, 0x47, 0x00, 0x04, 0x21, 0xcd, 0xde, - 0x9b, 0xeb, 0xa9, 0x72, 0x5c, 0xb7, 0x38, 0x14, 0x43, 0xc0, 0xfc, 0x3e, 0x7b, 0x11, 0xa3, 0x6d, - 0xae, 0x4f, 0x7b, 0x53, 0xc6, 0x5b, 0x26, 0xfb, 0xf2, 0xca, 0xc2, 0x01, 0xe3, 0x98, 0x97, 0xc1, - 0x72, 0x0f, 0x57, 0x32, 0x75, 0x5c, 0x04, 0x30, 0x88, 0x52, 0x96, 0xa9, 0xbc, 0xdc, 0xe7, 0x3f, - 0x5f, 0xee, 0xd3, 0xad, 0xd2, 0xaa, 0xfe, 0x42, 0x72, 0x9f, 0x10, 0x0d, 0x9f, 0xff, 0x8f, 0xfe, - 0x86, 0xaf, 0x81, 0x8b, 0xe9, 0xb8, 0x65, 0xca, 0x78, 0x03, 0x8c, 0xd8, 0xde, 0x34, 0x24, 0x65, - 0xfe, 0xa0, 0x07, 0x78, 0x9e, 0x65, 0xe9, 0xb2, 0x6e, 0x2a, 0x7b, 0xf8, 0xae, 0x41, 0x34, 0xfd, - 0x36, 0x7a, 0xe4, 0x7a, 0xa5, 0xf7, 0xde, 0x6e, 0xb3, 0x86, 0x28, 0x99, 0x86, 0x71, 0xf0, 0x3a, - 0x98, 0xd9, 0xa1, 0xfb, 0x52, 0xc3, 0x21, 0x90, 0x68, 0xc9, 0xee, 0x7a, 0x3e, 0x47, 0x4b, 0xc1, - 0xe9, 0x9d, 0x84, 0xe3, 0xfc, 0x0a, 0x6b, 0x5f, 0x2a, 0xbe, 0xec, 0x6b, 0xb6, 0x59, 0xaf, 0xb0, - 0x2e, 0xdb, 0xb3, 0x46, 0xa4, 0x13, 0xe7, 0xa2, 0x9d, 0x38, 0xbf, 0x06, 0xce, 0x1e, 0x08, 0x11, - 0xf4, 0x26, 0x61, 0x9d, 0x73, 0x71, 0x9d, 0x97, 0x3e, 0x3c, 0x07, 0x46, 0x29, 0x10, 0xfc, 0x45, - 0x06, 0x4c, 0x27, 0x4d, 0xa1, 0xe0, 0xb5, 0xde, 0xc3, 0x2d, 0x3a, 0x1f, 0xcb, 0xad, 0x0c, 0x80, - 0xe0, 0x0a, 0xc2, 0xff, 0x88, 0xfb, 0xfe, 0x17, 0x7f, 0xfb, 0x49, 0xe6, 0x07, 0xdc, 0x76, 0x19, - 0x5e, 0xeb, 0x3e, 0x25, 0xf5, 0x85, 0x66, 0xa3, 0x2e, 0xe1, 0x71, 0x48, 0x0d, 0x4f, 0xe0, 0x95, - 0xbe, 0x10, 0x58, 0x68, 0x3c, 0x81, 0x5f, 0x70, 0xac, 0x18, 0x8b, 0xc6, 0x2e, 0xbc, 0xda, 0xbb, - 0x9c, 0x91, 0x69, 0x5b, 0xee, 0x5a, 0xff, 0x00, 0x4c, 0x4f, 0x6f, 0x51, 0x35, 0xbd, 0x06, 0x97, - 0x7b, 0x90, 0xd0, 0x9d, 0xc3, 0xc1, 0xf7, 0x33, 0x20, 0xdb, 0x61, 0xb8, 0x86, 0xe1, 0xad, 0x3e, - 0x39, 0x4b, 0x9c, 0xe3, 0xe5, 0xde, 0x39, 0x24, 0x34, 0x26, 0xf4, 0x4d, 0x2a, 0x74, 0x6f, 0x8e, - 0xc1, 0x88, 0x1c, 0x40, 0xc9, 0x1f, 0x91, 0xc1, 0xff, 0x72, 0x60, 0x26, 0x79, 0x56, 0x87, 0xe1, - 0x7a, 0xdf, 0x4c, 0xb7, 0x0f, 0x05, 0x73, 0xb7, 0x0e, 0x07, 0x8c, 0x29, 0xe0, 0x06, 0x55, 0xc0, - 0x0a, 0xbc, 0xda, 0x87, 0x02, 0x4c, 0x2b, 0x24, 0xff, 0xbf, 0xbc, 0x51, 0x47, 0xe2, 0x64, 0x09, - 0xae, 0xa5, 0xe7, 0xfa, 0xa0, 0x41, 0x5a, 0xee, 0xc6, 0xc0, 0x38, 0x4c, 0xf0, 0x15, 0x2a, 0xf8, - 0xd7, 0xe1, 0x5b, 0x29, 0x7e, 0x38, 0xf1, 0xa7, 0x88, 0x91, 0x26, 0x2e, 0x41, 0xe4, 0x70, 0xe7, - 0xd0, 0x97, 0xc8, 0x09, 0xb3, 0xb3, 0xbe, 0x44, 0x4e, 0x9a, 0x6a, 0xf5, 0x27, 0x72, 0xe4, 0xdd, - 0x86, 0xbf, 0xe7, 0x58, 0x8b, 0x19, 0x19, 0x68, 0xc1, 0xb7, 0xd3, 0xb3, 0x98, 0x34, 0x27, 0xcb, - 0x5d, 0xed, 0xfb, 0x3c, 0x13, 0xed, 0x4d, 0x2a, 0x5a, 0x09, 0x2e, 0x75, 0x17, 0x8d, 0x30, 0x00, - 0xf7, 0x07, 0x11, 0xf8, 0xd3, 0x0c, 0x7b, 0x0f, 0x0f, 0x9e, 0x50, 0xc1, 0x3b, 0xe9, 0x59, 0x4c, - 0x35, 0x19, 0xcb, 0x6d, 0x1c, 0x1e, 0x20, 0x53, 0xc2, 0x3a, 0x55, 0xc2, 0x75, 0x58, 0xe9, 0xae, - 0x04, 0xdb, 0x47, 0x0c, 0x7c, 0xda, 0xa6, 0x98, 0x92, 0x3b, 0x71, 0x83, 0xff, 0x68, 0x9b, 0xa8, - 0x45, 0xc7, 0x3b, 0x18, 0xf6, 0xf0, 0x36, 0x77, 0x18, 0xdb, 0xe5, 0xca, 0x83, 0x40, 0x30, 0xa9, - 0xcb, 0x54, 0xea, 0x6f, 0xc0, 0xcb, 0xdd, 0xa5, 0xf6, 0x06, 0x76, 0x52, 0xfc, 0x01, 0xfb, 0x24, - 0xc3, 0x7e, 0x1d, 0x4a, 0x31, 0xd7, 0x82, 0x5b, 0xe9, 0x99, 0x4e, 0x3f, 0x9a, 0xcb, 0xdd, 0x3d, - 0x64, 0x54, 0xa6, 0x9d, 0x1a, 0xd5, 0x8e, 0xbc, 0xbd, 0x0c, 0x85, 0xee, 0xfa, 0x89, 0x96, 0x3a, - 0x17, 0xd3, 0x1c, 0xf0, 0x2b, 0x9b, 0x5f, 0x73, 0x60, 0x32, 0x34, 0x66, 0x82, 0x6f, 0xf4, 0x60, - 0xda, 0xf0, 0xb8, 0x2a, 0xf7, 0x66, 0xef, 0x07, 0x99, 0xac, 0x4b, 0x54, 0xd6, 0x45, 0x58, 0x48, - 0xe1, 0x09, 0x2e, 0x93, 0x7f, 0xce, 0xc4, 0x8a, 0xe1, 0xe4, 0x59, 0x52, 0x2f, 0xc1, 0x9f, 0x6a, - 0x06, 0xd6, 0x4b, 0xf0, 0xa7, 0x1b, 0x73, 0xf1, 0x4f, 0xdd, 0x32, 0xf7, 0x43, 0x6e, 0x3b, 0x55, - 0x02, 0x30, 0x1d, 0x20, 0x49, 0x33, 0xa4, 0xa0, 0x95, 0x8d, 0x99, 0xff, 0x5a, 0xbf, 0x20, 0xbe, - 0x4b, 0xfc, 0x26, 0x03, 0xce, 0xa7, 0x6e, 0x54, 0xe1, 0xdd, 0x7e, 0x2b, 0xd8, 0x03, 0x7b, 0xed, - 0xdc, 0xbd, 0xc3, 0x86, 0x65, 0xfa, 0xde, 0xa6, 0xea, 0xde, 0x82, 0x62, 0xcf, 0xe5, 0xb2, 0x64, - 0x21, 0x3b, 0xd0, 0x98, 0xf0, 0x38, 0xde, 0x19, 0x3f, 0x81, 0x3f, 0x1e, 0x06, 0xe7, 0xd2, 0xf4, - 0xb3, 0x70, 0x63, 0x80, 0x6a, 0x28, 0xb1, 0x91, 0xcf, 0xbd, 0x7b, 0x88, 0x88, 0x4c, 0x53, 0x9f, - 0xb8, 0x9e, 0xf9, 0x3b, 0x6e, 0xfb, 0x3e, 0x7c, 0xaf, 0x17, 0x6d, 0x45, 0x87, 0x7d, 0x51, 0xf7, - 0x4c, 0x52, 0xdb, 0xb7, 0x06, 0x02, 0xf7, 0xdc, 0x36, 0x09, 0xf9, 0xb7, 0x99, 0x58, 0x71, 0x1f, - 0xca, 0x0d, 0x95, 0x41, 0x66, 0x4a, 0x9e, 0xda, 0x57, 0x07, 0x03, 0xe9, 0x2f, 0x07, 0xf8, 0xca, - 0x18, 0x24, 0x07, 0x24, 0x83, 0xf8, 0x39, 0xe0, 0x9f, 0x1c, 0xfb, 0x7d, 0x34, 0x69, 0x1a, 0x02, - 0x7b, 0x98, 0xc7, 0x1d, 0x30, 0x71, 0xc9, 0xad, 0x0d, 0x0a, 0xd3, 0x7b, 0x81, 0xdc, 0x61, 0x78, - 0x03, 0xff, 0xcd, 0xc5, 0xfe, 0xed, 0x25, 0x3a, 0x5e, 0x81, 0x37, 0x7a, 0x37, 0x74, 0xe2, 0x8c, - 0x27, 0x77, 0x73, 0x70, 0xa0, 0xde, 0xa5, 0x0e, 0x39, 0x87, 0xf0, 0xd8, 0x1f, 0x31, 0x3d, 0x29, - 0x7f, 0xf3, 0xd3, 0xe7, 0xf3, 0xdc, 0x67, 0xcf, 0xe7, 0xb9, 0xbf, 0x3e, 0x9f, 0xe7, 0x9e, 0xbe, - 0x98, 0x1f, 0xfa, 0xec, 0xc5, 0xfc, 0xd0, 0x1f, 0x5f, 0xcc, 0x0f, 0x6d, 0x5f, 0xa9, 0x69, 0x64, - 0xb7, 0xb1, 0x53, 0x54, 0xcc, 0x3a, 0xfb, 0xf7, 0xa9, 0xd0, 0x2d, 0x97, 0xfc, 0x5b, 0x9a, 0xaf, - 0x0b, 0x8f, 0x62, 0x65, 0x7a, 0xcb, 0x42, 0x78, 0x67, 0x8c, 0xfe, 0x44, 0xfd, 0xda, 0xff, 0x02, - 0x00, 0x00, 0xff, 0xff, 0xfc, 0xce, 0x4e, 0x9a, 0xde, 0x26, 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. @@ -3875,12 +3886,12 @@ func (m *QueryConsumerValidatorsValidator) MarshalToSizedBuffer(dAtA []byte) (in dAtA[i] = 0 } i-- - dAtA[i] = 0x60 + dAtA[i] = 0x68 } if m.ProviderPower != 0 { i = encodeVarintQuery(dAtA, i, uint64(m.ProviderPower)) i-- - dAtA[i] = 0x58 + dAtA[i] = 0x60 } { size := m.ProviderTokens.Size() @@ -3891,11 +3902,11 @@ func (m *QueryConsumerValidatorsValidator) MarshalToSizedBuffer(dAtA []byte) (in i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x52 + dAtA[i] = 0x5a if m.Status != 0 { i = encodeVarintQuery(dAtA, i, uint64(m.Status)) i-- - dAtA[i] = 0x48 + dAtA[i] = 0x50 } if m.Jailed { i-- @@ -3905,14 +3916,14 @@ func (m *QueryConsumerValidatorsValidator) MarshalToSizedBuffer(dAtA []byte) (in dAtA[i] = 0 } i-- - dAtA[i] = 0x40 + 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] = 0x3a + dAtA[i] = 0x42 } { size, err := m.Description.MarshalToSizedBuffer(dAtA[:i]) @@ -3923,7 +3934,7 @@ func (m *QueryConsumerValidatorsValidator) MarshalToSizedBuffer(dAtA []byte) (in i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x32 + dAtA[i] = 0x3a { size := m.ProviderCommissionRate.Size() i -= size @@ -3933,7 +3944,7 @@ func (m *QueryConsumerValidatorsValidator) MarshalToSizedBuffer(dAtA []byte) (in i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x2a + dAtA[i] = 0x32 { size := m.ConsumerCommissionRate.Size() i -= size @@ -3943,7 +3954,12 @@ func (m *QueryConsumerValidatorsValidator) MarshalToSizedBuffer(dAtA []byte) (in i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x22 + 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-- @@ -4707,6 +4723,9 @@ func (m *QueryConsumerValidatorsValidator) Size() (n int) { if m.Power != 0 { n += 1 + sovQuery(uint64(m.Power)) } + if m.ConsumerPower != 0 { + n += 1 + sovQuery(uint64(m.ConsumerPower)) + } l = m.ConsumerCommissionRate.Size() n += 1 + l + sovQuery(uint64(l)) l = m.ProviderCommissionRate.Size() @@ -7653,6 +7672,25 @@ 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 ConsumerCommissionRate", wireType) } @@ -7686,7 +7724,7 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 5: + case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ProviderCommissionRate", wireType) } @@ -7720,7 +7758,7 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 6: + case 7: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Description", wireType) } @@ -7753,7 +7791,7 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 7: + case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ProviderOperatorAddress", wireType) } @@ -7785,7 +7823,7 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { } m.ProviderOperatorAddress = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 8: + case 9: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Jailed", wireType) } @@ -7805,7 +7843,7 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { } } m.Jailed = bool(v != 0) - case 9: + case 10: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) } @@ -7824,7 +7862,7 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { break } } - case 10: + case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ProviderTokens", wireType) } @@ -7858,7 +7896,7 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 11: + case 12: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field ProviderPower", wireType) } @@ -7877,7 +7915,7 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { break } } - case 12: + case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field ValidatesCurrentEpoch", wireType) }