diff --git a/docs/docs/build/modules/02-provider.md b/docs/docs/build/modules/02-provider.md index 2ddcf52419..0e526b4ac2 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; } ``` 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/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 fd1563d167..a66684b58d 100644 --- a/x/ccv/provider/client/cli/tx.go +++ b/x/ccv/provider/client/cli/tx.go @@ -256,7 +256,9 @@ where create_consumer.json has the following structure: "min_stake": "0", "allow_inactive_vals": false }, - "allowlisted_reward_denoms": ["ibc/..", "ibc/..."] + "allowlisted_reward_denoms": { + "denoms": ["ibc/...", "ibc/..."] + } } Note that both 'chain_id' and 'metadata' are mandatory; @@ -352,7 +354,9 @@ where update_consumer.json has the following structure: "min_stake": "0", "allow_inactive_vals": false }, - "allowlisted_reward_denoms": ["ibc/..", "ibc/..."] + "allowlisted_reward_denoms": { + "denoms": ["ibc/...", "ibc/..."] + } } Note that only 'consumer_id' is mandatory. The others are optional. diff --git a/x/ccv/provider/types/query.pb.go b/x/ccv/provider/types/query.pb.go index dee8b698de..578c12598e 100644 --- a/x/ccv/provider/types/query.pb.go +++ b/x/ccv/provider/types/query.pb.go @@ -259,7 +259,7 @@ 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 query + // 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"` } 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) }