diff --git a/docs/docs/build/modules/02-provider.md b/docs/docs/build/modules/02-provider.md index 2ddcf52419..0be2760d65 100644 --- a/docs/docs/build/modules/02-provider.md +++ b/docs/docs/build/modules/02-provider.md @@ -476,7 +476,7 @@ message MsgChangeRewardDenoms { `MsgCreateConsumer` enables a user to create a consumer chain. Both the `chain_id` and `metadata` fields are mandatory. -Both the `initialization_parameters` and `power_shaping_parameters` fields are optional. +The `initialization_parameters`, `power_shaping_parameters`, and `allowlisted_reward_denoms` fields are optional. The parameters not provided are set to their zero value. The owner of the created consumer chain is the submitter of the message. @@ -507,6 +507,9 @@ message MsgCreateConsumer { ConsumerInitializationParameters initialization_parameters = 4; PowerShapingParameters power_shaping_parameters = 5; + + // allowlisted reward denoms by the consumer chain + AllowlistedRewardDenoms allowlisted_reward_denoms = 6; } ``` @@ -516,7 +519,7 @@ message MsgCreateConsumer { Note that only the `owner` (i.e., signer) and `consumer_id` fields are mandatory. The others field are optional. Not providing one of them will leave the existing values unchanged. -Providing one of `metadata`, `initialization_parameters` or `power_shaping_parameters`, +Providing one of `metadata`, `initialization_parameters`, `power_shaping_parameters`, or `allowlisted_reward_denoms` will update all the containing fields. If one of the containing fields is missing, it will be set to its zero value. For example, updating the `initialization_parameters` without specifying the `spawn_time`, will set the `spawn_time` to zero. @@ -525,7 +528,7 @@ If the `initialization_parameters` field is set and `initialization_parameters.s Updating the `spawn_time` from a positive value to zero will remove the consumer chain from the list of scheduled to launch chains. If the consumer chain is already launched, updating the `initialization_parameters` is no longer possible. -If the `power_shaping_parameters` field is set and `power_shaping_parameters.top_N` is possitive, then the owner needs to be the gov module account address. +If the `power_shaping_parameters` field is set and `power_shaping_parameters.top_N` is positive, then the owner needs to be the gov module account address. If the `new_owner_address` field is set to a value different than the gov module account address, then `top_N` needs to be zero. @@ -550,6 +553,9 @@ message MsgUpdateConsumer { // the power-shaping parameters of the consumer when updated PowerShapingParameters power_shaping_parameters = 6; + + // allowlisted reward denoms by the consumer chain + AllowlistedRewardDenoms allowlisted_reward_denoms = 7; } ``` @@ -1675,6 +1681,9 @@ where `update-consumer-msg.json` contains: "denylist":[], "min_stake": "1000", "allow_inactive_vals":true + }, + "allowlisted_reward_denoms": { + "denoms": ["ibc/0025F8A87464A471E66B234C4F93AEC5B4DA3D42D7986451A059273426290DD5"] } } ``` diff --git a/docs/docs/consumer-development/onboarding.md b/docs/docs/consumer-development/onboarding.md index f079a1c616..eae1cf0208 100644 --- a/docs/docs/consumer-development/onboarding.md +++ b/docs/docs/consumer-development/onboarding.md @@ -130,6 +130,14 @@ Example of power-shaping parameters: } ``` +Example of allowlisted reward denoms: +```js +// AllowlistedRewardDenoms provided in MsgCreateConsumer or MsgUpdateConsumer +{ + "denoms": ["ibc/0025F8A87464A471E66B234C4F93AEC5B4DA3D42D7986451A059273426290DD5", "ibc/054892D6BB43AF8B93AAC28AA5FD7019D2C59A15DAFD6F45C1FA2BF9BDA22454"] +} +``` + ## 4. Launch The consumer chain starts after at least 66.67% of its voting power comes online. diff --git a/proto/interchain_security/ccv/provider/v1/query.proto b/proto/interchain_security/ccv/provider/v1/query.proto index a71a81b8ca..910af58278 100644 --- a/proto/interchain_security/ccv/provider/v1/query.proto +++ b/proto/interchain_security/ccv/provider/v1/query.proto @@ -194,6 +194,8 @@ message Chain { // Corresponds to whether inactive validators are allowed to validate the consumer chain. bool allow_inactive_vals = 12; string consumer_id = 13; + // the reward denoms allowlisted by this consumer chain + AllowlistedRewardDenoms allowlisted_reward_denoms = 14; } message QueryValidatorConsumerAddrRequest { diff --git a/proto/interchain_security/ccv/provider/v1/tx.proto b/proto/interchain_security/ccv/provider/v1/tx.proto index 9e89332aef..ea4c8e503e 100644 --- a/proto/interchain_security/ccv/provider/v1/tx.proto +++ b/proto/interchain_security/ccv/provider/v1/tx.proto @@ -362,7 +362,7 @@ message MsgCreateConsumer { PowerShapingParameters power_shaping_parameters = 5; // allowlisted reward denoms of the consumer - AllowlistedRewardDenoms allowlisted_reward_denoms = 7; + AllowlistedRewardDenoms allowlisted_reward_denoms = 6; } // MsgCreateConsumerResponse defines response type for MsgCreateConsumer diff --git a/x/ccv/provider/client/cli/tx.go b/x/ccv/provider/client/cli/tx.go index 005c86391d..a66684b58d 100644 --- a/x/ccv/provider/client/cli/tx.go +++ b/x/ccv/provider/client/cli/tx.go @@ -255,11 +255,14 @@ where create_consumer.json has the following structure: "denylist": [], "min_stake": "0", "allow_inactive_vals": false + }, + "allowlisted_reward_denoms": { + "denoms": ["ibc/...", "ibc/..."] } } Note that both 'chain_id' and 'metadata' are mandatory; -and both 'initialization_parameters' and 'power_shaping_parameters' are optional. +and 'initialization_parameters', 'power_shaping_parameters' and 'allowlisted_reward_denoms' are optional. The parameters not provided are set to their zero value. `, version.AppName)), Args: cobra.ExactArgs(1), @@ -286,7 +289,8 @@ The parameters not provided are set to their zero value. return fmt.Errorf("consumer data unmarshalling failed: %w", err) } - msg, err := types.NewMsgCreateConsumer(submitter, consCreate.ChainId, consCreate.Metadata, consCreate.InitializationParameters, consCreate.PowerShapingParameters) + msg, err := types.NewMsgCreateConsumer(submitter, consCreate.ChainId, consCreate.Metadata, consCreate.InitializationParameters, + consCreate.PowerShapingParameters, consCreate.AllowlistedRewardDenoms) if err != nil { return err } @@ -349,12 +353,15 @@ where update_consumer.json has the following structure: "denylist": [], "min_stake": "0", "allow_inactive_vals": false - } + }, + "allowlisted_reward_denoms": { + "denoms": ["ibc/...", "ibc/..."] + } } Note that only 'consumer_id' is mandatory. The others are optional. Not providing one of them will leave the existing values unchanged. -Providing one of 'metadata', 'initialization_parameters' or 'power_shaping_parameters', +Providing one of 'metadata', 'initialization_parameters', 'power_shaping_parameters', or 'allowlisted_reward_denoms' will update all the containing fields. If one of the fields is missing, it will be set to its zero value. `, version.AppName)), @@ -387,7 +394,8 @@ If one of the fields is missing, it will be set to its zero value. return fmt.Errorf("consumer_id can't be empty") } - msg, err := types.NewMsgUpdateConsumer(owner, consUpdate.ConsumerId, consUpdate.NewOwnerAddress, consUpdate.Metadata, consUpdate.InitializationParameters, consUpdate.PowerShapingParameters) + msg, err := types.NewMsgUpdateConsumer(owner, consUpdate.ConsumerId, consUpdate.NewOwnerAddress, consUpdate.Metadata, + consUpdate.InitializationParameters, consUpdate.PowerShapingParameters, consUpdate.AllowlistedRewardDenoms) if err != nil { return err } diff --git a/x/ccv/provider/keeper/grpc_query.go b/x/ccv/provider/keeper/grpc_query.go index 545a51cade..9a16e8c5f9 100644 --- a/x/ccv/provider/keeper/grpc_query.go +++ b/x/ccv/provider/keeper/grpc_query.go @@ -114,22 +114,31 @@ func (k Keeper) GetConsumerChain(ctx sdk.Context, consumerId string) (types.Chai strDenylist[i] = addr.String() } - metadata, _ := k.GetConsumerMetadata(ctx, consumerId) + metadata, err := k.GetConsumerMetadata(ctx, consumerId) + if err != nil { + return types.Chain{}, fmt.Errorf("cannot find metadata (%s): %s", consumerId, err.Error()) + } + + allowlistedRewardDenoms, err := k.GetAllowlistedRewardDenoms(ctx, consumerId) + if err != nil { + return types.Chain{}, fmt.Errorf("cannot find allowlisted reward denoms (%s): %s", consumerId, err.Error()) + } return types.Chain{ - ChainId: chainID, - ClientId: clientID, - Top_N: powerShapingParameters.Top_N, - MinPowerInTop_N: minPowerInTopN, - ValidatorSetCap: powerShapingParameters.ValidatorSetCap, - ValidatorsPowerCap: powerShapingParameters.ValidatorsPowerCap, - Allowlist: strAllowlist, - Denylist: strDenylist, - Phase: k.GetConsumerPhase(ctx, consumerId).String(), - Metadata: metadata, - AllowInactiveVals: powerShapingParameters.AllowInactiveVals, - MinStake: powerShapingParameters.MinStake, - ConsumerId: consumerId, + ChainId: chainID, + ClientId: clientID, + Top_N: powerShapingParameters.Top_N, + MinPowerInTop_N: minPowerInTopN, + ValidatorSetCap: powerShapingParameters.ValidatorSetCap, + ValidatorsPowerCap: powerShapingParameters.ValidatorsPowerCap, + Allowlist: strAllowlist, + Denylist: strDenylist, + Phase: k.GetConsumerPhase(ctx, consumerId).String(), + Metadata: metadata, + AllowInactiveVals: powerShapingParameters.AllowInactiveVals, + MinStake: powerShapingParameters.MinStake, + ConsumerId: consumerId, + AllowlistedRewardDenoms: &types.AllowlistedRewardDenoms{Denoms: allowlistedRewardDenoms}, }, nil } diff --git a/x/ccv/provider/keeper/grpc_query_test.go b/x/ccv/provider/keeper/grpc_query_test.go index 6530087235..28658d7970 100644 --- a/x/ccv/provider/keeper/grpc_query_test.go +++ b/x/ccv/provider/keeper/grpc_query_test.go @@ -459,6 +459,12 @@ func TestGetConsumerChain(t *testing.T) { metadataLists := []types.ConsumerMetadata{} + allowlistedRewardDenoms := []*types.AllowlistedRewardDenoms{ + {}, // no denoms + {Denoms: []string{"ibc/1", "ibc/2"}}, + {Denoms: []string{"ibc/3", "ibc/4", "ibc/5"}}, + {Denoms: []string{"ibc/6"}}} + expectedGetAllOrder := []types.Chain{} for i, consumerID := range consumerIDs { pk.SetConsumerChainId(ctx, consumerID, chainIDs[i]) @@ -493,24 +499,27 @@ func TestGetConsumerChain(t *testing.T) { metadataLists = append(metadataLists, types.ConsumerMetadata{Name: chainIDs[i]}) pk.SetConsumerMetadata(ctx, consumerID, metadataLists[i]) + pk.SetAllowlistedRewardDenoms(ctx, consumerID, allowlistedRewardDenoms[i].Denoms) + phase := types.ConsumerPhase(int32(i + 1)) pk.SetConsumerPhase(ctx, consumerID, phase) expectedGetAllOrder = append(expectedGetAllOrder, types.Chain{ - ChainId: chainIDs[i], - ClientId: clientID, - Top_N: topN, - MinPowerInTop_N: expectedMinPowerInTopNs[i], - ValidatorSetCap: validatorSetCaps[i], - ValidatorsPowerCap: validatorPowerCaps[i], - Allowlist: strAllowlist, - Denylist: strDenylist, - Phase: phase.String(), - Metadata: metadataLists[i], - AllowInactiveVals: allowInactiveVals[i], - MinStake: minStakes[i].Uint64(), - ConsumerId: consumerIDs[i], + ChainId: chainIDs[i], + ClientId: clientID, + Top_N: topN, + MinPowerInTop_N: expectedMinPowerInTopNs[i], + ValidatorSetCap: validatorSetCaps[i], + ValidatorsPowerCap: validatorPowerCaps[i], + Allowlist: strAllowlist, + Denylist: strDenylist, + Phase: phase.String(), + Metadata: metadataLists[i], + AllowInactiveVals: allowInactiveVals[i], + MinStake: minStakes[i].Uint64(), + ConsumerId: consumerIDs[i], + AllowlistedRewardDenoms: allowlistedRewardDenoms[i], }) } @@ -647,15 +656,16 @@ func TestQueryConsumerChains(t *testing.T) { pk.SetConsumerPhase(ctx, consumerId, phases[i]) c := types.Chain{ - ChainId: chainID, - MinPowerInTop_N: -1, - ValidatorsPowerCap: 0, - ValidatorSetCap: 0, - Allowlist: []string{}, - Denylist: []string{}, - Phase: phases[i].String(), - Metadata: metadata, - ConsumerId: consumerId, + ChainId: chainID, + MinPowerInTop_N: -1, + ValidatorsPowerCap: 0, + ValidatorSetCap: 0, + Allowlist: []string{}, + Denylist: []string{}, + Phase: phases[i].String(), + Metadata: metadata, + ConsumerId: consumerId, + AllowlistedRewardDenoms: &types.AllowlistedRewardDenoms{Denoms: []string{}}, } consumerIds[i] = consumerId consumers[i] = &c diff --git a/x/ccv/provider/keeper/msg_server.go b/x/ccv/provider/keeper/msg_server.go index fbef100bb9..a66dfd9135 100644 --- a/x/ccv/provider/keeper/msg_server.go +++ b/x/ccv/provider/keeper/msg_server.go @@ -415,11 +415,6 @@ func (k msgServer) CreateConsumer(goCtx context.Context, msg *types.MsgCreateCon } if msg.AllowlistedRewardDenoms != nil { - if len(msg.AllowlistedRewardDenoms.Denoms) > types.MaxAllowlistedRewardDenomsPerChain { - return &resp, errorsmod.Wrapf(types.ErrInvalidAllowlistedRewardDenoms, - fmt.Sprintf("a consumer chain cannot allowlist more than %d reward denoms", types.MaxAllowlistedRewardDenomsPerChain)) - } - err := k.UpdateAllowlistedRewardDenoms(ctx, consumerId, msg.AllowlistedRewardDenoms.Denoms) if err != nil { return &resp, errorsmod.Wrapf(types.ErrInvalidAllowlistedRewardDenoms, @@ -603,11 +598,6 @@ func (k msgServer) UpdateConsumer(goCtx context.Context, msg *types.MsgUpdateCon } if msg.AllowlistedRewardDenoms != nil { - if len(msg.AllowlistedRewardDenoms.Denoms) > types.MaxAllowlistedRewardDenomsPerChain { - return &resp, errorsmod.Wrapf(types.ErrInvalidAllowlistedRewardDenoms, - fmt.Sprintf("a consumer chain cannot allowlist more than %d reward denoms", types.MaxAllowlistedRewardDenomsPerChain)) - } - if err := k.UpdateAllowlistedRewardDenoms(ctx, consumerId, msg.AllowlistedRewardDenoms.Denoms); err != nil { return &resp, errorsmod.Wrapf(types.ErrInvalidAllowlistedRewardDenoms, "cannot update allowlisted reward denoms: %s", err.Error()) diff --git a/x/ccv/provider/types/msg.go b/x/ccv/provider/types/msg.go index 3f3899acac..05fa7c6ee1 100644 --- a/x/ccv/provider/types/msg.go +++ b/x/ccv/provider/types/msg.go @@ -3,6 +3,7 @@ package types import ( "encoding/json" "fmt" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" "strings" ibctmtypes "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" @@ -280,6 +281,7 @@ func (msg MsgSetConsumerCommissionRate) ValidateBasic() error { // NewMsgCreateConsumer creates a new MsgCreateConsumer instance func NewMsgCreateConsumer(submitter, chainId string, metadata ConsumerMetadata, initializationParameters *ConsumerInitializationParameters, powerShapingParameters *PowerShapingParameters, + allowlistedRewardDenoms *AllowlistedRewardDenoms, ) (*MsgCreateConsumer, error) { return &MsgCreateConsumer{ Submitter: submitter, @@ -287,6 +289,7 @@ func NewMsgCreateConsumer(submitter, chainId string, metadata ConsumerMetadata, Metadata: metadata, InitializationParameters: initializationParameters, PowerShapingParameters: powerShapingParameters, + AllowlistedRewardDenoms: allowlistedRewardDenoms, }, nil } @@ -326,12 +329,19 @@ func (msg MsgCreateConsumer) ValidateBasic() error { } } + if msg.AllowlistedRewardDenoms != nil { + if err := ValidateAllowlistedRewardDenoms(*msg.AllowlistedRewardDenoms); err != nil { + return errorsmod.Wrapf(ErrInvalidMsgCreateConsumer, "AllowlistedRewardDenoms: %s", err.Error()) + } + } + return nil } // NewMsgUpdateConsumer creates a new MsgUpdateConsumer instance func NewMsgUpdateConsumer(owner, consumerId, ownerAddress string, metadata *ConsumerMetadata, initializationParameters *ConsumerInitializationParameters, powerShapingParameters *PowerShapingParameters, + allowlistedRewardDenoms *AllowlistedRewardDenoms, ) (*MsgUpdateConsumer, error) { return &MsgUpdateConsumer{ Owner: owner, @@ -340,6 +350,7 @@ func NewMsgUpdateConsumer(owner, consumerId, ownerAddress string, metadata *Cons Metadata: metadata, InitializationParameters: initializationParameters, PowerShapingParameters: powerShapingParameters, + AllowlistedRewardDenoms: allowlistedRewardDenoms, }, nil } @@ -369,6 +380,12 @@ func (msg MsgUpdateConsumer) ValidateBasic() error { } } + if msg.AllowlistedRewardDenoms != nil { + if err := ValidateAllowlistedRewardDenoms(*msg.AllowlistedRewardDenoms); err != nil { + return errorsmod.Wrapf(ErrInvalidMsgUpdateConsumer, "AllowlistedRewardDenoms: %s", err.Error()) + } + } + return nil } @@ -514,6 +531,20 @@ func ValidatePowerShapingParameters(powerShapingParameters PowerShapingParameter return nil } +// ValidateAllowlistedRewardDenoms validates the provided allowlisted reward denoms +func ValidateAllowlistedRewardDenoms(allowlistedRewardDenoms AllowlistedRewardDenoms) error { + if len(allowlistedRewardDenoms.Denoms) > MaxAllowlistedRewardDenomsPerChain { + return errorsmod.Wrapf(ErrInvalidAllowlistedRewardDenoms, "More than %d denoms", MaxAllowlistedRewardDenomsPerChain) + } + + for _, denom := range allowlistedRewardDenoms.Denoms { + if err := types.ValidateIBCDenom(denom); err != nil { + return errorsmod.Wrapf(ErrInvalidAllowlistedRewardDenoms, "Invalid denom (%s): %s", denom, err.Error()) + } + } + return nil +} + // ValidateInitializationParameters validates that all the provided parameters are in the expected range func ValidateInitializationParameters(initializationParameters ConsumerInitializationParameters) error { if initializationParameters.InitialHeight.IsZero() { diff --git a/x/ccv/provider/types/msg_test.go b/x/ccv/provider/types/msg_test.go index 6867343b65..84b40c043e 100644 --- a/x/ccv/provider/types/msg_test.go +++ b/x/ccv/provider/types/msg_test.go @@ -471,7 +471,7 @@ func TestMsgCreateConsumerValidateBasic(t *testing.T) { for _, tc := range testCases { validConsumerMetadata := types.ConsumerMetadata{Name: "name", Description: "description", Metadata: "metadata"} - msg, err := types.NewMsgCreateConsumer("submitter", tc.chainId, validConsumerMetadata, nil, tc.powerShapingParameters) + msg, err := types.NewMsgCreateConsumer("submitter", tc.chainId, validConsumerMetadata, nil, tc.powerShapingParameters, nil) require.NoError(t, err) err = msg.ValidateBasic() if tc.expPass { @@ -546,7 +546,7 @@ func TestMsgUpdateConsumerValidateBasic(t *testing.T) { for _, tc := range testCases { // TODO (PERMISSIONLESS) add more tests - msg, _ := types.NewMsgUpdateConsumer("", "0", "cosmos1p3ucd3ptpw902fluyjzhq3ffgq4ntddac9sa3s", nil, nil, &tc.powerShapingParameters) + msg, _ := types.NewMsgUpdateConsumer("", "0", "cosmos1p3ucd3ptpw902fluyjzhq3ffgq4ntddac9sa3s", nil, nil, &tc.powerShapingParameters, nil) err := msg.ValidateBasic() if tc.expPass { require.NoError(t, err, "valid case: %s should not return error. got %w", tc.name, err) diff --git a/x/ccv/provider/types/provider.pb.go b/x/ccv/provider/types/provider.pb.go index 73f48bc24a..c390ab752b 100644 --- a/x/ccv/provider/types/provider.pb.go +++ b/x/ccv/provider/types/provider.pb.go @@ -1659,11 +1659,34 @@ type PowerShapingParameters struct { // have to validate the proposed consumer chain. top_N can either be 0 or any value in [50, 100]. // A chain can join with top_N == 0 as an Opt In chain, or with top_N ∈ [50, 100] as a Top N chain. Top_N uint32 `protobuf:"varint,1,opt,name=top_N,json=topN,proto3" json:"top_N,omitempty"` - // Corresponds to the maximum power (percentage-wise) a validator can have on the consumer chain. For instance, if - // `validators_power_cap` is set to 32, it means that no validator can have more than 32% of the voting power on the - // consumer chain. Note that this might not be feasible. For example, think of a consumer chain with only - // 5 validators and with `validators_power_cap` set to 10%. In such a scenario, at least one validator would need - // to have more than 20% of the total voting power. Therefore, `validators_power_cap` operates on a best-effort basis. + // `validators_power_cap` corresponds to the maximum power (percentage-wise) a validator can have on the consumer chain. + // For instance, if `validators_power_cap` is set to 32, no validator can have more than 32% of the total voting power of the + // consumer chain. The power cap is intended as a safeguard against a validator having too much power on the consumer + // chain and hence "taking over" the consumer chain. + // + // To respect this power cap, the voting powers of the validators that run the consumer chain are decremented or + // incremented accordingly. It is important to note that the voting powers of validators on the provider do **not** change. + // For example, assume that the provider chain has among others, validators `A`, `B`, `C`, and `D` with voting powers + // 100, 1, 1, 1 respectively. Assume that only those 4 validators opt in on a consumer chain. Without a power cap set, + // validator `A` would have 100 / (100 + 1 + 1 + 1) = ~97% of the total voting power on the consumer chain, while + // validators `B`, `C`, and `D` would have 1 /(100 + 1 + 1 + 1) = ~1% of the total voting power on the consumer chain. + // If `validators_power_cap` is set to 30%, then the voting power of `A` would be reduced from 100 to 30 on the consumer + // chain, the voting power of `B` would be increased from 1 to 25, and the power of `C` and `D` would be increased from + // 1 to 24. After those modifications, `A` would have 30 / (30 + 25 + 24 + 24) = ~29% of the total voting power of the + // consumer chain, `B` would have 25 / (30 + 25 + 24 + 24) = ~25%, and `C` and `D` would both have 24 / (30 + 25 + 24 + 24) = ~23%. + // Naturally, there are many ways to change the voting powers of validators to respect the power cap, and ICS chooses + // one of them (see the `NoMoreThanPercentOfTheSum` function). + // + // Note that respecting `validators_power_cap` might NOT always be possible. For example, if we have a consumer + // chain with only 5 validators and `validators_power_cap` is set to 10%, then it is not possible to respect the + // `validators_power_cap`. If the voting power of each validator is capped to a maximum of 10% of the total consumer + // chain's voting power, then the total voting power of the consumer chain would add up to 50% which obviously does not + // make sense (percentages should add up to 100%). In cases where it is not feasible to respect the power cap, all + // validators on the consumer chain will have equal voting power in order to minimize the power of a single validator. + // Thus, in the example of 5 validators and a `validators_power_cap` set to 10%, all validators would end up having 20% + // of the total voting power on the consumer chain. Therefore, `validators_power_cap` operates on a best-effort basis. + // For more information on the power cap and other power-shaping parameters, please refer to the ICS docs and + // specifically `interchain-security/docs/docs/features/power-shaping.md`. ValidatorsPowerCap uint32 `protobuf:"varint,2,opt,name=validators_power_cap,json=validatorsPowerCap,proto3" json:"validators_power_cap,omitempty"` // Corresponds to the maximum number of validators that can validate a consumer chain. // Only applicable to Opt In chains. Setting `validator_set_cap` on a Top N chain is a no-op. diff --git a/x/ccv/provider/types/query.pb.go b/x/ccv/provider/types/query.pb.go index c0c30c8289..578c12598e 100644 --- a/x/ccv/provider/types/query.pb.go +++ b/x/ccv/provider/types/query.pb.go @@ -259,6 +259,8 @@ type Chain struct { // Corresponds to whether inactive validators are allowed to validate the consumer chain. AllowInactiveVals bool `protobuf:"varint,12,opt,name=allow_inactive_vals,json=allowInactiveVals,proto3" json:"allow_inactive_vals,omitempty"` ConsumerId string `protobuf:"bytes,13,opt,name=consumer_id,json=consumerId,proto3" json:"consumer_id,omitempty"` + // the reward denoms allowlisted by this consumer chain + AllowlistedRewardDenoms *AllowlistedRewardDenoms `protobuf:"bytes,14,opt,name=allowlisted_reward_denoms,json=allowlistedRewardDenoms,proto3" json:"allowlisted_reward_denoms,omitempty"` } func (m *Chain) Reset() { *m = Chain{} } @@ -385,6 +387,13 @@ func (m *Chain) GetConsumerId() string { return "" } +func (m *Chain) GetAllowlistedRewardDenoms() *AllowlistedRewardDenoms { + if m != nil { + return m.AllowlistedRewardDenoms + } + return nil +} + type QueryValidatorConsumerAddrRequest struct { // The consensus address of the validator on the provider chain ProviderAddress string `protobuf:"bytes,1,opt,name=provider_address,json=providerAddress,proto3" json:"provider_address,omitempty" yaml:"address"` @@ -1848,159 +1857,161 @@ func init() { } var fileDescriptor_422512d7b7586cd7 = []byte{ - // 2421 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0xcd, 0x73, 0x1c, 0x47, - 0x15, 0xd7, 0xac, 0x3e, 0xbc, 0x6a, 0x59, 0x4a, 0xdc, 0x96, 0xed, 0xf5, 0xca, 0xd6, 0xca, 0xe3, - 0x18, 0x14, 0x39, 0x9e, 0x91, 0x44, 0xe5, 0xcb, 0xc1, 0x1f, 0x5a, 0x59, 0xb2, 0x55, 0x8e, 0x6d, - 0x65, 0xa4, 0x38, 0x55, 0x0e, 0x66, 0x68, 0xcd, 0x74, 0x56, 0x8d, 0x66, 0x67, 0xc6, 0xd3, 0xad, - 0xb5, 0x17, 0x97, 0x2f, 0x9c, 0x72, 0x80, 0xaa, 0xa4, 0x28, 0xce, 0xe4, 0xcc, 0x81, 0xa2, 0xa8, - 0x14, 0xff, 0x00, 0x97, 0xdc, 0x08, 0xe1, 0x42, 0x41, 0x61, 0xc0, 0x86, 0x2a, 0x2e, 0x1c, 0x08, - 0x70, 0xa7, 0xba, 0xa7, 0x67, 0x76, 0x67, 0x3c, 0xd2, 0xce, 0x48, 0xba, 0xed, 0x74, 0xbf, 0xf7, - 0x7b, 0x1f, 0xfd, 0xfa, 0xf5, 0x7b, 0x4f, 0x02, 0x3a, 0x71, 0x19, 0x0e, 0xac, 0x4d, 0x44, 0x5c, - 0x93, 0x62, 0x6b, 0x3b, 0x20, 0xac, 0xad, 0x5b, 0x56, 0x4b, 0xf7, 0x03, 0xaf, 0x45, 0x6c, 0x1c, - 0xe8, 0xad, 0x39, 0xfd, 0xc1, 0x36, 0x0e, 0xda, 0x9a, 0x1f, 0x78, 0xcc, 0x83, 0x67, 0x33, 0x18, - 0x34, 0xcb, 0x6a, 0x69, 0x11, 0x83, 0xd6, 0x9a, 0xab, 0x9e, 0x6a, 0x78, 0x5e, 0xc3, 0xc1, 0x3a, - 0xf2, 0x89, 0x8e, 0x5c, 0xd7, 0x63, 0x88, 0x11, 0xcf, 0xa5, 0x21, 0x44, 0x75, 0xbc, 0xe1, 0x35, - 0x3c, 0xf1, 0x53, 0xe7, 0xbf, 0xe4, 0x6a, 0x4d, 0xf2, 0x88, 0xaf, 0x8d, 0xed, 0x8f, 0x74, 0x46, - 0x9a, 0x98, 0x32, 0xd4, 0xf4, 0x25, 0xc1, 0x7c, 0x1e, 0x55, 0x63, 0x2d, 0x42, 0x9e, 0xd9, 0x9d, - 0x78, 0x5a, 0x73, 0x3a, 0xdd, 0x44, 0x01, 0xb6, 0x4d, 0xcb, 0x73, 0xe9, 0x76, 0x33, 0xe6, 0x38, - 0xb7, 0x0b, 0xc7, 0x43, 0x12, 0x60, 0x49, 0x76, 0x8a, 0x61, 0xd7, 0xc6, 0x41, 0x93, 0xb8, 0x4c, - 0xb7, 0x82, 0xb6, 0xcf, 0x3c, 0x7d, 0x0b, 0xb7, 0x23, 0x0b, 0x4f, 0x5a, 0x1e, 0x6d, 0x7a, 0xd4, - 0x0c, 0x8d, 0x0c, 0x3f, 0xe4, 0xd6, 0x2b, 0xe1, 0x97, 0x4e, 0x19, 0xda, 0x22, 0x6e, 0x43, 0x6f, - 0xcd, 0x6d, 0x60, 0x86, 0xe6, 0xa2, 0x6f, 0x49, 0x35, 0x23, 0xa9, 0x36, 0x10, 0xc5, 0xa1, 0xfb, - 0x63, 0x42, 0x1f, 0x35, 0x88, 0x2b, 0xfc, 0x19, 0xd2, 0xaa, 0x97, 0xc1, 0xc4, 0x7b, 0x9c, 0x62, - 0x51, 0x1a, 0x72, 0x1d, 0xbb, 0x98, 0x12, 0x6a, 0xe0, 0x07, 0xdb, 0x98, 0x32, 0x58, 0x03, 0x23, - 0x91, 0x89, 0x26, 0xb1, 0x2b, 0xca, 0x94, 0x32, 0x3d, 0x6c, 0x80, 0x68, 0x69, 0xc5, 0x56, 0x1f, - 0x83, 0x53, 0xd9, 0xfc, 0xd4, 0xf7, 0x5c, 0x8a, 0xe1, 0x87, 0x60, 0xb4, 0x11, 0x2e, 0x99, 0x94, - 0x21, 0x86, 0x05, 0xc4, 0xc8, 0xfc, 0xac, 0xb6, 0x53, 0x24, 0xb4, 0xe6, 0xb4, 0x14, 0xd6, 0x1a, - 0xe7, 0xab, 0x0f, 0x7c, 0xf1, 0xb4, 0xd6, 0x67, 0x1c, 0x6e, 0x74, 0xad, 0xa9, 0xbf, 0x50, 0x40, - 0x35, 0x21, 0x7d, 0x91, 0xe3, 0xc5, 0xca, 0xdf, 0x00, 0x83, 0xfe, 0x26, 0xa2, 0xa1, 0xcc, 0xb1, - 0xf9, 0x79, 0x2d, 0x47, 0xf4, 0xc5, 0xc2, 0x57, 0x39, 0xa7, 0x11, 0x02, 0xc0, 0x65, 0x00, 0x3a, - 0x9e, 0xab, 0x94, 0x84, 0x09, 0xdf, 0xd0, 0xe4, 0xd1, 0x70, 0x37, 0x6b, 0x61, 0x94, 0x4b, 0x37, - 0x6b, 0xab, 0xa8, 0x81, 0xa5, 0x16, 0x46, 0x17, 0xa7, 0xfa, 0x73, 0x25, 0xe5, 0xee, 0x48, 0x61, - 0xe9, 0xad, 0x3a, 0x18, 0x12, 0xea, 0xd1, 0x8a, 0x32, 0xd5, 0x3f, 0x3d, 0x32, 0x3f, 0x93, 0x4f, - 0x65, 0xbe, 0x6d, 0x48, 0x4e, 0x78, 0x3d, 0x43, 0xd7, 0x6f, 0xf6, 0xd4, 0x35, 0x54, 0x20, 0xa1, - 0xec, 0xff, 0xfa, 0xc1, 0xa0, 0x80, 0x86, 0x27, 0x41, 0x39, 0x54, 0x21, 0x0e, 0x81, 0x43, 0xe2, - 0x7b, 0xc5, 0x86, 0x13, 0x60, 0xd8, 0x72, 0x08, 0x76, 0x19, 0xdf, 0x2b, 0x89, 0xbd, 0x72, 0xb8, - 0xb0, 0x62, 0xc3, 0xa3, 0x60, 0x90, 0x79, 0xbe, 0x79, 0xbb, 0xd2, 0x3f, 0xa5, 0x4c, 0x8f, 0x1a, - 0x03, 0xcc, 0xf3, 0x6f, 0xc3, 0x19, 0x00, 0x9b, 0xc4, 0x35, 0x7d, 0xef, 0x21, 0x8f, 0x29, 0xd7, - 0x0c, 0x29, 0x06, 0xa6, 0x94, 0xe9, 0x7e, 0x63, 0xac, 0x49, 0xdc, 0x55, 0xbe, 0xb1, 0xe2, 0xae, - 0x73, 0xda, 0x59, 0x30, 0xde, 0x42, 0x0e, 0xb1, 0x11, 0xf3, 0x02, 0x2a, 0x59, 0x2c, 0xe4, 0x57, - 0x06, 0x05, 0x1e, 0xec, 0xec, 0x09, 0xa6, 0x45, 0xe4, 0xc3, 0x19, 0x70, 0x24, 0x5e, 0x35, 0x29, - 0x66, 0x82, 0x7c, 0x48, 0x90, 0xbf, 0x14, 0x6f, 0xac, 0x61, 0xc6, 0x69, 0x4f, 0x81, 0x61, 0xe4, - 0x38, 0xde, 0x43, 0x87, 0x50, 0x56, 0x39, 0x34, 0xd5, 0x3f, 0x3d, 0x6c, 0x74, 0x16, 0x60, 0x15, - 0x94, 0x6d, 0xec, 0xb6, 0xc5, 0x66, 0x59, 0x6c, 0xc6, 0xdf, 0x70, 0x3c, 0x8a, 0xac, 0x61, 0x61, - 0xb1, 0x8c, 0x92, 0x0f, 0x40, 0xb9, 0x89, 0x19, 0xb2, 0x11, 0x43, 0x15, 0x20, 0xfc, 0xfe, 0x7a, - 0xa1, 0x90, 0xbb, 0x25, 0x99, 0x65, 0xac, 0xc7, 0x60, 0xdc, 0xc9, 0xdc, 0x65, 0xfc, 0x96, 0xe3, - 0xca, 0xc8, 0x94, 0x32, 0x3d, 0x60, 0x94, 0x9b, 0xc4, 0x5d, 0xe3, 0xdf, 0x50, 0x03, 0x47, 0x85, - 0xd2, 0x26, 0x71, 0x91, 0xc5, 0x48, 0x0b, 0x9b, 0x2d, 0xe4, 0xd0, 0xca, 0xe1, 0x29, 0x65, 0xba, - 0x6c, 0x1c, 0x11, 0x5b, 0x2b, 0x72, 0xe7, 0x2e, 0x72, 0x68, 0xfa, 0x4a, 0x8f, 0xbe, 0x70, 0xa5, - 0x7f, 0xac, 0x80, 0x33, 0x22, 0x48, 0xef, 0x46, 0xfe, 0x8a, 0x14, 0x5c, 0xb0, 0xed, 0x20, 0xba, - 0x5c, 0x97, 0xc0, 0xcb, 0x91, 0x0d, 0x26, 0xb2, 0xed, 0x00, 0x53, 0x1a, 0xc6, 0x46, 0x1d, 0x7e, - 0xfd, 0xb4, 0x36, 0xd6, 0x46, 0x4d, 0xe7, 0xa2, 0x2a, 0x37, 0x54, 0xe3, 0xa5, 0x88, 0x76, 0x21, - 0x5c, 0x49, 0x6b, 0x51, 0x4a, 0x6b, 0x71, 0xb1, 0xfc, 0xf1, 0x67, 0xb5, 0xbe, 0x7f, 0x7e, 0x56, - 0xeb, 0x53, 0xef, 0x00, 0x75, 0x37, 0x75, 0xe4, 0xd5, 0x79, 0x15, 0xbc, 0x1c, 0x03, 0x26, 0xf4, - 0x31, 0x5e, 0xb2, 0xba, 0xe8, 0xb9, 0x36, 0x2f, 0x1a, 0xb8, 0xda, 0xa5, 0x5d, 0x97, 0x81, 0xd9, - 0x80, 0xd9, 0x06, 0xa6, 0x84, 0xec, 0xcb, 0xc0, 0xa4, 0x3a, 0x1d, 0x03, 0xb3, 0x1d, 0xfe, 0x82, - 0x73, 0xd5, 0x09, 0x70, 0x52, 0x00, 0xae, 0x6f, 0x06, 0x1e, 0x63, 0x0e, 0x16, 0xd9, 0x52, 0xda, - 0xa5, 0xfe, 0x2e, 0x4a, 0x9a, 0xa9, 0x5d, 0x29, 0xa6, 0x06, 0x46, 0xa8, 0x83, 0xe8, 0xa6, 0xd9, - 0xc4, 0x0c, 0x07, 0x42, 0x42, 0xbf, 0x01, 0xc4, 0xd2, 0x2d, 0xbe, 0x02, 0xe7, 0xc1, 0xb1, 0x2e, - 0x02, 0x53, 0x04, 0x18, 0x72, 0x2d, 0x2c, 0x4c, 0xec, 0x37, 0x8e, 0x76, 0x48, 0x17, 0xa2, 0x2d, - 0xf8, 0x5d, 0x50, 0x71, 0xf1, 0x23, 0x66, 0x06, 0xd8, 0x77, 0xb0, 0x4b, 0xe8, 0xa6, 0x69, 0x21, - 0xd7, 0xe6, 0xc6, 0x62, 0x91, 0x1b, 0x46, 0xe6, 0xab, 0x5a, 0xf8, 0x82, 0x6b, 0xd1, 0x0b, 0xae, - 0xad, 0x47, 0x2f, 0x78, 0xbd, 0xcc, 0xaf, 0xc3, 0x27, 0x7f, 0xa9, 0x29, 0xc6, 0x71, 0x8e, 0x62, - 0x44, 0x20, 0x8b, 0x11, 0x86, 0xfa, 0x1a, 0x98, 0x11, 0x26, 0x19, 0xb8, 0x41, 0x28, 0xc3, 0x01, - 0xb6, 0xa3, 0x18, 0x31, 0xf0, 0x43, 0x14, 0xd8, 0xd7, 0xb0, 0xeb, 0x35, 0xa3, 0x77, 0x41, 0x5d, - 0x02, 0xe7, 0x73, 0x51, 0x4b, 0x8f, 0x1c, 0x07, 0x43, 0xb6, 0x58, 0x11, 0x49, 0x79, 0xd8, 0x90, - 0x5f, 0xea, 0xbb, 0xe0, 0x55, 0x01, 0xb3, 0xe0, 0x38, 0xab, 0x88, 0x04, 0xf4, 0x2e, 0x72, 0x38, - 0x0e, 0x3f, 0x84, 0x7a, 0xbb, 0x83, 0x98, 0xf3, 0x21, 0xfd, 0x99, 0x22, 0x6d, 0xe8, 0x01, 0x27, - 0x95, 0x7a, 0x00, 0x8e, 0xf8, 0x88, 0x04, 0xfc, 0xae, 0xf3, 0x22, 0x44, 0x44, 0x84, 0x7c, 0x34, - 0x96, 0x73, 0x25, 0x1d, 0x2e, 0x23, 0x14, 0xc1, 0x25, 0xc4, 0x11, 0xe7, 0x76, 0x7c, 0x31, 0xe6, - 0x27, 0x48, 0xd4, 0xff, 0x2a, 0xe0, 0x4c, 0x4f, 0x2e, 0xb8, 0xbc, 0x63, 0x5e, 0x98, 0xf8, 0xfa, - 0x69, 0xed, 0x44, 0x78, 0x6d, 0xd2, 0x14, 0x19, 0x09, 0x62, 0x39, 0xe3, 0xfa, 0x95, 0xd2, 0x38, - 0x69, 0x8a, 0x8c, 0x7b, 0x78, 0x05, 0x1c, 0x8e, 0xa9, 0xb6, 0x70, 0x5b, 0x86, 0xdb, 0x29, 0xad, - 0x53, 0x82, 0x69, 0x61, 0x09, 0xa6, 0xad, 0x6e, 0x6f, 0x38, 0xc4, 0xba, 0x89, 0xdb, 0x46, 0x7c, - 0x54, 0x37, 0x71, 0x5b, 0x1d, 0x07, 0x50, 0x9c, 0xcb, 0x2a, 0x0a, 0x50, 0x27, 0x86, 0xbe, 0x07, - 0x8e, 0x26, 0x56, 0xe5, 0xb1, 0xac, 0x80, 0x21, 0x5f, 0xac, 0xc8, 0x3a, 0xe7, 0x7c, 0xce, 0xb3, - 0xe0, 0x2c, 0x32, 0xed, 0x4b, 0x00, 0xf5, 0x96, 0x8c, 0x87, 0x44, 0xa9, 0x70, 0xc7, 0x67, 0xd8, - 0x5e, 0x71, 0xe3, 0x4c, 0x91, 0xbf, 0x50, 0x7b, 0x20, 0x83, 0xbe, 0x17, 0x5c, 0x5c, 0x89, 0x9c, - 0xee, 0x7e, 0x79, 0x53, 0xe7, 0x85, 0xa3, 0xbb, 0x30, 0xd1, 0xf5, 0x04, 0x27, 0x0f, 0x10, 0x53, - 0x75, 0x01, 0x4c, 0x26, 0x44, 0xee, 0x41, 0xeb, 0x4f, 0x0f, 0x81, 0xa9, 0x1d, 0x30, 0xe2, 0x5f, - 0xfb, 0x7d, 0x8a, 0xd2, 0x11, 0x52, 0x2a, 0x18, 0x21, 0xb0, 0x02, 0x06, 0x45, 0x69, 0x22, 0x62, - 0xab, 0xbf, 0x5e, 0xaa, 0x28, 0x46, 0xb8, 0x00, 0xdf, 0x06, 0x03, 0x01, 0xcf, 0x71, 0x03, 0x42, - 0x9b, 0x73, 0xfc, 0x7c, 0xff, 0xf8, 0xb4, 0x36, 0x11, 0x16, 0x63, 0xd4, 0xde, 0xd2, 0x88, 0xa7, - 0x37, 0x11, 0xdb, 0xd4, 0xde, 0xc5, 0x0d, 0x64, 0xb5, 0xaf, 0x61, 0xab, 0xa2, 0x18, 0x82, 0x05, - 0x9e, 0x03, 0x63, 0xb1, 0x56, 0x21, 0xfa, 0xa0, 0xc8, 0xaf, 0xa3, 0xd1, 0xaa, 0x28, 0x79, 0xe0, - 0x7d, 0x50, 0x89, 0xc9, 0x2c, 0xaf, 0xd9, 0x24, 0x94, 0x12, 0xcf, 0x35, 0x85, 0xd4, 0x21, 0x21, - 0xf5, 0x6c, 0x0e, 0xa9, 0xc6, 0xf1, 0x08, 0x64, 0x31, 0xc6, 0x30, 0xb8, 0x16, 0xf7, 0x41, 0x25, - 0x76, 0x6d, 0x1a, 0xfe, 0x50, 0x01, 0xf8, 0x08, 0x24, 0x05, 0x7f, 0x13, 0x8c, 0xd8, 0x98, 0x5a, - 0x01, 0xf1, 0x45, 0xb1, 0x5a, 0x16, 0x9e, 0x3f, 0x1b, 0x15, 0xab, 0x51, 0x57, 0x13, 0x55, 0xaa, - 0xd7, 0x3a, 0xa4, 0xf2, 0xae, 0x74, 0x73, 0xc3, 0xfb, 0xe0, 0x64, 0xac, 0xab, 0xe7, 0xe3, 0x40, - 0x94, 0x80, 0x51, 0x3c, 0x88, 0x42, 0xad, 0x7e, 0xe6, 0xab, 0xcf, 0x2f, 0x9c, 0x96, 0xe8, 0x71, - 0xfc, 0xc8, 0x38, 0x58, 0x63, 0x01, 0x71, 0x1b, 0xc6, 0x89, 0x08, 0xe3, 0x8e, 0x84, 0x88, 0xc2, - 0xe4, 0x38, 0x18, 0xfa, 0x3e, 0x22, 0x0e, 0xb6, 0x45, 0x6d, 0x57, 0x36, 0xe4, 0x17, 0xbc, 0x08, - 0x86, 0x78, 0x67, 0xb3, 0x4d, 0x45, 0x65, 0x36, 0x36, 0xaf, 0xee, 0xa4, 0x7e, 0xdd, 0x73, 0xed, - 0x35, 0x41, 0x69, 0x48, 0x0e, 0xb8, 0x0e, 0xe2, 0x68, 0x34, 0x99, 0xb7, 0x85, 0xdd, 0xb0, 0x6e, - 0x1b, 0xae, 0x9f, 0x97, 0x5e, 0x3d, 0xf6, 0xa2, 0x57, 0x57, 0x5c, 0xf6, 0xd5, 0xe7, 0x17, 0x80, - 0x14, 0xb2, 0xe2, 0x32, 0x63, 0x2c, 0xc2, 0x58, 0x17, 0x10, 0x3c, 0x74, 0x62, 0xd4, 0x30, 0x74, - 0x46, 0xc3, 0xd0, 0x89, 0x56, 0xc3, 0xd0, 0x79, 0x03, 0x9c, 0x90, 0xb7, 0x17, 0x53, 0xd3, 0xda, - 0x0e, 0x02, 0x5e, 0xc5, 0x63, 0xdf, 0xb3, 0x36, 0x2b, 0x63, 0xc2, 0xc2, 0x63, 0xf1, 0xf6, 0x62, - 0xb8, 0xbb, 0xc4, 0x37, 0xd5, 0x8f, 0x15, 0x50, 0xdb, 0xf1, 0x5e, 0xcb, 0xf4, 0x81, 0x01, 0xe8, - 0x64, 0x06, 0xf9, 0x2e, 0x2d, 0xe5, 0xca, 0x85, 0xbd, 0x6e, 0xbb, 0xd1, 0x05, 0xac, 0x3e, 0x00, - 0xb3, 0x19, 0xed, 0x54, 0x4c, 0x7b, 0x03, 0xd1, 0x75, 0x4f, 0x7e, 0xe1, 0x83, 0x29, 0x5c, 0xd5, - 0xbb, 0x60, 0xae, 0x80, 0x48, 0xe9, 0x8e, 0x33, 0x5d, 0x29, 0x86, 0xd8, 0x51, 0xf2, 0x1c, 0xe9, - 0x24, 0x3a, 0x51, 0x94, 0x9e, 0xcf, 0x2e, 0x73, 0x93, 0x77, 0x26, 0x6f, 0xea, 0xcc, 0xb4, 0xb3, - 0x94, 0xdf, 0xce, 0x06, 0x78, 0x2d, 0x9f, 0x3a, 0xd2, 0xc4, 0x37, 0x65, 0xaa, 0x53, 0xf2, 0x67, - 0x05, 0xc1, 0xa0, 0xaa, 0x32, 0xc3, 0xd7, 0x1d, 0xcf, 0xda, 0xa2, 0xef, 0xbb, 0x8c, 0x38, 0xb7, - 0xf1, 0xa3, 0x30, 0xd6, 0xa2, 0xd7, 0xf6, 0x9e, 0x2c, 0xd8, 0xb3, 0x69, 0xa4, 0x06, 0xaf, 0x83, - 0x13, 0x1b, 0x62, 0xdf, 0xdc, 0xe6, 0x04, 0xa6, 0xa8, 0x38, 0xc3, 0x78, 0x56, 0x44, 0xcf, 0x34, - 0xbe, 0x91, 0xc1, 0xae, 0x2e, 0xc8, 0xea, 0x7b, 0x31, 0x76, 0xdd, 0x72, 0xe0, 0x35, 0x17, 0x65, - 0x0f, 0x1b, 0xb9, 0x3b, 0xd1, 0xe7, 0x2a, 0xc9, 0x3e, 0x57, 0x5d, 0x06, 0x67, 0x77, 0x85, 0xe8, - 0x94, 0xd6, 0xbb, 0xbf, 0x76, 0xdf, 0x96, 0x75, 0x7b, 0x22, 0xb6, 0x72, 0xbf, 0x95, 0xbf, 0xe9, - 0xcf, 0x9a, 0x86, 0xe4, 0x96, 0x9e, 0xe8, 0xf2, 0x4b, 0xc9, 0x2e, 0xff, 0x2c, 0x18, 0xf5, 0x1e, - 0xba, 0x5d, 0x81, 0xd4, 0x2f, 0xf6, 0x0f, 0x8b, 0xc5, 0x28, 0x41, 0xc6, 0x4d, 0xf1, 0xc0, 0x4e, - 0x4d, 0xf1, 0xe0, 0x41, 0x36, 0xc5, 0x1f, 0x81, 0x11, 0xe2, 0x12, 0x66, 0xca, 0x7a, 0x6b, 0x48, - 0x60, 0x2f, 0x15, 0xc2, 0x5e, 0x71, 0x09, 0x23, 0xc8, 0x21, 0x3f, 0x10, 0x03, 0x0f, 0x51, 0x85, - 0xf1, 0xbe, 0x85, 0x1a, 0x80, 0x23, 0x87, 0x55, 0x19, 0x6c, 0x82, 0xf1, 0x70, 0xf0, 0x40, 0x37, - 0x91, 0x4f, 0xdc, 0x46, 0x24, 0xf0, 0x90, 0x10, 0xf8, 0x4e, 0xbe, 0x02, 0x8f, 0x03, 0xac, 0x85, - 0xfc, 0x5d, 0x62, 0xa0, 0x9f, 0x5e, 0xa7, 0xf3, 0x7f, 0x3b, 0x0d, 0x06, 0xc5, 0x29, 0xc2, 0x7f, - 0x28, 0x60, 0x3c, 0x6b, 0xb6, 0x06, 0xaf, 0x16, 0x4f, 0xa4, 0xc9, 0xb1, 0x5e, 0x75, 0x61, 0x1f, - 0x08, 0x61, 0x38, 0xa9, 0x37, 0x7e, 0xf8, 0xfb, 0xbf, 0xff, 0xa4, 0x54, 0x87, 0x57, 0x7b, 0x0f, - 0x81, 0xe3, 0xb0, 0x93, 0xc3, 0x3b, 0xfd, 0x71, 0x57, 0x20, 0x3e, 0x81, 0x7f, 0x52, 0x64, 0x2d, - 0x9d, 0x4c, 0xa9, 0xf0, 0x4a, 0x71, 0x25, 0x13, 0xf3, 0xbf, 0xea, 0xd5, 0xbd, 0x03, 0x48, 0x23, - 0x17, 0x84, 0x91, 0xef, 0xc0, 0xb7, 0x0b, 0x18, 0x19, 0x8e, 0xe1, 0xf4, 0xc7, 0x22, 0xfc, 0x9f, - 0xc0, 0x4f, 0x4b, 0xf2, 0x56, 0x66, 0x8e, 0x2f, 0xe0, 0x72, 0x7e, 0x1d, 0x77, 0x1b, 0xc7, 0x54, - 0xaf, 0xef, 0x1b, 0x47, 0x9a, 0xbc, 0x21, 0x4c, 0xfe, 0x0e, 0xbc, 0x97, 0x63, 0xb8, 0x1f, 0x0f, - 0xda, 0x12, 0x7d, 0x58, 0xf2, 0x78, 0xf5, 0xc7, 0xe9, 0x57, 0x28, 0xcb, 0x27, 0xdd, 0xcd, 0xc3, - 0x9e, 0x7c, 0x92, 0x31, 0xc1, 0xd9, 0x93, 0x4f, 0xb2, 0x46, 0x2f, 0x7b, 0xf3, 0x49, 0xc2, 0xec, - 0xb4, 0x4f, 0xd2, 0x8d, 0xeb, 0x13, 0xf8, 0x5b, 0x45, 0xf6, 0x99, 0x89, 0xb1, 0x0c, 0xbc, 0x9c, - 0xdf, 0x86, 0xac, 0x69, 0x4f, 0xf5, 0xca, 0x9e, 0xf9, 0xa5, 0xed, 0x6f, 0x09, 0xdb, 0xe7, 0xe1, - 0x6c, 0x6f, 0xdb, 0x99, 0x04, 0x08, 0x27, 0xfd, 0xf0, 0xa7, 0x25, 0xf9, 0x2c, 0xee, 0x3e, 0x67, - 0x81, 0x77, 0xf2, 0xab, 0x98, 0x6b, 0xbe, 0x53, 0x5d, 0x3d, 0x38, 0x40, 0xe9, 0x84, 0x9b, 0xc2, - 0x09, 0x4b, 0x70, 0xb1, 0xb7, 0x13, 0x82, 0x18, 0xb1, 0x73, 0x2b, 0x02, 0x81, 0x69, 0x86, 0x73, - 0x23, 0xf8, 0xa3, 0x92, 0xac, 0x38, 0x76, 0x9d, 0xf4, 0xc0, 0xdb, 0xf9, 0xad, 0xc8, 0x33, 0x81, - 0xaa, 0xde, 0x39, 0x30, 0x3c, 0xe9, 0x94, 0x25, 0xe1, 0x94, 0x2b, 0xf0, 0x52, 0x6f, 0xa7, 0xc8, - 0x28, 0x37, 0x7d, 0x8e, 0x9a, 0x4a, 0xff, 0xbf, 0x52, 0xc0, 0x48, 0xd7, 0x28, 0x05, 0xbe, 0x99, - 0x5f, 0xcf, 0xc4, 0x48, 0xa6, 0xfa, 0x56, 0x71, 0x46, 0x69, 0xc9, 0xac, 0xb0, 0x64, 0x06, 0x4e, - 0xf7, 0xb6, 0x24, 0x7c, 0xfc, 0x3b, 0xb1, 0xbd, 0xfb, 0x38, 0xa5, 0x48, 0x6c, 0xe7, 0x9a, 0xf3, - 0x14, 0x89, 0xed, 0x7c, 0x93, 0x9e, 0x22, 0xb1, 0xed, 0x71, 0x10, 0x93, 0xb8, 0x66, 0xa7, 0x05, - 0x4b, 0x1d, 0xe6, 0xaf, 0x4b, 0x72, 0x28, 0x9a, 0xa7, 0x3d, 0x82, 0xef, 0xef, 0xf5, 0x81, 0xde, - 0xb5, 0xc3, 0xab, 0xde, 0x3d, 0x68, 0x58, 0xe9, 0xa9, 0x7b, 0xc2, 0x53, 0xeb, 0xd0, 0x28, 0x5c, - 0x0d, 0x98, 0x3e, 0x0e, 0x3a, 0x4e, 0xcb, 0x7a, 0x12, 0x7f, 0x59, 0x02, 0xaf, 0xe4, 0xe9, 0xb7, - 0xe0, 0xea, 0x3e, 0x1e, 0xfa, 0xcc, 0x4e, 0xb2, 0xfa, 0xde, 0x01, 0x22, 0x4a, 0x4f, 0x59, 0xc2, - 0x53, 0xf7, 0xe1, 0x87, 0x45, 0x3c, 0x95, 0x1c, 0x2f, 0xf5, 0xae, 0x22, 0xfe, 0xad, 0x80, 0x13, - 0x3b, 0x4c, 0x0b, 0xe0, 0xe2, 0x7e, 0x66, 0x0d, 0x91, 0x63, 0xae, 0xed, 0x0f, 0xa4, 0xf8, 0xfd, - 0x8a, 0x2d, 0xde, 0xf1, 0x7e, 0xfd, 0x4b, 0x91, 0x2d, 0x62, 0x56, 0x27, 0x0c, 0x0b, 0x4c, 0x58, - 0x76, 0xe9, 0xb6, 0xab, 0xcb, 0xfb, 0x85, 0x29, 0x5e, 0x3d, 0xef, 0xd0, 0xb8, 0xc3, 0xff, 0xa4, - 0xff, 0x60, 0x9e, 0x6c, 0xad, 0xe1, 0xf5, 0xe2, 0x47, 0x94, 0xd9, 0xdf, 0x57, 0x6f, 0xec, 0x1f, - 0x68, 0x1f, 0x3d, 0x03, 0xb1, 0xf5, 0xc7, 0xf1, 0x78, 0xe1, 0x09, 0xfc, 0x73, 0x54, 0x0b, 0x26, - 0xd2, 0x53, 0x91, 0x5a, 0x30, 0x6b, 0x82, 0x50, 0xbd, 0xb2, 0x67, 0x7e, 0x69, 0xda, 0xb2, 0x30, - 0xed, 0x2a, 0xbc, 0x5c, 0x34, 0x01, 0x26, 0xa3, 0xb8, 0xfe, 0xc1, 0x17, 0xcf, 0x26, 0x95, 0x2f, - 0x9f, 0x4d, 0x2a, 0x7f, 0x7d, 0x36, 0xa9, 0x7c, 0xf2, 0x7c, 0xb2, 0xef, 0xcb, 0xe7, 0x93, 0x7d, - 0x7f, 0x78, 0x3e, 0xd9, 0x77, 0xef, 0x52, 0x83, 0xb0, 0xcd, 0xed, 0x0d, 0xcd, 0xf2, 0x9a, 0xf2, - 0x3f, 0x5f, 0xba, 0x44, 0x5d, 0x88, 0x45, 0xb5, 0xde, 0xd0, 0x1f, 0xa5, 0x6a, 0xcf, 0xb6, 0x8f, - 0xe9, 0xc6, 0x90, 0xf8, 0xeb, 0xe1, 0xb7, 0xfe, 0x1f, 0x00, 0x00, 0xff, 0xff, 0x55, 0x10, 0x5d, - 0x50, 0x99, 0x24, 0x00, 0x00, + // 2450 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0xcd, 0x6f, 0xdc, 0xc6, + 0x15, 0x17, 0x57, 0x1f, 0x5e, 0x8d, 0x2c, 0x39, 0x1e, 0xcb, 0xd6, 0x7a, 0x65, 0x6b, 0x65, 0x3a, + 0x6e, 0x15, 0x39, 0x5e, 0x4a, 0x2a, 0xf2, 0xe5, 0xc4, 0x1f, 0x5a, 0x59, 0xb2, 0x05, 0xc7, 0xb6, + 0x42, 0x29, 0x0e, 0xe0, 0xd4, 0x65, 0x47, 0xe4, 0x64, 0x35, 0x15, 0x97, 0xa4, 0x39, 0xa3, 0xb5, + 0xb7, 0x86, 0x2f, 0x3d, 0xe5, 0xd0, 0x02, 0x09, 0x8a, 0x9e, 0x9b, 0x73, 0x0f, 0x45, 0x51, 0x04, + 0xfd, 0x07, 0x7a, 0xc9, 0xad, 0x69, 0x7a, 0x29, 0x5a, 0xd4, 0x6d, 0xed, 0x16, 0xe8, 0xa5, 0x28, + 0x9a, 0xf6, 0x0f, 0x08, 0x66, 0x38, 0xe4, 0x2e, 0x69, 0x4a, 0x4b, 0x6a, 0x75, 0x13, 0x67, 0xde, + 0xfb, 0xbd, 0x8f, 0x79, 0xf3, 0xe6, 0xbd, 0xb7, 0x02, 0x1a, 0x71, 0x18, 0xf6, 0xcd, 0x2d, 0x44, + 0x1c, 0x83, 0x62, 0x73, 0xc7, 0x27, 0xac, 0xa5, 0x99, 0x66, 0x53, 0xf3, 0x7c, 0xb7, 0x49, 0x2c, + 0xec, 0x6b, 0xcd, 0x79, 0xed, 0xc1, 0x0e, 0xf6, 0x5b, 0x55, 0xcf, 0x77, 0x99, 0x0b, 0xcf, 0xa6, + 0x30, 0x54, 0x4d, 0xb3, 0x59, 0x0d, 0x19, 0xaa, 0xcd, 0xf9, 0xf2, 0xa9, 0xba, 0xeb, 0xd6, 0x6d, + 0xac, 0x21, 0x8f, 0x68, 0xc8, 0x71, 0x5c, 0x86, 0x18, 0x71, 0x1d, 0x1a, 0x40, 0x94, 0xc7, 0xeb, + 0x6e, 0xdd, 0x15, 0x7f, 0x6a, 0xfc, 0x2f, 0xb9, 0x5a, 0x91, 0x3c, 0xe2, 0x6b, 0x73, 0xe7, 0x23, + 0x8d, 0x91, 0x06, 0xa6, 0x0c, 0x35, 0x3c, 0x49, 0xb0, 0x90, 0x45, 0xd5, 0x48, 0x8b, 0x80, 0x67, + 0x6e, 0x37, 0x9e, 0xe6, 0xbc, 0x46, 0xb7, 0x90, 0x8f, 0x2d, 0xc3, 0x74, 0x1d, 0xba, 0xd3, 0x88, + 0x38, 0xce, 0xed, 0xc1, 0xf1, 0x90, 0xf8, 0x58, 0x92, 0x9d, 0x62, 0xd8, 0xb1, 0xb0, 0xdf, 0x20, + 0x0e, 0xd3, 0x4c, 0xbf, 0xe5, 0x31, 0x57, 0xdb, 0xc6, 0xad, 0xd0, 0xc2, 0x93, 0xa6, 0x4b, 0x1b, + 0x2e, 0x35, 0x02, 0x23, 0x83, 0x0f, 0xb9, 0xf5, 0x72, 0xf0, 0xa5, 0x51, 0x86, 0xb6, 0x89, 0x53, + 0xd7, 0x9a, 0xf3, 0x9b, 0x98, 0xa1, 0xf9, 0xf0, 0x5b, 0x52, 0xcd, 0x4a, 0xaa, 0x4d, 0x44, 0x71, + 0xe0, 0xfe, 0x88, 0xd0, 0x43, 0x75, 0xe2, 0x08, 0x7f, 0x06, 0xb4, 0xea, 0x65, 0x30, 0xf9, 0x1e, + 0xa7, 0x58, 0x92, 0x86, 0x5c, 0xc7, 0x0e, 0xa6, 0x84, 0xea, 0xf8, 0xc1, 0x0e, 0xa6, 0x0c, 0x56, + 0xc0, 0x48, 0x68, 0xa2, 0x41, 0xac, 0x92, 0x32, 0xad, 0xcc, 0x0c, 0xeb, 0x20, 0x5c, 0x5a, 0xb5, + 0xd4, 0xc7, 0xe0, 0x54, 0x3a, 0x3f, 0xf5, 0x5c, 0x87, 0x62, 0xf8, 0x21, 0x18, 0xad, 0x07, 0x4b, + 0x06, 0x65, 0x88, 0x61, 0x01, 0x31, 0xb2, 0x30, 0x57, 0xdd, 0x2d, 0x12, 0x9a, 0xf3, 0xd5, 0x04, + 0xd6, 0x3a, 0xe7, 0xab, 0x0d, 0x7c, 0xf1, 0xb4, 0xd2, 0xa7, 0x1f, 0xae, 0x77, 0xac, 0xa9, 0xbf, + 0x54, 0x40, 0x39, 0x26, 0x7d, 0x89, 0xe3, 0x45, 0xca, 0xdf, 0x00, 0x83, 0xde, 0x16, 0xa2, 0x81, + 0xcc, 0xb1, 0x85, 0x85, 0x6a, 0x86, 0xe8, 0x8b, 0x84, 0xaf, 0x71, 0x4e, 0x3d, 0x00, 0x80, 0x2b, + 0x00, 0xb4, 0x3d, 0x57, 0x2a, 0x08, 0x13, 0xbe, 0x55, 0x95, 0x47, 0xc3, 0xdd, 0x5c, 0x0d, 0xa2, + 0x5c, 0xba, 0xb9, 0xba, 0x86, 0xea, 0x58, 0x6a, 0xa1, 0x77, 0x70, 0xaa, 0xbf, 0x50, 0x12, 0xee, + 0x0e, 0x15, 0x96, 0xde, 0xaa, 0x81, 0x21, 0xa1, 0x1e, 0x2d, 0x29, 0xd3, 0xfd, 0x33, 0x23, 0x0b, + 0xb3, 0xd9, 0x54, 0xe6, 0xdb, 0xba, 0xe4, 0x84, 0xd7, 0x53, 0x74, 0xfd, 0x76, 0x57, 0x5d, 0x03, + 0x05, 0x62, 0xca, 0xfe, 0x67, 0x00, 0x0c, 0x0a, 0x68, 0x78, 0x12, 0x14, 0x03, 0x15, 0xa2, 0x10, + 0x38, 0x24, 0xbe, 0x57, 0x2d, 0x38, 0x09, 0x86, 0x4d, 0x9b, 0x60, 0x87, 0xf1, 0xbd, 0x82, 0xd8, + 0x2b, 0x06, 0x0b, 0xab, 0x16, 0x3c, 0x06, 0x06, 0x99, 0xeb, 0x19, 0xb7, 0x4b, 0xfd, 0xd3, 0xca, + 0xcc, 0xa8, 0x3e, 0xc0, 0x5c, 0xef, 0x36, 0x9c, 0x05, 0xb0, 0x41, 0x1c, 0xc3, 0x73, 0x1f, 0xf2, + 0x98, 0x72, 0x8c, 0x80, 0x62, 0x60, 0x5a, 0x99, 0xe9, 0xd7, 0xc7, 0x1a, 0xc4, 0x59, 0xe3, 0x1b, + 0xab, 0xce, 0x06, 0xa7, 0x9d, 0x03, 0xe3, 0x4d, 0x64, 0x13, 0x0b, 0x31, 0xd7, 0xa7, 0x92, 0xc5, + 0x44, 0x5e, 0x69, 0x50, 0xe0, 0xc1, 0xf6, 0x9e, 0x60, 0x5a, 0x42, 0x1e, 0x9c, 0x05, 0x47, 0xa3, + 0x55, 0x83, 0x62, 0x26, 0xc8, 0x87, 0x04, 0xf9, 0x91, 0x68, 0x63, 0x1d, 0x33, 0x4e, 0x7b, 0x0a, + 0x0c, 0x23, 0xdb, 0x76, 0x1f, 0xda, 0x84, 0xb2, 0xd2, 0xa1, 0xe9, 0xfe, 0x99, 0x61, 0xbd, 0xbd, + 0x00, 0xcb, 0xa0, 0x68, 0x61, 0xa7, 0x25, 0x36, 0x8b, 0x62, 0x33, 0xfa, 0x86, 0xe3, 0x61, 0x64, + 0x0d, 0x0b, 0x8b, 0x65, 0x94, 0x7c, 0x00, 0x8a, 0x0d, 0xcc, 0x90, 0x85, 0x18, 0x2a, 0x01, 0xe1, + 0xf7, 0xd7, 0x72, 0x85, 0xdc, 0x2d, 0xc9, 0x2c, 0x63, 0x3d, 0x02, 0xe3, 0x4e, 0xe6, 0x2e, 0xe3, + 0xb7, 0x1c, 0x97, 0x46, 0xa6, 0x95, 0x99, 0x01, 0xbd, 0xd8, 0x20, 0xce, 0x3a, 0xff, 0x86, 0x55, + 0x70, 0x4c, 0x28, 0x6d, 0x10, 0x07, 0x99, 0x8c, 0x34, 0xb1, 0xd1, 0x44, 0x36, 0x2d, 0x1d, 0x9e, + 0x56, 0x66, 0x8a, 0xfa, 0x51, 0xb1, 0xb5, 0x2a, 0x77, 0xee, 0x22, 0x9b, 0x26, 0xaf, 0xf4, 0x68, + 0xf2, 0x4a, 0xc3, 0x47, 0xe0, 0x64, 0xe4, 0x05, 0x6c, 0x19, 0x3e, 0x7e, 0x88, 0x7c, 0xcb, 0xb0, + 0xb0, 0xe3, 0x36, 0x68, 0x69, 0x4c, 0xd8, 0xf5, 0x4e, 0x26, 0xbb, 0x16, 0xdb, 0x28, 0xba, 0x00, + 0xb9, 0x26, 0x30, 0xf4, 0x09, 0x94, 0xbe, 0xa1, 0xfe, 0x44, 0x01, 0x67, 0xc4, 0xf5, 0xb8, 0x1b, + 0x9e, 0x54, 0xe8, 0x9a, 0x45, 0xcb, 0xf2, 0xc3, 0x6b, 0x7d, 0x09, 0xbc, 0x14, 0x4a, 0x31, 0x90, + 0x65, 0xf9, 0x98, 0xd2, 0x20, 0x2a, 0x6b, 0xf0, 0xeb, 0xa7, 0x95, 0xb1, 0x16, 0x6a, 0xd8, 0x17, + 0x55, 0xb9, 0xa1, 0xea, 0x47, 0x42, 0xda, 0xc5, 0x60, 0x25, 0x69, 0x7f, 0x21, 0x69, 0xff, 0xc5, + 0xe2, 0xc7, 0x9f, 0x55, 0xfa, 0xfe, 0xf5, 0x59, 0xa5, 0x4f, 0xbd, 0x03, 0xd4, 0xbd, 0xd4, 0x91, + 0x97, 0xf6, 0x15, 0xf0, 0x52, 0x04, 0x18, 0xd3, 0x47, 0x3f, 0x62, 0x76, 0xd0, 0x73, 0x6d, 0x5e, + 0x34, 0x70, 0xad, 0x43, 0xbb, 0x0e, 0x03, 0xd3, 0x01, 0xd3, 0x0d, 0x4c, 0x08, 0xe9, 0xc9, 0xc0, + 0xb8, 0x3a, 0x6d, 0x03, 0xd3, 0x1d, 0xfe, 0x82, 0x73, 0xd5, 0x49, 0x70, 0x52, 0x00, 0x6e, 0x6c, + 0xf9, 0x2e, 0x63, 0x36, 0x16, 0x79, 0x5a, 0xda, 0xa5, 0xfe, 0x3e, 0x4c, 0xd7, 0x89, 0x5d, 0x29, + 0xa6, 0x02, 0x46, 0xa8, 0x8d, 0xe8, 0x96, 0xd1, 0xc0, 0x0c, 0xfb, 0x42, 0x42, 0xbf, 0x0e, 0xc4, + 0xd2, 0x2d, 0xbe, 0x02, 0x17, 0xc0, 0xf1, 0x0e, 0x02, 0x43, 0x44, 0x11, 0x72, 0x4c, 0x2c, 0x4c, + 0xec, 0xd7, 0x8f, 0xb5, 0x49, 0x17, 0xc3, 0x2d, 0xf8, 0x3d, 0x50, 0x72, 0xf0, 0x23, 0x66, 0xf8, + 0xd8, 0xb3, 0xb1, 0x43, 0xe8, 0x96, 0x61, 0x22, 0xc7, 0xe2, 0xc6, 0x62, 0x91, 0x95, 0x46, 0x16, + 0xca, 0xd5, 0xa0, 0x76, 0xa8, 0x86, 0xb5, 0x43, 0x75, 0x23, 0xac, 0x1d, 0x6a, 0x45, 0x7e, 0x11, + 0x3f, 0xf9, 0x6b, 0x45, 0xd1, 0x4f, 0x70, 0x14, 0x3d, 0x04, 0x59, 0x0a, 0x31, 0xd4, 0x57, 0xc1, + 0xac, 0x30, 0x49, 0xc7, 0x75, 0x1e, 0xcf, 0x3e, 0xb6, 0xc2, 0x18, 0x89, 0x85, 0xbc, 0xf4, 0xc0, + 0x32, 0x38, 0x9f, 0x89, 0x5a, 0x7a, 0xe4, 0x04, 0x18, 0x92, 0xd7, 0x4e, 0x11, 0x09, 0x48, 0x7e, + 0xa9, 0xef, 0x82, 0x57, 0x04, 0xcc, 0xa2, 0x6d, 0xaf, 0x21, 0xe2, 0xd3, 0xbb, 0xc8, 0xe6, 0x38, + 0xfc, 0x10, 0x6a, 0xad, 0x36, 0x62, 0xc6, 0x27, 0xfc, 0xe7, 0x8a, 0xb4, 0xa1, 0x0b, 0x9c, 0x54, + 0xea, 0x01, 0x38, 0xea, 0x21, 0xe2, 0xf3, 0x2c, 0xc3, 0xcb, 0x1f, 0x11, 0x11, 0xf2, 0xb9, 0x5a, + 0xc9, 0x94, 0x16, 0xb8, 0x8c, 0x40, 0x04, 0x97, 0x10, 0x45, 0x9c, 0xd3, 0xf6, 0xc5, 0x98, 0x17, + 0x23, 0x51, 0xff, 0xaf, 0x80, 0x33, 0x5d, 0xb9, 0xe0, 0xca, 0xae, 0x79, 0x61, 0xf2, 0xeb, 0xa7, + 0x95, 0x89, 0xe0, 0xda, 0x24, 0x29, 0x52, 0x12, 0xc4, 0x4a, 0xca, 0xf5, 0x2b, 0x24, 0x71, 0x92, + 0x14, 0x29, 0xf7, 0xf0, 0x0a, 0x38, 0x1c, 0x51, 0x6d, 0xe3, 0x96, 0x0c, 0xb7, 0x53, 0xd5, 0x76, + 0xf1, 0x57, 0x0d, 0x8a, 0xbf, 0xea, 0xda, 0xce, 0xa6, 0x4d, 0xcc, 0x9b, 0xb8, 0xa5, 0x47, 0x47, + 0x75, 0x13, 0xb7, 0xd4, 0x71, 0x00, 0xc5, 0xb9, 0xac, 0x21, 0x1f, 0xb5, 0x63, 0xe8, 0xfb, 0xe0, + 0x58, 0x6c, 0x55, 0x1e, 0xcb, 0x2a, 0x18, 0xf2, 0xc4, 0x8a, 0xac, 0xb0, 0xce, 0x67, 0x3c, 0x0b, + 0xce, 0x22, 0x1f, 0x1c, 0x09, 0xa0, 0xde, 0x92, 0xf1, 0x10, 0x2b, 0x52, 0xee, 0x78, 0x0c, 0x5b, + 0xab, 0x4e, 0x94, 0x29, 0xb2, 0x97, 0x88, 0x0f, 0x64, 0xd0, 0x77, 0x83, 0x8b, 0x6a, 0xa0, 0xd3, + 0x9d, 0x6f, 0x7e, 0xe2, 0xbc, 0x70, 0x78, 0x17, 0x26, 0x3b, 0x1e, 0xff, 0xf8, 0x01, 0x62, 0xaa, + 0x2e, 0x82, 0xa9, 0x98, 0xc8, 0x7d, 0x68, 0xfd, 0xe9, 0x21, 0x30, 0xbd, 0x0b, 0x46, 0xf4, 0x57, + 0xaf, 0x4f, 0x51, 0x32, 0x42, 0x0a, 0x39, 0x23, 0x04, 0x96, 0xc0, 0xa0, 0x28, 0x8a, 0x44, 0x6c, + 0xf5, 0xd7, 0x0a, 0x25, 0x45, 0x0f, 0x16, 0xe0, 0x5b, 0x60, 0xc0, 0xe7, 0x39, 0x6e, 0x40, 0x68, + 0x73, 0x8e, 0x9f, 0xef, 0x9f, 0x9e, 0x56, 0x26, 0x83, 0x32, 0x90, 0x5a, 0xdb, 0x55, 0xe2, 0x6a, + 0x0d, 0xc4, 0xb6, 0xaa, 0xef, 0xe2, 0x3a, 0x32, 0x5b, 0xd7, 0xb0, 0x59, 0x52, 0x74, 0xc1, 0x02, + 0xcf, 0x81, 0xb1, 0x48, 0xab, 0x00, 0x7d, 0x50, 0xe4, 0xd7, 0xd1, 0x70, 0x55, 0x14, 0x5b, 0xf0, + 0x3e, 0x28, 0x45, 0x64, 0xa6, 0xdb, 0x68, 0x10, 0x4a, 0x89, 0xeb, 0x18, 0x42, 0xea, 0x90, 0x90, + 0x7a, 0x36, 0x83, 0x54, 0xfd, 0x44, 0x08, 0xb2, 0x14, 0x61, 0xe8, 0x5c, 0x8b, 0xfb, 0xa0, 0x14, + 0xb9, 0x36, 0x09, 0x7f, 0x28, 0x07, 0x7c, 0x08, 0x92, 0x80, 0xbf, 0x09, 0x46, 0x2c, 0x4c, 0x4d, + 0x9f, 0x78, 0xa2, 0x4c, 0x2e, 0x0a, 0xcf, 0x9f, 0x0d, 0xcb, 0xe4, 0xb0, 0x9f, 0x0a, 0x6b, 0xe4, + 0x6b, 0x6d, 0x52, 0x79, 0x57, 0x3a, 0xb9, 0xe1, 0x7d, 0x70, 0x32, 0xd2, 0xd5, 0xf5, 0xb0, 0x2f, + 0x8a, 0xcf, 0x30, 0x1e, 0x44, 0x89, 0x58, 0x3b, 0xf3, 0xd5, 0xe7, 0x17, 0x4e, 0x4b, 0xf4, 0x28, + 0x7e, 0x64, 0x1c, 0xac, 0x33, 0x9f, 0x38, 0x75, 0x7d, 0x22, 0xc4, 0xb8, 0x23, 0x21, 0xc2, 0x30, + 0x39, 0x01, 0x86, 0x7e, 0x80, 0x88, 0x8d, 0x2d, 0x51, 0x55, 0x16, 0x75, 0xf9, 0x05, 0x2f, 0x82, + 0x21, 0xde, 0x53, 0xed, 0x50, 0x51, 0x13, 0x8e, 0x2d, 0xa8, 0xbb, 0xa9, 0x5f, 0x73, 0x1d, 0x6b, + 0x5d, 0x50, 0xea, 0x92, 0x03, 0x6e, 0x80, 0x28, 0x1a, 0x0d, 0xe6, 0x6e, 0x63, 0x27, 0xa8, 0x18, + 0x87, 0x6b, 0xe7, 0xa5, 0x57, 0x8f, 0xbf, 0xe8, 0xd5, 0x55, 0x87, 0x7d, 0xf5, 0xf9, 0x05, 0x20, + 0x85, 0xac, 0x3a, 0x4c, 0x1f, 0x0b, 0x31, 0x36, 0x04, 0x04, 0x0f, 0x9d, 0x08, 0x35, 0x08, 0x9d, + 0xd1, 0x20, 0x74, 0xc2, 0xd5, 0x20, 0x74, 0x5e, 0x07, 0x13, 0xf2, 0xf6, 0x62, 0x6a, 0x98, 0x3b, + 0xbe, 0xcf, 0xfb, 0x07, 0xec, 0xb9, 0xe6, 0x96, 0xa8, 0x2f, 0x8b, 0xfa, 0xf1, 0x68, 0x7b, 0x29, + 0xd8, 0x5d, 0xe6, 0x9b, 0xea, 0xc7, 0x0a, 0xa8, 0xec, 0x7a, 0xaf, 0x65, 0xfa, 0xc0, 0x00, 0xb4, + 0x33, 0x83, 0x7c, 0x97, 0x96, 0x33, 0xe5, 0xc2, 0x6e, 0xb7, 0x5d, 0xef, 0x00, 0x56, 0x1f, 0x80, + 0xb9, 0x94, 0x46, 0x2e, 0xa2, 0xbd, 0x81, 0xe8, 0x86, 0x2b, 0xbf, 0xf0, 0xc1, 0x14, 0xae, 0xea, + 0x5d, 0x30, 0x9f, 0x43, 0xa4, 0x74, 0xc7, 0x99, 0x8e, 0x14, 0x43, 0xac, 0x30, 0x79, 0x8e, 0xb4, + 0x13, 0x9d, 0x28, 0x4a, 0xcf, 0xa7, 0x97, 0xb9, 0xf1, 0x3b, 0x93, 0x35, 0x75, 0xa6, 0xda, 0x59, + 0xc8, 0x6e, 0x67, 0x1d, 0xbc, 0x9a, 0x4d, 0x1d, 0x69, 0xe2, 0x1b, 0x32, 0xd5, 0x29, 0xd9, 0xb3, + 0x82, 0x60, 0x50, 0x55, 0x99, 0xe1, 0x6b, 0xb6, 0x6b, 0x6e, 0xd3, 0xf7, 0x1d, 0x46, 0xec, 0xdb, + 0xf8, 0x51, 0x10, 0x6b, 0xe1, 0x6b, 0x7b, 0x4f, 0x16, 0xec, 0xe9, 0x34, 0x52, 0x83, 0xd7, 0xc0, + 0xc4, 0xa6, 0xd8, 0x37, 0x76, 0x38, 0x81, 0x21, 0x2a, 0xce, 0x20, 0x9e, 0x15, 0xd1, 0xad, 0x8d, + 0x6f, 0xa6, 0xb0, 0xab, 0x8b, 0xb2, 0xfa, 0x5e, 0x8a, 0x5c, 0xb7, 0xe2, 0xbb, 0x8d, 0x25, 0xd9, + 0x3d, 0x87, 0xee, 0x8e, 0x75, 0xd8, 0x4a, 0xbc, 0xc3, 0x56, 0x57, 0xc0, 0xd9, 0x3d, 0x21, 0xda, + 0xa5, 0xf5, 0xde, 0xaf, 0xdd, 0x3b, 0xb2, 0x6e, 0x8f, 0xc5, 0x56, 0xe6, 0xb7, 0xf2, 0xb7, 0xfd, + 0x69, 0x73, 0x98, 0xcc, 0xd2, 0x63, 0xf3, 0x85, 0x42, 0x7c, 0xbe, 0x70, 0x16, 0x8c, 0xba, 0x0f, + 0x9d, 0x8e, 0x40, 0xea, 0x17, 0xfb, 0x87, 0xc5, 0x62, 0x98, 0x20, 0xa3, 0x76, 0x7c, 0x60, 0xb7, + 0x76, 0x7c, 0xf0, 0x20, 0xdb, 0xf1, 0x8f, 0xc0, 0x08, 0x71, 0x08, 0x33, 0x64, 0xbd, 0x35, 0x24, + 0xb0, 0x97, 0x73, 0x61, 0xaf, 0x3a, 0x84, 0x11, 0x64, 0x93, 0x1f, 0x8a, 0x51, 0x8b, 0xa8, 0xc2, + 0x78, 0xdf, 0x42, 0x75, 0xc0, 0x91, 0x83, 0xaa, 0x0c, 0x36, 0xc0, 0x78, 0x30, 0xf2, 0xa0, 0x5b, + 0xc8, 0x23, 0x4e, 0x3d, 0x14, 0x78, 0x48, 0x08, 0x7c, 0x3b, 0x5b, 0x81, 0xc7, 0x01, 0xd6, 0x03, + 0xfe, 0x0e, 0x31, 0xd0, 0x4b, 0xae, 0xd3, 0x85, 0xbf, 0x9f, 0x06, 0x83, 0xe2, 0x14, 0xe1, 0x3f, + 0x15, 0x30, 0x9e, 0x36, 0xd5, 0x83, 0x57, 0xf3, 0x27, 0xd2, 0xf8, 0x40, 0xb1, 0xbc, 0xd8, 0x03, + 0x42, 0x10, 0x4e, 0xea, 0x8d, 0x1f, 0xfd, 0xe1, 0x1f, 0x3f, 0x2d, 0xd4, 0xe0, 0xd5, 0xee, 0xe3, + 0xe7, 0x28, 0xec, 0xe4, 0xd8, 0x50, 0x7b, 0xdc, 0x11, 0x88, 0x4f, 0xe0, 0x9f, 0x15, 0x59, 0x4b, + 0xc7, 0x53, 0x2a, 0xbc, 0x92, 0x5f, 0xc9, 0xd8, 0xe4, 0xb1, 0x7c, 0x75, 0xff, 0x00, 0xd2, 0xc8, + 0x45, 0x61, 0xe4, 0xdb, 0xf0, 0xad, 0x1c, 0x46, 0x06, 0x03, 0x40, 0xed, 0xb1, 0x08, 0xff, 0x27, + 0xf0, 0xd3, 0x82, 0xbc, 0x95, 0xa9, 0xe3, 0x0b, 0xb8, 0x92, 0x5d, 0xc7, 0xbd, 0xc6, 0x31, 0xe5, + 0xeb, 0x3d, 0xe3, 0x48, 0x93, 0x37, 0x85, 0xc9, 0xdf, 0x85, 0xf7, 0x32, 0xfc, 0xac, 0x10, 0x8d, + 0xf8, 0x62, 0x7d, 0x58, 0xfc, 0x78, 0xb5, 0xc7, 0xc9, 0x57, 0x28, 0xcd, 0x27, 0x9d, 0xcd, 0xc3, + 0xbe, 0x7c, 0x92, 0x32, 0xc1, 0xd9, 0x97, 0x4f, 0xd2, 0x46, 0x2f, 0xfb, 0xf3, 0x49, 0xcc, 0xec, + 0xa4, 0x4f, 0x92, 0x8d, 0xeb, 0x13, 0xf8, 0x3b, 0x45, 0xf6, 0x99, 0xb1, 0xb1, 0x0c, 0xbc, 0x9c, + 0xdd, 0x86, 0xb4, 0x69, 0x4f, 0xf9, 0xca, 0xbe, 0xf9, 0xa5, 0xed, 0x6f, 0x0a, 0xdb, 0x17, 0xe0, + 0x5c, 0x77, 0xdb, 0x99, 0x04, 0x08, 0x7e, 0x63, 0x80, 0x3f, 0x2b, 0xc8, 0x67, 0x71, 0xef, 0x39, + 0x0b, 0xbc, 0x93, 0x5d, 0xc5, 0x4c, 0xf3, 0x9d, 0xf2, 0xda, 0xc1, 0x01, 0x4a, 0x27, 0xdc, 0x14, + 0x4e, 0x58, 0x86, 0x4b, 0xdd, 0x9d, 0xe0, 0x47, 0x88, 0xed, 0x5b, 0x11, 0x1b, 0xde, 0xc2, 0x1f, + 0x17, 0x64, 0xc5, 0xb1, 0xe7, 0xa4, 0x07, 0xde, 0xce, 0x6e, 0x45, 0x96, 0x09, 0x54, 0xf9, 0xce, + 0x81, 0xe1, 0x49, 0xa7, 0x2c, 0x0b, 0xa7, 0x5c, 0x81, 0x97, 0xba, 0x3b, 0x45, 0x46, 0xb9, 0xe1, + 0x71, 0xd4, 0x44, 0xfa, 0xff, 0xb5, 0x02, 0x46, 0x3a, 0x46, 0x29, 0xf0, 0x8d, 0xec, 0x7a, 0xc6, + 0x46, 0x32, 0xe5, 0x37, 0xf3, 0x33, 0x4a, 0x4b, 0xe6, 0x84, 0x25, 0xb3, 0x70, 0xa6, 0xbb, 0x25, + 0xc1, 0xe3, 0xdf, 0x8e, 0xed, 0xbd, 0xc7, 0x29, 0x79, 0x62, 0x3b, 0xd3, 0x9c, 0x27, 0x4f, 0x6c, + 0x67, 0x9b, 0xf4, 0xe4, 0x89, 0x6d, 0x97, 0x83, 0x18, 0xc4, 0x31, 0xda, 0x2d, 0x58, 0xe2, 0x30, + 0x7f, 0x53, 0x90, 0x43, 0xd1, 0x2c, 0xed, 0x11, 0x7c, 0x7f, 0xbf, 0x0f, 0xf4, 0x9e, 0x1d, 0x5e, + 0xf9, 0xee, 0x41, 0xc3, 0x4a, 0x4f, 0xdd, 0x13, 0x9e, 0xda, 0x80, 0x7a, 0xee, 0x6a, 0xc0, 0xf0, + 0xb0, 0xdf, 0x76, 0x5a, 0xda, 0x93, 0xf8, 0xab, 0x02, 0x78, 0x39, 0x4b, 0xbf, 0x05, 0xd7, 0x7a, + 0x78, 0xe8, 0x53, 0x3b, 0xc9, 0xf2, 0x7b, 0x07, 0x88, 0x28, 0x3d, 0x65, 0x0a, 0x4f, 0xdd, 0x87, + 0x1f, 0xe6, 0xf1, 0x54, 0x7c, 0xbc, 0xd4, 0xbd, 0x8a, 0xf8, 0xaf, 0x02, 0x26, 0x76, 0x99, 0x16, + 0xc0, 0xa5, 0x5e, 0x66, 0x0d, 0xa1, 0x63, 0xae, 0xf5, 0x06, 0x92, 0xff, 0x7e, 0x45, 0x16, 0xef, + 0x7a, 0xbf, 0xfe, 0xad, 0xc8, 0x16, 0x31, 0xad, 0x13, 0x86, 0x39, 0x26, 0x2c, 0x7b, 0x74, 0xdb, + 0xe5, 0x95, 0x5e, 0x61, 0xf2, 0x57, 0xcf, 0xbb, 0x34, 0xee, 0xf0, 0x7f, 0xc9, 0x9f, 0xea, 0xe3, + 0xad, 0x35, 0xbc, 0x9e, 0xff, 0x88, 0x52, 0xfb, 0xfb, 0xf2, 0x8d, 0xde, 0x81, 0x7a, 0xe8, 0x19, + 0x88, 0xa5, 0x3d, 0x8e, 0xc6, 0x0b, 0x4f, 0xe0, 0x5f, 0xc2, 0x5a, 0x30, 0x96, 0x9e, 0xf2, 0xd4, + 0x82, 0x69, 0x13, 0x84, 0xf2, 0x95, 0x7d, 0xf3, 0x4b, 0xd3, 0x56, 0x84, 0x69, 0x57, 0xe1, 0xe5, + 0xbc, 0x09, 0x30, 0x1e, 0xc5, 0xb5, 0x0f, 0xbe, 0x78, 0x36, 0xa5, 0x7c, 0xf9, 0x6c, 0x4a, 0xf9, + 0xdb, 0xb3, 0x29, 0xe5, 0x93, 0xe7, 0x53, 0x7d, 0x5f, 0x3e, 0x9f, 0xea, 0xfb, 0xe3, 0xf3, 0xa9, + 0xbe, 0x7b, 0x97, 0xea, 0x84, 0x6d, 0xed, 0x6c, 0x56, 0x4d, 0xb7, 0x21, 0xff, 0xe7, 0xa6, 0x43, + 0xd4, 0x85, 0x48, 0x54, 0xf3, 0x75, 0xed, 0x51, 0xa2, 0xf6, 0x6c, 0x79, 0x98, 0x6e, 0x0e, 0x89, + 0x5f, 0x0f, 0xbf, 0xf3, 0x4d, 0x00, 0x00, 0x00, 0xff, 0xff, 0x98, 0xe8, 0xa5, 0x6b, 0x13, 0x25, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2819,6 +2830,18 @@ func (m *Chain) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.AllowlistedRewardDenoms != nil { + { + size, err := m.AllowlistedRewardDenoms.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x72 + } if len(m.ConsumerId) > 0 { i -= len(m.ConsumerId) copy(dAtA[i:], m.ConsumerId) @@ -3090,12 +3113,12 @@ func (m *QueryThrottleStateResponse) MarshalToSizedBuffer(dAtA []byte) (int, err _ = i var l int _ = l - n5, err5 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.NextReplenishCandidate, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.NextReplenishCandidate):]) - if err5 != nil { - return 0, err5 + n6, err6 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.NextReplenishCandidate, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.NextReplenishCandidate):]) + if err6 != nil { + return 0, err6 } - i -= n5 - i = encodeVarintQuery(dAtA, i, uint64(n5)) + i -= n6 + i = encodeVarintQuery(dAtA, i, uint64(n6)) i-- dAtA[i] = 0x1a if m.SlashMeterAllowance != 0 { @@ -4088,6 +4111,10 @@ func (m *Chain) Size() (n int) { if l > 0 { n += 1 + l + sovQuery(uint64(l)) } + if m.AllowlistedRewardDenoms != nil { + l = m.AllowlistedRewardDenoms.Size() + n += 1 + l + sovQuery(uint64(l)) + } return n } @@ -5291,6 +5318,42 @@ func (m *Chain) Unmarshal(dAtA []byte) error { } m.ConsumerId = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 14: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AllowlistedRewardDenoms", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.AllowlistedRewardDenoms == nil { + m.AllowlistedRewardDenoms = &AllowlistedRewardDenoms{} + } + if err := m.AllowlistedRewardDenoms.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:]) diff --git a/x/ccv/provider/types/tx.pb.go b/x/ccv/provider/types/tx.pb.go index 6bd9a119ad..05d4d43966 100644 --- a/x/ccv/provider/types/tx.pb.go +++ b/x/ccv/provider/types/tx.pb.go @@ -1336,7 +1336,7 @@ type MsgCreateConsumer struct { InitializationParameters *ConsumerInitializationParameters `protobuf:"bytes,4,opt,name=initialization_parameters,json=initializationParameters,proto3" json:"initialization_parameters,omitempty"` PowerShapingParameters *PowerShapingParameters `protobuf:"bytes,5,opt,name=power_shaping_parameters,json=powerShapingParameters,proto3" json:"power_shaping_parameters,omitempty"` // allowlisted reward denoms of the consumer - AllowlistedRewardDenoms *AllowlistedRewardDenoms `protobuf:"bytes,7,opt,name=allowlisted_reward_denoms,json=allowlistedRewardDenoms,proto3" json:"allowlisted_reward_denoms,omitempty"` + AllowlistedRewardDenoms *AllowlistedRewardDenoms `protobuf:"bytes,6,opt,name=allowlisted_reward_denoms,json=allowlistedRewardDenoms,proto3" json:"allowlisted_reward_denoms,omitempty"` } func (m *MsgCreateConsumer) Reset() { *m = MsgCreateConsumer{} } @@ -1630,135 +1630,136 @@ func init() { } var fileDescriptor_43221a4391e9fbf4 = []byte{ - // 2048 bytes of a gzipped FileDescriptorProto + // 2054 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0x4d, 0x6c, 0x1c, 0x49, - 0x15, 0x76, 0x8f, 0xc7, 0xde, 0x99, 0xf2, 0x7f, 0xd9, 0x59, 0xb7, 0x27, 0x59, 0x8f, 0x33, 0x2c, - 0xbb, 0x56, 0x58, 0xf7, 0x6c, 0x0c, 0x1b, 0x84, 0x09, 0x48, 0xfe, 0x09, 0xc4, 0x0b, 0x8e, 0xbd, - 0xed, 0x90, 0x95, 0x40, 0xa2, 0x55, 0xd3, 0x5d, 0xe9, 0x29, 0x65, 0xba, 0xab, 0xd5, 0x55, 0x33, - 0x8e, 0x39, 0xa1, 0x3d, 0xed, 0x71, 0x91, 0x38, 0x70, 0xdc, 0x03, 0x1c, 0x90, 0x40, 0xca, 0x61, - 0x8f, 0x5c, 0x91, 0x22, 0x71, 0x59, 0xf6, 0x84, 0x10, 0x0a, 0x28, 0x39, 0x2c, 0x17, 0x2e, 0xdc, - 0x38, 0x81, 0xea, 0xa7, 0x7b, 0xa6, 0x67, 0xc6, 0x76, 0x7b, 0x22, 0x40, 0x82, 0xcb, 0xa8, 0xbb, - 0xde, 0xf7, 0xbe, 0xf7, 0x53, 0x55, 0xef, 0x55, 0xf5, 0x80, 0xb7, 0x48, 0xc8, 0x71, 0xec, 0x36, - 0x11, 0x09, 0x1d, 0x86, 0xdd, 0x76, 0x4c, 0xf8, 0x69, 0xdd, 0x75, 0x3b, 0xf5, 0x28, 0xa6, 0x1d, - 0xe2, 0xe1, 0xb8, 0xde, 0xb9, 0x59, 0xe7, 0x8f, 0xad, 0x28, 0xa6, 0x9c, 0xc2, 0x2f, 0x0c, 0x41, - 0x5b, 0xae, 0xdb, 0xb1, 0x12, 0xb4, 0xd5, 0xb9, 0x59, 0x59, 0x40, 0x01, 0x09, 0x69, 0x5d, 0xfe, - 0x2a, 0xbd, 0xca, 0x35, 0x9f, 0x52, 0xbf, 0x85, 0xeb, 0x28, 0x22, 0x75, 0x14, 0x86, 0x94, 0x23, - 0x4e, 0x68, 0xc8, 0xb4, 0xb4, 0xaa, 0xa5, 0xf2, 0xad, 0xd1, 0x7e, 0x58, 0xe7, 0x24, 0xc0, 0x8c, - 0xa3, 0x20, 0xd2, 0x80, 0xd5, 0x7e, 0x80, 0xd7, 0x8e, 0x25, 0x83, 0x96, 0xaf, 0xf4, 0xcb, 0x51, - 0x78, 0xaa, 0x45, 0x4b, 0x3e, 0xf5, 0xa9, 0x7c, 0xac, 0x8b, 0xa7, 0x44, 0xc1, 0xa5, 0x2c, 0xa0, - 0xcc, 0x51, 0x02, 0xf5, 0xa2, 0x45, 0xcb, 0xea, 0xad, 0x1e, 0x30, 0x5f, 0x84, 0x1e, 0x30, 0x3f, - 0xf1, 0x92, 0x34, 0xdc, 0xba, 0x4b, 0x63, 0x5c, 0x77, 0x5b, 0x04, 0x87, 0x5c, 0x48, 0xd5, 0x93, - 0x06, 0x6c, 0xe6, 0x49, 0x65, 0x9a, 0x28, 0xa5, 0x53, 0x17, 0xa4, 0x2d, 0xe2, 0x37, 0xb9, 0xa2, - 0x62, 0x75, 0x8e, 0x43, 0x0f, 0xc7, 0x01, 0x51, 0x06, 0xba, 0x6f, 0x89, 0x17, 0x3d, 0x72, 0x7e, - 0x1a, 0x61, 0x56, 0xc7, 0x82, 0x2f, 0x74, 0xb1, 0x02, 0xd4, 0xfe, 0x61, 0x80, 0xa5, 0x03, 0xe6, - 0x6f, 0x33, 0x46, 0xfc, 0x70, 0x97, 0x86, 0xac, 0x1d, 0xe0, 0xf8, 0x3b, 0xf8, 0x14, 0xbe, 0x06, - 0x4a, 0xca, 0x37, 0xe2, 0x99, 0xc6, 0x9a, 0xb1, 0x5e, 0xde, 0x29, 0x98, 0x86, 0xfd, 0x8a, 0x1c, - 0xdb, 0xf7, 0xe0, 0x57, 0xc1, 0x4c, 0xe2, 0x9b, 0x83, 0x3c, 0x2f, 0x36, 0x0b, 0x12, 0x03, 0xff, - 0xfe, 0xac, 0x3a, 0x7b, 0x8a, 0x82, 0xd6, 0x56, 0x4d, 0x8c, 0x62, 0xc6, 0x6a, 0xf6, 0x74, 0x02, - 0xdc, 0xf6, 0xbc, 0x18, 0x5e, 0x07, 0xd3, 0xae, 0x36, 0xe3, 0x3c, 0xc2, 0xa7, 0xe6, 0xb8, 0xd0, - 0xb3, 0xa7, 0xdc, 0x1e, 0xd3, 0x6f, 0x83, 0x49, 0xe1, 0x0d, 0x8e, 0xcd, 0xa2, 0x24, 0x35, 0x3f, - 0xfb, 0x64, 0x63, 0x49, 0x67, 0x7d, 0x5b, 0xb1, 0x1e, 0xf3, 0x98, 0x84, 0xbe, 0xad, 0x71, 0xb0, - 0x0a, 0x52, 0x02, 0xe1, 0xef, 0x84, 0xe4, 0x04, 0xc9, 0xd0, 0xbe, 0xb7, 0xb5, 0xf8, 0xe1, 0xc7, - 0xd5, 0xb1, 0xbf, 0x7e, 0x5c, 0x1d, 0xfb, 0xe0, 0xf3, 0x27, 0x37, 0xb4, 0x56, 0x6d, 0x15, 0x5c, - 0x1b, 0x16, 0xba, 0x8d, 0x59, 0x44, 0x43, 0x86, 0x6b, 0xcf, 0x0d, 0xf0, 0xda, 0x01, 0xf3, 0x8f, - 0xdb, 0x8d, 0x80, 0xf0, 0x04, 0x70, 0x40, 0x58, 0x03, 0x37, 0x51, 0x87, 0xd0, 0x76, 0x0c, 0x6f, - 0x81, 0x32, 0x93, 0x52, 0x8e, 0x63, 0x9d, 0xa5, 0xb3, 0x9d, 0xed, 0x42, 0xe1, 0x11, 0x98, 0x0e, - 0x7a, 0x78, 0x64, 0xf2, 0xa6, 0x36, 0xdf, 0xb2, 0x48, 0xc3, 0xb5, 0x7a, 0xa7, 0xd7, 0xea, 0x99, - 0xd0, 0xce, 0x4d, 0xab, 0xd7, 0xb6, 0x9d, 0x61, 0xe8, 0xcf, 0xc0, 0xf8, 0x40, 0x06, 0x5e, 0xed, - 0xcd, 0x40, 0xd7, 0x95, 0xda, 0x9b, 0xe0, 0x8b, 0xe7, 0xc6, 0x98, 0x66, 0xe3, 0xf7, 0x85, 0x21, - 0xd9, 0xd8, 0xa3, 0xed, 0x46, 0x0b, 0x3f, 0xa0, 0x9c, 0x84, 0xfe, 0xc8, 0xd9, 0x70, 0xc0, 0xb2, - 0xd7, 0x8e, 0x5a, 0xc4, 0x45, 0x1c, 0x3b, 0x1d, 0xca, 0xb1, 0x93, 0x2c, 0x52, 0x9d, 0x98, 0x37, - 0x7b, 0xf3, 0x20, 0x97, 0xb1, 0xb5, 0x97, 0x28, 0x3c, 0xa0, 0x1c, 0xdf, 0xd1, 0x70, 0xfb, 0x8a, - 0x37, 0x6c, 0x18, 0xfe, 0x10, 0x2c, 0x93, 0xf0, 0x61, 0x8c, 0x5c, 0x51, 0x04, 0x9c, 0x46, 0x8b, - 0xba, 0x8f, 0x9c, 0x26, 0x46, 0x1e, 0x8e, 0x65, 0xa2, 0xa6, 0x36, 0xdf, 0xb8, 0x28, 0xf3, 0x77, - 0x25, 0xda, 0xbe, 0xd2, 0xa5, 0xd9, 0x11, 0x2c, 0x6a, 0xb8, 0x3f, 0xf9, 0xc5, 0x97, 0x4a, 0x7e, - 0x6f, 0x4a, 0xd3, 0xe4, 0xff, 0xdc, 0x00, 0x73, 0x07, 0xcc, 0xff, 0x5e, 0xe4, 0x21, 0x8e, 0x8f, - 0x50, 0x8c, 0x02, 0x26, 0xd2, 0x8d, 0xda, 0xbc, 0x49, 0x45, 0xe1, 0xb8, 0x38, 0xdd, 0x29, 0x14, - 0xee, 0x83, 0xc9, 0x48, 0x32, 0xe8, 0xec, 0x7e, 0xc9, 0xca, 0x51, 0xa6, 0x2d, 0x65, 0x74, 0xa7, - 0xf8, 0xf4, 0x59, 0x75, 0xcc, 0xd6, 0x04, 0x5b, 0xb3, 0x32, 0x9e, 0x94, 0xba, 0xb6, 0x02, 0x96, - 0xfb, 0xbc, 0x4c, 0x23, 0xf8, 0x53, 0x09, 0x2c, 0x1e, 0x30, 0x3f, 0x89, 0x72, 0xdb, 0xf3, 0x88, - 0x48, 0x23, 0x5c, 0xe9, 0xaf, 0x33, 0xdd, 0x1a, 0xf3, 0x6d, 0x30, 0x4b, 0x42, 0xc2, 0x09, 0x6a, - 0x39, 0x4d, 0x2c, 0xe6, 0x46, 0x3b, 0x5c, 0x91, 0xb3, 0x25, 0x6a, 0xab, 0xa5, 0x2b, 0xaa, 0x9c, - 0x21, 0x81, 0xd0, 0xfe, 0xcd, 0x68, 0x3d, 0x35, 0x28, 0x6a, 0x8e, 0x8f, 0x43, 0xcc, 0x08, 0x73, - 0x9a, 0x88, 0x35, 0xe5, 0xa4, 0x4f, 0xdb, 0x53, 0x7a, 0xec, 0x2e, 0x62, 0x4d, 0x31, 0x85, 0x0d, - 0x12, 0xa2, 0xf8, 0x54, 0x21, 0x8a, 0x12, 0x01, 0xd4, 0x90, 0x04, 0xec, 0x02, 0xc0, 0x22, 0x74, - 0x12, 0x3a, 0xa2, 0xdb, 0xc8, 0x0a, 0x23, 0x1c, 0x51, 0x9d, 0xc4, 0x4a, 0x3a, 0x89, 0x75, 0x3f, - 0x69, 0x45, 0x3b, 0x25, 0xe1, 0xc8, 0x47, 0x7f, 0xae, 0x1a, 0x76, 0x59, 0xea, 0x09, 0x09, 0xbc, - 0x07, 0xe6, 0xdb, 0x61, 0x83, 0x86, 0x1e, 0x09, 0x7d, 0x27, 0xc2, 0x31, 0xa1, 0x9e, 0x39, 0x29, - 0xa9, 0x56, 0x06, 0xa8, 0xf6, 0x74, 0xd3, 0x52, 0x4c, 0x3f, 0x13, 0x4c, 0x73, 0xa9, 0xf2, 0x91, - 0xd4, 0x85, 0xef, 0x01, 0xe8, 0xba, 0x1d, 0xe9, 0x12, 0x6d, 0xf3, 0x84, 0xf1, 0x95, 0xfc, 0x8c, - 0xf3, 0xae, 0xdb, 0xb9, 0xaf, 0xb4, 0x35, 0xe5, 0x0f, 0xc0, 0x32, 0x8f, 0x51, 0xc8, 0x1e, 0xe2, - 0xb8, 0x9f, 0xb7, 0x94, 0x9f, 0xf7, 0x4a, 0xc2, 0x91, 0x25, 0xbf, 0x0b, 0xd6, 0xd2, 0x8d, 0x12, - 0x63, 0x8f, 0x30, 0x1e, 0x93, 0x46, 0x5b, 0xee, 0xca, 0x64, 0x5f, 0x99, 0x65, 0xb9, 0x08, 0x56, - 0x13, 0x9c, 0x9d, 0x81, 0x7d, 0x4b, 0xa3, 0xe0, 0x21, 0x78, 0x5d, 0xee, 0x63, 0x26, 0x9c, 0x73, - 0x32, 0x4c, 0xd2, 0x74, 0x40, 0x18, 0x13, 0x6c, 0x60, 0xcd, 0x58, 0x1f, 0xb7, 0xaf, 0x2b, 0xec, - 0x11, 0x8e, 0xf7, 0x7a, 0x90, 0xf7, 0x7b, 0x80, 0x70, 0x03, 0xc0, 0x26, 0x61, 0x9c, 0xc6, 0xc4, - 0x45, 0x2d, 0x07, 0x87, 0x3c, 0x26, 0x98, 0x99, 0x53, 0x52, 0x7d, 0xa1, 0x2b, 0xb9, 0xa3, 0x04, - 0xf0, 0x5d, 0x70, 0xfd, 0x4c, 0xa3, 0x8e, 0xdb, 0x44, 0x61, 0x88, 0x5b, 0xe6, 0xb4, 0x0c, 0xa5, - 0xea, 0x9d, 0x61, 0x73, 0x57, 0xc1, 0xe0, 0x22, 0x98, 0xe0, 0x34, 0x72, 0xee, 0x99, 0x33, 0x6b, - 0xc6, 0xfa, 0x8c, 0x5d, 0xe4, 0x34, 0xba, 0x07, 0xdf, 0x06, 0x4b, 0x1d, 0xd4, 0x22, 0x1e, 0xe2, - 0x34, 0x66, 0x4e, 0x44, 0x4f, 0x70, 0xec, 0xb8, 0x28, 0x32, 0x67, 0x25, 0x06, 0x76, 0x65, 0x47, - 0x42, 0xb4, 0x8b, 0x22, 0x78, 0x03, 0x2c, 0xa4, 0xa3, 0x0e, 0xc3, 0x5c, 0xc2, 0xe7, 0x24, 0x7c, - 0x2e, 0x15, 0x1c, 0x63, 0x2e, 0xb0, 0xd7, 0x40, 0x19, 0xb5, 0x5a, 0xf4, 0xa4, 0x45, 0x18, 0x37, - 0xe7, 0xd7, 0xc6, 0xd7, 0xcb, 0x76, 0x77, 0x00, 0x56, 0x40, 0xc9, 0xc3, 0xe1, 0xa9, 0x14, 0x2e, - 0x48, 0x61, 0xfa, 0x9e, 0xad, 0x3a, 0x30, 0x7f, 0xd5, 0xb9, 0x0a, 0xca, 0x81, 0xa8, 0x2f, 0x1c, - 0x3d, 0xc2, 0xe6, 0xe2, 0x9a, 0xb1, 0x5e, 0xb4, 0x4b, 0x01, 0x09, 0x8f, 0xc5, 0x3b, 0xb4, 0xc0, - 0xa2, 0xb4, 0xee, 0x90, 0x50, 0xcc, 0x6f, 0x07, 0x3b, 0x1d, 0xd4, 0x62, 0xe6, 0xd2, 0x9a, 0xb1, - 0x5e, 0xb2, 0x17, 0xa4, 0x68, 0x5f, 0x4b, 0x1e, 0xa0, 0x16, 0xdb, 0x9a, 0xcf, 0xd6, 0x1d, 0xd3, - 0xa8, 0xfd, 0xc6, 0x00, 0xb0, 0xa7, 0xbc, 0xd8, 0x38, 0xa0, 0x1d, 0xd4, 0x3a, 0xaf, 0xba, 0x6c, - 0x83, 0x32, 0x13, 0x69, 0x97, 0xfb, 0xb9, 0x70, 0x89, 0xfd, 0x5c, 0x12, 0x6a, 0x72, 0x3b, 0x67, - 0x72, 0x31, 0x9e, 0x3b, 0x17, 0x43, 0xdc, 0x8f, 0xc0, 0xc2, 0x01, 0xf3, 0xa5, 0xd7, 0x38, 0x89, - 0xa1, 0xbf, 0xad, 0x18, 0xfd, 0x6d, 0x05, 0x5a, 0x60, 0x82, 0x9e, 0x88, 0x73, 0x52, 0xe1, 0x02, - 0xdb, 0x0a, 0xb6, 0x05, 0x84, 0x5d, 0xf5, 0x5c, 0xbb, 0x0a, 0x56, 0x06, 0x2c, 0xa6, 0xc5, 0xfa, - 0xd7, 0x06, 0xb8, 0x22, 0xb2, 0xd9, 0x44, 0xa1, 0x8f, 0x6d, 0x7c, 0x82, 0x62, 0x6f, 0x0f, 0x87, - 0x34, 0x60, 0xb0, 0x06, 0x66, 0x3c, 0xf9, 0xe4, 0x70, 0x2a, 0x0e, 0x7e, 0xa6, 0x21, 0xd7, 0xc7, - 0x94, 0x1a, 0xbc, 0x4f, 0xb7, 0x3d, 0x0f, 0xae, 0x83, 0xf9, 0x2e, 0x26, 0x96, 0x16, 0xcc, 0x82, - 0x84, 0xcd, 0x26, 0x30, 0x65, 0x77, 0xe4, 0x04, 0xf6, 0xf7, 0x9d, 0xaa, 0x3c, 0x9a, 0x0c, 0xba, - 0x9b, 0x06, 0xf4, 0x37, 0x03, 0x94, 0x0e, 0x98, 0x7f, 0x18, 0xf1, 0xfd, 0xf0, 0xff, 0xe1, 0x68, - 0x0b, 0xc1, 0x7c, 0x12, 0x6e, 0x9a, 0x83, 0xdf, 0x19, 0xa0, 0xac, 0x06, 0x0f, 0xdb, 0xfc, 0xdf, - 0x96, 0x84, 0x6e, 0x84, 0xe3, 0xa3, 0x45, 0x58, 0xcc, 0x17, 0xe1, 0xa2, 0xdc, 0x31, 0x2a, 0x98, - 0x34, 0xc4, 0x5f, 0x14, 0xe4, 0x91, 0x5e, 0x14, 0x39, 0xad, 0xbe, 0x4b, 0x03, 0x5d, 0x6d, 0x6d, - 0xc4, 0xf1, 0x60, 0x58, 0x46, 0xce, 0xb0, 0x7a, 0xd3, 0x55, 0x18, 0x4c, 0xd7, 0x1d, 0x50, 0x8c, - 0x11, 0xc7, 0x3a, 0xe6, 0x9b, 0xa2, 0x56, 0xfc, 0xf1, 0x59, 0xf5, 0xaa, 0x8a, 0x9b, 0x79, 0x8f, - 0x2c, 0x42, 0xeb, 0x01, 0xe2, 0x4d, 0xeb, 0xbb, 0xd8, 0x47, 0xee, 0xe9, 0x1e, 0x76, 0x3f, 0xfb, - 0x64, 0x03, 0xe8, 0xb4, 0xec, 0x61, 0xd7, 0x96, 0xea, 0xff, 0xb1, 0xe5, 0xf1, 0x06, 0x78, 0xfd, - 0xbc, 0x34, 0xa5, 0xf9, 0x7c, 0x32, 0x2e, 0x0f, 0x74, 0xe9, 0xbd, 0x80, 0x7a, 0xe4, 0xa1, 0x38, - 0x5e, 0x8b, 0x86, 0xb9, 0x04, 0x26, 0x38, 0xe1, 0x2d, 0xac, 0xeb, 0x92, 0x7a, 0x81, 0x6b, 0x60, - 0xca, 0xc3, 0xcc, 0x8d, 0x49, 0x24, 0x9b, 0x79, 0x41, 0x6d, 0x81, 0x9e, 0xa1, 0x4c, 0x49, 0x1e, - 0xcf, 0x96, 0xe4, 0xb4, 0x11, 0x16, 0x73, 0x34, 0xc2, 0x89, 0xcb, 0x35, 0xc2, 0xc9, 0x1c, 0x8d, - 0xf0, 0x95, 0xf3, 0x1a, 0x61, 0xe9, 0xbc, 0x46, 0x58, 0x1e, 0xb1, 0x11, 0x82, 0x7c, 0x8d, 0x70, - 0x2a, 0x7f, 0x23, 0xbc, 0x0e, 0xaa, 0x67, 0xcc, 0x58, 0x3a, 0xab, 0xbf, 0x2d, 0xca, 0xbd, 0xb3, - 0x1b, 0x63, 0xc4, 0xbb, 0xdd, 0x66, 0xd4, 0xdb, 0xdb, 0x4a, 0xff, 0xce, 0xe8, 0xce, 0xe7, 0xfb, - 0xa0, 0x14, 0x60, 0x8e, 0x3c, 0xc4, 0x91, 0xbe, 0x68, 0xbd, 0x93, 0xeb, 0xae, 0x91, 0x7a, 0xaf, - 0x95, 0xf5, 0xa9, 0x3e, 0x25, 0x83, 0x1f, 0x18, 0x60, 0x45, 0x1f, 0xf1, 0xc9, 0x8f, 0x64, 0x70, - 0x8e, 0xbc, 0x91, 0x60, 0x8e, 0x63, 0x26, 0x57, 0xcf, 0xd4, 0xe6, 0x9d, 0x4b, 0x99, 0xda, 0xcf, - 0xb0, 0x1d, 0xa5, 0x64, 0xb6, 0x49, 0xce, 0x90, 0xc0, 0x36, 0x30, 0xd5, 0x6a, 0x64, 0x4d, 0x14, - 0xc9, 0x03, 0x7d, 0xd7, 0x05, 0x75, 0x3f, 0xf8, 0x7a, 0xbe, 0x9b, 0x95, 0x20, 0x39, 0x56, 0x1c, - 0x3d, 0x86, 0x5f, 0x8d, 0x86, 0x8e, 0xc3, 0xc7, 0x60, 0x25, 0x5d, 0xa0, 0xd8, 0x73, 0x62, 0xd9, - 0xee, 0x1c, 0xd5, 0x58, 0xf5, 0xd1, 0xff, 0x76, 0x2e, 0xbb, 0xdb, 0x5d, 0x96, 0x4c, 0xcf, 0x5c, - 0x46, 0xc3, 0x05, 0xba, 0xeb, 0x76, 0x6f, 0xaf, 0xb7, 0xe5, 0x11, 0x22, 0xbb, 0x8c, 0x92, 0x45, - 0x76, 0xe1, 0xe1, 0xa5, 0xf6, 0x4f, 0xb5, 0x0a, 0xd5, 0x65, 0x31, 0x5d, 0x85, 0xe9, 0x91, 0xc6, - 0xc8, 0x75, 0xa4, 0xe9, 0x37, 0x53, 0x18, 0x38, 0x23, 0xed, 0x81, 0x85, 0x10, 0x9f, 0x38, 0x12, - 0xed, 0xe8, 0xe2, 0x7e, 0x61, 0x6b, 0x9a, 0x0b, 0xf1, 0xc9, 0xa1, 0xd0, 0xd0, 0xc3, 0xf0, 0xbd, - 0x9e, 0x95, 0x5c, 0x7c, 0x89, 0x95, 0x9c, 0x7b, 0x0d, 0x4f, 0xfc, 0xf7, 0xd7, 0xf0, 0xe4, 0xff, - 0xe2, 0x1a, 0x1e, 0x3c, 0x02, 0x67, 0x17, 0x60, 0xb2, 0x7e, 0x37, 0x9f, 0x4e, 0x83, 0xf1, 0x03, - 0xe6, 0xc3, 0x9f, 0x18, 0x60, 0x61, 0xf0, 0xeb, 0xe8, 0xd7, 0x72, 0x79, 0x37, 0xec, 0xeb, 0x62, - 0x65, 0x7b, 0x64, 0xd5, 0x74, 0x6f, 0xfd, 0xca, 0x00, 0x95, 0x73, 0xbe, 0x4a, 0xee, 0xe4, 0xb5, - 0x70, 0x36, 0x47, 0xe5, 0xdd, 0x97, 0xe7, 0x38, 0xc7, 0xdd, 0xcc, 0x67, 0xc3, 0x11, 0xdd, 0xed, - 0xe5, 0x18, 0xd5, 0xdd, 0x61, 0xdf, 0xda, 0xe0, 0x87, 0x06, 0x98, 0xed, 0xef, 0x8d, 0x79, 0xe9, - 0xb3, 0x7a, 0x95, 0x6f, 0x8e, 0xa6, 0x97, 0x71, 0xa5, 0xaf, 0x40, 0xe6, 0x76, 0x25, 0xab, 0x97, - 0xdf, 0x95, 0xe1, 0xfb, 0x41, 0xba, 0xd2, 0x77, 0x3f, 0xcd, 0xed, 0x4a, 0x56, 0x2f, 0xbf, 0x2b, - 0xc3, 0x6f, 0xa7, 0xa2, 0x72, 0x4e, 0x67, 0xbe, 0x84, 0x7e, 0xe5, 0x72, 0xb1, 0x29, 0xad, 0xca, - 0xed, 0x51, 0xb4, 0x52, 0x27, 0x02, 0x30, 0xa1, 0x6e, 0x93, 0x1b, 0x79, 0x69, 0x24, 0xbc, 0xf2, - 0xce, 0xa5, 0xe0, 0xa9, 0xb9, 0x08, 0x4c, 0xea, 0x8b, 0x9b, 0x75, 0x09, 0x82, 0xc3, 0x36, 0xaf, - 0xdc, 0xba, 0x1c, 0x3e, 0xb5, 0xf8, 0x4b, 0x03, 0xac, 0x9c, 0x7d, 0x91, 0xca, 0x5d, 0xc5, 0xce, - 0xa4, 0xa8, 0xec, 0xbf, 0x34, 0x45, 0xea, 0xeb, 0x4f, 0x0d, 0x00, 0x87, 0x7c, 0xac, 0xd8, 0xca, - 0xbd, 0xfd, 0x06, 0x74, 0x2b, 0x3b, 0xa3, 0xeb, 0x26, 0x6e, 0x55, 0x26, 0x7e, 0xfc, 0xf9, 0x93, - 0x1b, 0xc6, 0xce, 0xfb, 0x4f, 0x9f, 0xaf, 0x1a, 0x9f, 0x3e, 0x5f, 0x35, 0xfe, 0xf2, 0x7c, 0xd5, - 0xf8, 0xe8, 0xc5, 0xea, 0xd8, 0xa7, 0x2f, 0x56, 0xc7, 0xfe, 0xf0, 0x62, 0x75, 0xec, 0xfb, 0xdf, - 0xf0, 0x09, 0x6f, 0xb6, 0x1b, 0x96, 0x4b, 0x03, 0xfd, 0xb7, 0x62, 0xbd, 0x6b, 0x75, 0x23, 0xfd, - 0x57, 0xb0, 0x73, 0xab, 0xfe, 0x38, 0xfb, 0xd7, 0xa0, 0xfc, 0x13, 0xa4, 0x31, 0x29, 0xbf, 0x53, - 0x7d, 0xf9, 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xbd, 0x07, 0x20, 0x8f, 0x96, 0x1d, 0x00, 0x00, + 0x15, 0x76, 0x8f, 0xc7, 0xce, 0x4c, 0xd9, 0xf1, 0x4f, 0xd9, 0x59, 0xb7, 0x27, 0x59, 0x8f, 0x33, + 0x2c, 0xbb, 0x56, 0x58, 0xf7, 0x6c, 0x0c, 0x1b, 0x84, 0x09, 0x48, 0xfe, 0x09, 0xc4, 0x0b, 0x8e, + 0xbd, 0xed, 0x90, 0x95, 0x40, 0xa2, 0x55, 0xd3, 0x5d, 0xe9, 0x29, 0x65, 0xba, 0xab, 0xd5, 0x55, + 0x33, 0x8e, 0x39, 0xa1, 0x3d, 0xed, 0x71, 0x91, 0x38, 0x70, 0xdc, 0x03, 0x1c, 0x90, 0x40, 0xca, + 0x61, 0x8f, 0x5c, 0x91, 0x22, 0x71, 0x59, 0xf6, 0x84, 0x10, 0x0a, 0x28, 0x39, 0x2c, 0x17, 0x2e, + 0xdc, 0x38, 0x81, 0xea, 0xa7, 0x7b, 0xa6, 0x67, 0xc6, 0x76, 0x7b, 0xa2, 0x65, 0x0f, 0x7b, 0x19, + 0x75, 0xd7, 0xfb, 0xde, 0xf7, 0x7e, 0xaa, 0xea, 0xbd, 0xaa, 0x1e, 0xf0, 0x26, 0x09, 0x39, 0x8e, + 0xdd, 0x26, 0x22, 0xa1, 0xc3, 0xb0, 0xdb, 0x8e, 0x09, 0x3f, 0xa9, 0xbb, 0x6e, 0xa7, 0x1e, 0xc5, + 0xb4, 0x43, 0x3c, 0x1c, 0xd7, 0x3b, 0x37, 0xeb, 0xfc, 0xb1, 0x15, 0xc5, 0x94, 0x53, 0xf8, 0x95, + 0x21, 0x68, 0xcb, 0x75, 0x3b, 0x56, 0x82, 0xb6, 0x3a, 0x37, 0x2b, 0xf3, 0x28, 0x20, 0x21, 0xad, + 0xcb, 0x5f, 0xa5, 0x57, 0xb9, 0xe6, 0x53, 0xea, 0xb7, 0x70, 0x1d, 0x45, 0xa4, 0x8e, 0xc2, 0x90, + 0x72, 0xc4, 0x09, 0x0d, 0x99, 0x96, 0x56, 0xb5, 0x54, 0xbe, 0x35, 0xda, 0x0f, 0xeb, 0x9c, 0x04, + 0x98, 0x71, 0x14, 0x44, 0x1a, 0xb0, 0xd2, 0x0f, 0xf0, 0xda, 0xb1, 0x64, 0xd0, 0xf2, 0xe5, 0x7e, + 0x39, 0x0a, 0x4f, 0xb4, 0x68, 0xd1, 0xa7, 0x3e, 0x95, 0x8f, 0x75, 0xf1, 0x94, 0x28, 0xb8, 0x94, + 0x05, 0x94, 0x39, 0x4a, 0xa0, 0x5e, 0xb4, 0x68, 0x49, 0xbd, 0xd5, 0x03, 0xe6, 0x8b, 0xd0, 0x03, + 0xe6, 0x27, 0x5e, 0x92, 0x86, 0x5b, 0x77, 0x69, 0x8c, 0xeb, 0x6e, 0x8b, 0xe0, 0x90, 0x0b, 0xa9, + 0x7a, 0xd2, 0x80, 0x8d, 0x3c, 0xa9, 0x4c, 0x13, 0xa5, 0x74, 0xea, 0x82, 0xb4, 0x45, 0xfc, 0x26, + 0x57, 0x54, 0xac, 0xce, 0x71, 0xe8, 0xe1, 0x38, 0x20, 0xca, 0x40, 0xf7, 0x2d, 0xf1, 0xa2, 0x47, + 0xce, 0x4f, 0x22, 0xcc, 0xea, 0x58, 0xf0, 0x85, 0x2e, 0x56, 0x80, 0xda, 0x7f, 0x0c, 0xb0, 0xb8, + 0xcf, 0xfc, 0x2d, 0xc6, 0x88, 0x1f, 0xee, 0xd0, 0x90, 0xb5, 0x03, 0x1c, 0xff, 0x00, 0x9f, 0xc0, + 0x57, 0x41, 0x49, 0xf9, 0x46, 0x3c, 0xd3, 0x58, 0x35, 0xd6, 0xca, 0xdb, 0x05, 0xd3, 0xb0, 0x2f, + 0xc9, 0xb1, 0x3d, 0x0f, 0x7e, 0x13, 0x5c, 0x4e, 0x7c, 0x73, 0x90, 0xe7, 0xc5, 0x66, 0x41, 0x62, + 0xe0, 0xbf, 0x9f, 0x55, 0x67, 0x4e, 0x50, 0xd0, 0xda, 0xac, 0x89, 0x51, 0xcc, 0x58, 0xcd, 0x9e, + 0x4e, 0x80, 0x5b, 0x9e, 0x17, 0xc3, 0xeb, 0x60, 0xda, 0xd5, 0x66, 0x9c, 0x47, 0xf8, 0xc4, 0x1c, + 0x17, 0x7a, 0xf6, 0x94, 0xdb, 0x63, 0xfa, 0x2d, 0x30, 0x29, 0xbc, 0xc1, 0xb1, 0x59, 0x94, 0xa4, + 0xe6, 0xa7, 0x1f, 0xaf, 0x2f, 0xea, 0xac, 0x6f, 0x29, 0xd6, 0x23, 0x1e, 0x93, 0xd0, 0xb7, 0x35, + 0x0e, 0x56, 0x41, 0x4a, 0x20, 0xfc, 0x9d, 0x90, 0x9c, 0x20, 0x19, 0xda, 0xf3, 0x36, 0x17, 0x3e, + 0xf8, 0xa8, 0x3a, 0xf6, 0xcf, 0x8f, 0xaa, 0x63, 0xef, 0x7f, 0xf6, 0xe4, 0x86, 0xd6, 0xaa, 0xad, + 0x80, 0x6b, 0xc3, 0x42, 0xb7, 0x31, 0x8b, 0x68, 0xc8, 0x70, 0xed, 0xb9, 0x01, 0x5e, 0xdd, 0x67, + 0xfe, 0x51, 0xbb, 0x11, 0x10, 0x9e, 0x00, 0xf6, 0x09, 0x6b, 0xe0, 0x26, 0xea, 0x10, 0xda, 0x8e, + 0xe1, 0x2d, 0x50, 0x66, 0x52, 0xca, 0x71, 0xac, 0xb3, 0x74, 0xba, 0xb3, 0x5d, 0x28, 0x3c, 0x04, + 0xd3, 0x41, 0x0f, 0x8f, 0x4c, 0xde, 0xd4, 0xc6, 0x9b, 0x16, 0x69, 0xb8, 0x56, 0xef, 0xf4, 0x5a, + 0x3d, 0x13, 0xda, 0xb9, 0x69, 0xf5, 0xda, 0xb6, 0x33, 0x0c, 0xfd, 0x19, 0x18, 0x1f, 0xc8, 0xc0, + 0x2b, 0xbd, 0x19, 0xe8, 0xba, 0x52, 0x7b, 0x03, 0x7c, 0xf5, 0xcc, 0x18, 0xd3, 0x6c, 0xfc, 0xb9, + 0x30, 0x24, 0x1b, 0xbb, 0xb4, 0xdd, 0x68, 0xe1, 0x07, 0x94, 0x93, 0xd0, 0x1f, 0x39, 0x1b, 0x0e, + 0x58, 0xf2, 0xda, 0x51, 0x8b, 0xb8, 0x88, 0x63, 0xa7, 0x43, 0x39, 0x76, 0x92, 0x45, 0xaa, 0x13, + 0xf3, 0x46, 0x6f, 0x1e, 0xe4, 0x32, 0xb6, 0x76, 0x13, 0x85, 0x07, 0x94, 0xe3, 0x3b, 0x1a, 0x6e, + 0x5f, 0xf1, 0x86, 0x0d, 0xc3, 0x9f, 0x82, 0x25, 0x12, 0x3e, 0x8c, 0x91, 0x2b, 0x8a, 0x80, 0xd3, + 0x68, 0x51, 0xf7, 0x91, 0xd3, 0xc4, 0xc8, 0xc3, 0xb1, 0x4c, 0xd4, 0xd4, 0xc6, 0xeb, 0xe7, 0x65, + 0xfe, 0xae, 0x44, 0xdb, 0x57, 0xba, 0x34, 0xdb, 0x82, 0x45, 0x0d, 0xf7, 0x27, 0xbf, 0xf8, 0x52, + 0xc9, 0xef, 0x4d, 0x69, 0x9a, 0xfc, 0x5f, 0x1b, 0x60, 0x76, 0x9f, 0xf9, 0x3f, 0x8a, 0x3c, 0xc4, + 0xf1, 0x21, 0x8a, 0x51, 0xc0, 0x44, 0xba, 0x51, 0x9b, 0x37, 0xa9, 0x28, 0x1c, 0xe7, 0xa7, 0x3b, + 0x85, 0xc2, 0x3d, 0x30, 0x19, 0x49, 0x06, 0x9d, 0xdd, 0xaf, 0x59, 0x39, 0xca, 0xb4, 0xa5, 0x8c, + 0x6e, 0x17, 0x9f, 0x3e, 0xab, 0x8e, 0xd9, 0x9a, 0x60, 0x73, 0x46, 0xc6, 0x93, 0x52, 0xd7, 0x96, + 0xc1, 0x52, 0x9f, 0x97, 0x69, 0x04, 0x7f, 0x2b, 0x81, 0x85, 0x7d, 0xe6, 0x27, 0x51, 0x6e, 0x79, + 0x1e, 0x11, 0x69, 0x84, 0xcb, 0xfd, 0x75, 0xa6, 0x5b, 0x63, 0xbe, 0x0f, 0x66, 0x48, 0x48, 0x38, + 0x41, 0x2d, 0xa7, 0x89, 0xc5, 0xdc, 0x68, 0x87, 0x2b, 0x72, 0xb6, 0x44, 0x6d, 0xb5, 0x74, 0x45, + 0x95, 0x33, 0x24, 0x10, 0xda, 0xbf, 0xcb, 0x5a, 0x4f, 0x0d, 0x8a, 0x9a, 0xe3, 0xe3, 0x10, 0x33, + 0xc2, 0x9c, 0x26, 0x62, 0x4d, 0x39, 0xe9, 0xd3, 0xf6, 0x94, 0x1e, 0xbb, 0x8b, 0x58, 0x53, 0x4c, + 0x61, 0x83, 0x84, 0x28, 0x3e, 0x51, 0x88, 0xa2, 0x44, 0x00, 0x35, 0x24, 0x01, 0x3b, 0x00, 0xb0, + 0x08, 0x1d, 0x87, 0x8e, 0xe8, 0x36, 0xb2, 0xc2, 0x08, 0x47, 0x54, 0x27, 0xb1, 0x92, 0x4e, 0x62, + 0xdd, 0x4f, 0x5a, 0xd1, 0x76, 0x49, 0x38, 0xf2, 0xe1, 0xdf, 0xab, 0x86, 0x5d, 0x96, 0x7a, 0x42, + 0x02, 0xef, 0x81, 0xb9, 0x76, 0xd8, 0xa0, 0xa1, 0x47, 0x42, 0xdf, 0x89, 0x70, 0x4c, 0xa8, 0x67, + 0x4e, 0x4a, 0xaa, 0xe5, 0x01, 0xaa, 0x5d, 0xdd, 0xb4, 0x14, 0xd3, 0xaf, 0x04, 0xd3, 0x6c, 0xaa, + 0x7c, 0x28, 0x75, 0xe1, 0xbb, 0x00, 0xba, 0x6e, 0x47, 0xba, 0x44, 0xdb, 0x3c, 0x61, 0xbc, 0x94, + 0x9f, 0x71, 0xce, 0x75, 0x3b, 0xf7, 0x95, 0xb6, 0xa6, 0xfc, 0x09, 0x58, 0xe2, 0x31, 0x0a, 0xd9, + 0x43, 0x1c, 0xf7, 0xf3, 0x96, 0xf2, 0xf3, 0x5e, 0x49, 0x38, 0xb2, 0xe4, 0x77, 0xc1, 0x6a, 0xba, + 0x51, 0x62, 0xec, 0x11, 0xc6, 0x63, 0xd2, 0x68, 0xcb, 0x5d, 0x99, 0xec, 0x2b, 0xb3, 0x2c, 0x17, + 0xc1, 0x4a, 0x82, 0xb3, 0x33, 0xb0, 0xef, 0x69, 0x14, 0x3c, 0x00, 0xaf, 0xc9, 0x7d, 0xcc, 0x84, + 0x73, 0x4e, 0x86, 0x49, 0x9a, 0x0e, 0x08, 0x63, 0x82, 0x0d, 0xac, 0x1a, 0x6b, 0xe3, 0xf6, 0x75, + 0x85, 0x3d, 0xc4, 0xf1, 0x6e, 0x0f, 0xf2, 0x7e, 0x0f, 0x10, 0xae, 0x03, 0xd8, 0x24, 0x8c, 0xd3, + 0x98, 0xb8, 0xa8, 0xe5, 0xe0, 0x90, 0xc7, 0x04, 0x33, 0x73, 0x4a, 0xaa, 0xcf, 0x77, 0x25, 0x77, + 0x94, 0x00, 0xbe, 0x03, 0xae, 0x9f, 0x6a, 0xd4, 0x71, 0x9b, 0x28, 0x0c, 0x71, 0xcb, 0x9c, 0x96, + 0xa1, 0x54, 0xbd, 0x53, 0x6c, 0xee, 0x28, 0x18, 0x5c, 0x00, 0x13, 0x9c, 0x46, 0xce, 0x3d, 0xf3, + 0xf2, 0xaa, 0xb1, 0x76, 0xd9, 0x2e, 0x72, 0x1a, 0xdd, 0x83, 0x6f, 0x81, 0xc5, 0x0e, 0x6a, 0x11, + 0x0f, 0x71, 0x1a, 0x33, 0x27, 0xa2, 0xc7, 0x38, 0x76, 0x5c, 0x14, 0x99, 0x33, 0x12, 0x03, 0xbb, + 0xb2, 0x43, 0x21, 0xda, 0x41, 0x11, 0xbc, 0x01, 0xe6, 0xd3, 0x51, 0x87, 0x61, 0x2e, 0xe1, 0xb3, + 0x12, 0x3e, 0x9b, 0x0a, 0x8e, 0x30, 0x17, 0xd8, 0x6b, 0xa0, 0x8c, 0x5a, 0x2d, 0x7a, 0xdc, 0x22, + 0x8c, 0x9b, 0x73, 0xab, 0xe3, 0x6b, 0x65, 0xbb, 0x3b, 0x00, 0x2b, 0xa0, 0xe4, 0xe1, 0xf0, 0x44, + 0x0a, 0xe7, 0xa5, 0x30, 0x7d, 0xcf, 0x56, 0x1d, 0x98, 0xbf, 0xea, 0x5c, 0x05, 0xe5, 0x40, 0xd4, + 0x17, 0x8e, 0x1e, 0x61, 0x73, 0x61, 0xd5, 0x58, 0x2b, 0xda, 0xa5, 0x80, 0x84, 0x47, 0xe2, 0x1d, + 0x5a, 0x60, 0x41, 0x5a, 0x77, 0x48, 0x28, 0xe6, 0xb7, 0x83, 0x9d, 0x0e, 0x6a, 0x31, 0x73, 0x71, + 0xd5, 0x58, 0x2b, 0xd9, 0xf3, 0x52, 0xb4, 0xa7, 0x25, 0x0f, 0x50, 0x8b, 0x6d, 0xce, 0x65, 0xeb, + 0x8e, 0x69, 0xd4, 0xfe, 0x60, 0x00, 0xd8, 0x53, 0x5e, 0x6c, 0x1c, 0xd0, 0x0e, 0x6a, 0x9d, 0x55, + 0x5d, 0xb6, 0x40, 0x99, 0x89, 0xb4, 0xcb, 0xfd, 0x5c, 0xb8, 0xc0, 0x7e, 0x2e, 0x09, 0x35, 0xb9, + 0x9d, 0x33, 0xb9, 0x18, 0xcf, 0x9d, 0x8b, 0x21, 0xee, 0x47, 0x60, 0x7e, 0x9f, 0xf9, 0xd2, 0x6b, + 0x9c, 0xc4, 0xd0, 0xdf, 0x56, 0x8c, 0xfe, 0xb6, 0x02, 0x2d, 0x30, 0x41, 0x8f, 0xc5, 0x39, 0xa9, + 0x70, 0x8e, 0x6d, 0x05, 0xdb, 0x04, 0xc2, 0xae, 0x7a, 0xae, 0x5d, 0x05, 0xcb, 0x03, 0x16, 0xd3, + 0x62, 0xfd, 0x7b, 0x03, 0x5c, 0x11, 0xd9, 0x6c, 0xa2, 0xd0, 0xc7, 0x36, 0x3e, 0x46, 0xb1, 0xb7, + 0x8b, 0x43, 0x1a, 0x30, 0x58, 0x03, 0x97, 0x3d, 0xf9, 0xe4, 0x70, 0x2a, 0x0e, 0x7e, 0xa6, 0x21, + 0xd7, 0xc7, 0x94, 0x1a, 0xbc, 0x4f, 0xb7, 0x3c, 0x0f, 0xae, 0x81, 0xb9, 0x2e, 0x26, 0x96, 0x16, + 0xcc, 0x82, 0x84, 0xcd, 0x24, 0x30, 0x65, 0x77, 0xe4, 0x04, 0xf6, 0xf7, 0x9d, 0xaa, 0x3c, 0x9a, + 0x0c, 0xba, 0x9b, 0x06, 0xf4, 0x2f, 0x03, 0x94, 0xf6, 0x99, 0x7f, 0x10, 0xf1, 0xbd, 0xf0, 0xcb, + 0x70, 0xb4, 0x85, 0x60, 0x2e, 0x09, 0x37, 0xcd, 0xc1, 0x9f, 0x0c, 0x50, 0x56, 0x83, 0x07, 0x6d, + 0xfe, 0xb9, 0x25, 0xa1, 0x1b, 0xe1, 0xf8, 0x68, 0x11, 0x16, 0xf3, 0x45, 0xb8, 0x20, 0x77, 0x8c, + 0x0a, 0x26, 0x0d, 0xf1, 0x37, 0x05, 0x79, 0xa4, 0x17, 0x45, 0x4e, 0xab, 0xef, 0xd0, 0x40, 0x57, + 0x5b, 0x1b, 0x71, 0x3c, 0x18, 0x96, 0x91, 0x33, 0xac, 0xde, 0x74, 0x15, 0x06, 0xd3, 0x75, 0x07, + 0x14, 0x63, 0xc4, 0xb1, 0x8e, 0xf9, 0xa6, 0xa8, 0x15, 0x7f, 0x7d, 0x56, 0xbd, 0xaa, 0xe2, 0x66, + 0xde, 0x23, 0x8b, 0xd0, 0x7a, 0x80, 0x78, 0xd3, 0xfa, 0x21, 0xf6, 0x91, 0x7b, 0xb2, 0x8b, 0xdd, + 0x4f, 0x3f, 0x5e, 0x07, 0x3a, 0x2d, 0xbb, 0xd8, 0xb5, 0xa5, 0xfa, 0xff, 0x6d, 0x79, 0xbc, 0x0e, + 0x5e, 0x3b, 0x2b, 0x4d, 0x69, 0x3e, 0x9f, 0x8c, 0xcb, 0x03, 0x5d, 0x7a, 0x2f, 0xa0, 0x1e, 0x79, + 0x28, 0x8e, 0xd7, 0xa2, 0x61, 0x2e, 0x82, 0x09, 0x4e, 0x78, 0x0b, 0xeb, 0xba, 0xa4, 0x5e, 0xe0, + 0x2a, 0x98, 0xf2, 0x30, 0x73, 0x63, 0x12, 0xc9, 0x66, 0x5e, 0x50, 0x5b, 0xa0, 0x67, 0x28, 0x53, + 0x92, 0xc7, 0xb3, 0x25, 0x39, 0x6d, 0x84, 0xc5, 0x1c, 0x8d, 0x70, 0xe2, 0x62, 0x8d, 0x70, 0x32, + 0x47, 0x23, 0xbc, 0x74, 0x56, 0x23, 0x2c, 0x9d, 0xd5, 0x08, 0xcb, 0x23, 0x36, 0x42, 0x90, 0xaf, + 0x11, 0x4e, 0xe5, 0x6f, 0x84, 0xd7, 0x41, 0xf5, 0x94, 0x19, 0x4b, 0x67, 0xf5, 0x8f, 0x45, 0xb9, + 0x77, 0x76, 0x62, 0x8c, 0x78, 0xb7, 0xdb, 0x8c, 0x7a, 0x7b, 0x5b, 0xee, 0xdf, 0x19, 0xdd, 0xf9, + 0x7c, 0x0f, 0x94, 0x02, 0xcc, 0x91, 0x87, 0x38, 0xd2, 0x17, 0xad, 0xb7, 0x73, 0xdd, 0x35, 0x52, + 0xef, 0xb5, 0xb2, 0x3e, 0xd5, 0xa7, 0x64, 0xf0, 0x7d, 0x03, 0x2c, 0xeb, 0x23, 0x3e, 0xf9, 0x99, + 0x0c, 0xce, 0x91, 0x37, 0x12, 0xcc, 0x71, 0xcc, 0xe4, 0xea, 0x99, 0xda, 0xb8, 0x73, 0x21, 0x53, + 0x7b, 0x19, 0xb6, 0xc3, 0x94, 0xcc, 0x36, 0xc9, 0x29, 0x12, 0xd8, 0x06, 0xa6, 0x5a, 0x8d, 0xac, + 0x89, 0x22, 0x79, 0xa0, 0xef, 0xba, 0xa0, 0xee, 0x07, 0xdf, 0xce, 0x77, 0xb3, 0x12, 0x24, 0x47, + 0x8a, 0xa3, 0xc7, 0xf0, 0x2b, 0xd1, 0xd0, 0x71, 0xf8, 0x18, 0x2c, 0xa7, 0x0b, 0x14, 0x7b, 0x4e, + 0x2c, 0xdb, 0x9d, 0xa3, 0x1a, 0xab, 0xbe, 0x4c, 0xdc, 0xce, 0x65, 0x77, 0xab, 0xcb, 0x92, 0xe9, + 0x99, 0x4b, 0x68, 0xb8, 0x40, 0x77, 0xdd, 0xee, 0xed, 0xf5, 0xb6, 0x3c, 0x42, 0x64, 0x97, 0x51, + 0xb2, 0xc8, 0xce, 0x3d, 0xbc, 0xd4, 0xfe, 0xab, 0x56, 0xa1, 0xba, 0x2c, 0xa6, 0xab, 0x30, 0x3d, + 0xd2, 0x18, 0xb9, 0x8e, 0x34, 0xfd, 0x66, 0x0a, 0x03, 0x67, 0xa4, 0x5d, 0x30, 0x1f, 0xe2, 0x63, + 0x47, 0xa2, 0x1d, 0x5d, 0xdc, 0xcf, 0x6d, 0x4d, 0xb3, 0x21, 0x3e, 0x3e, 0x10, 0x1a, 0x7a, 0x18, + 0xbe, 0xdb, 0xb3, 0x92, 0x8b, 0x2f, 0xb1, 0x92, 0x73, 0xaf, 0xe1, 0x89, 0x2f, 0x7e, 0x0d, 0x4f, + 0x7e, 0x41, 0x6b, 0xf8, 0xd2, 0xe7, 0xb9, 0x86, 0x07, 0x8f, 0xc0, 0xd9, 0x05, 0x98, 0xac, 0xdf, + 0x8d, 0xa7, 0xd3, 0x60, 0x7c, 0x9f, 0xf9, 0xf0, 0x17, 0x06, 0x98, 0x1f, 0xfc, 0x3a, 0xfa, 0xad, + 0x5c, 0xde, 0x0d, 0xfb, 0xba, 0x58, 0xd9, 0x1a, 0x59, 0x35, 0xdd, 0x5b, 0xbf, 0x33, 0x40, 0xe5, + 0x8c, 0xaf, 0x92, 0xdb, 0x79, 0x2d, 0x9c, 0xce, 0x51, 0x79, 0xe7, 0xe5, 0x39, 0xce, 0x70, 0x37, + 0xf3, 0xd9, 0x70, 0x44, 0x77, 0x7b, 0x39, 0x46, 0x75, 0x77, 0xd8, 0xb7, 0x36, 0xf8, 0x81, 0x01, + 0x66, 0xfa, 0x7b, 0x63, 0x5e, 0xfa, 0xac, 0x5e, 0xe5, 0xbb, 0xa3, 0xe9, 0x65, 0x5c, 0xe9, 0x2b, + 0x90, 0xb9, 0x5d, 0xc9, 0xea, 0xe5, 0x77, 0x65, 0xf8, 0x7e, 0x90, 0xae, 0xf4, 0xdd, 0x4f, 0x73, + 0xbb, 0x92, 0xd5, 0xcb, 0xef, 0xca, 0xf0, 0xdb, 0xa9, 0xa8, 0x9c, 0xd3, 0x99, 0x2f, 0xa1, 0xdf, + 0xb8, 0x58, 0x6c, 0x4a, 0xab, 0x72, 0x7b, 0x14, 0xad, 0xd4, 0x89, 0x00, 0x4c, 0xa8, 0xdb, 0xe4, + 0x7a, 0x5e, 0x1a, 0x09, 0xaf, 0xbc, 0x7d, 0x21, 0x78, 0x6a, 0x2e, 0x02, 0x93, 0xfa, 0xe2, 0x66, + 0x5d, 0x80, 0xe0, 0xa0, 0xcd, 0x2b, 0xb7, 0x2e, 0x86, 0x4f, 0x2d, 0xfe, 0xd6, 0x00, 0xcb, 0xa7, + 0x5f, 0xa4, 0x72, 0x57, 0xb1, 0x53, 0x29, 0x2a, 0x7b, 0x2f, 0x4d, 0x91, 0xfa, 0xfa, 0x4b, 0x03, + 0xc0, 0x21, 0x1f, 0x2b, 0x36, 0x73, 0x6f, 0xbf, 0x01, 0xdd, 0xca, 0xf6, 0xe8, 0xba, 0x89, 0x5b, + 0x95, 0x89, 0x9f, 0x7f, 0xf6, 0xe4, 0x86, 0xb1, 0xfd, 0xde, 0xd3, 0xe7, 0x2b, 0xc6, 0x27, 0xcf, + 0x57, 0x8c, 0x7f, 0x3c, 0x5f, 0x31, 0x3e, 0x7c, 0xb1, 0x32, 0xf6, 0xc9, 0x8b, 0x95, 0xb1, 0xbf, + 0xbc, 0x58, 0x19, 0xfb, 0xf1, 0x77, 0x7c, 0xc2, 0x9b, 0xed, 0x86, 0xe5, 0xd2, 0x40, 0xff, 0xad, + 0x58, 0xef, 0x5a, 0x5d, 0x4f, 0xff, 0x15, 0xec, 0xdc, 0xaa, 0x3f, 0xce, 0xfe, 0x35, 0x28, 0xff, + 0x04, 0x69, 0x4c, 0xca, 0xef, 0x54, 0x5f, 0xff, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xea, 0xeb, + 0x11, 0x01, 0x96, 0x1d, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3243,7 +3244,7 @@ func (m *MsgCreateConsumer) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintTx(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x3a + dAtA[i] = 0x32 } if m.PowerShapingParameters != nil { { @@ -7311,7 +7312,7 @@ func (m *MsgCreateConsumer) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 7: + case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field AllowlistedRewardDenoms", wireType) } diff --git a/x/ccv/types/shared_consumer.pb.go b/x/ccv/types/shared_consumer.pb.go index 2c859e2b45..b9dd99caf0 100644 --- a/x/ccv/types/shared_consumer.pb.go +++ b/x/ccv/types/shared_consumer.pb.go @@ -75,7 +75,8 @@ type ConsumerParams struct { ProviderRewardDenoms []string `protobuf:"bytes,12,rep,name=provider_reward_denoms,json=providerRewardDenoms,proto3" json:"provider_reward_denoms,omitempty"` // The period after which a consumer can retry sending a throttled packet. RetryDelayPeriod time.Duration `protobuf:"bytes,13,opt,name=retry_delay_period,json=retryDelayPeriod,proto3,stdduration" json:"retry_delay_period"` - // The consumer ID of this consumer chain + // The consumer ID of this consumer chain. Used by the consumer module to send + // ICS rewards. ConsumerId string `protobuf:"bytes,14,opt,name=consumer_id,json=consumerId,proto3" json:"consumer_id,omitempty"` }