diff --git a/proto/kira/gov/network_properties.proto b/proto/kira/gov/network_properties.proto index aaecdf0f..9b8e8b0e 100644 --- a/proto/kira/gov/network_properties.proto +++ b/proto/kira/gov/network_properties.proto @@ -74,7 +74,8 @@ enum NetworkProperty { DAPP_POOL_SLIPPAGE_DEFAULT = 56 [(gogoproto.enumvalue_customname) = "DappPoolSlippageDefault"]; MINTING_FT_FEE = 57 [ (gogoproto.enumvalue_customname) = "MintingFtFee" ]; MINTING_NFT_FEE = 58 [ (gogoproto.enumvalue_customname) = "MintingNftFee" ]; - VETO_THRESHOLD = 59 [ (gogoproto.enumvalue_customname) = "VetoThreshold" ]; + VETO_THRESHOLD = 59 [ (gogoproto.enumvalue_customname) = "VetoThreshold" ]; + AUTOCOMPOUND_INTERVAL_NUM_BLOCKS = 60 [ (gogoproto.enumvalue_customname) = "AutocompoundIntervalNumBlocks" ]; } message NetworkPropertyValue { @@ -172,4 +173,5 @@ message NetworkProperties { (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false ]; + uint64 autocompound_interval_num_blocks = 61; // default 17280 - once per day } diff --git a/proto/kira/multistaking/multistaking.proto b/proto/kira/multistaking/multistaking.proto index e9753e09..16dbdfdd 100644 --- a/proto/kira/multistaking/multistaking.proto +++ b/proto/kira/multistaking/multistaking.proto @@ -57,4 +57,5 @@ message CompoundInfo { string delegator = 1; bool all_denom = 2; repeated string compound_denoms = 3; -} \ No newline at end of file + uint64 last_exec_block = 4; +} diff --git a/x/genutil/client/cli/upgrade_genesis.go b/x/genutil/client/cli/upgrade_genesis.go index 5e1bb65f..967092a6 100644 --- a/x/genutil/client/cli/upgrade_genesis.go +++ b/x/genutil/client/cli/upgrade_genesis.go @@ -196,6 +196,7 @@ $ %s new-genesis-from-exported exported-genesis.json new-genesis.json MintingFtFee: 100_000_000_000_000, MintingNftFee: 100_000_000_000_000, VetoThreshold: sdk.NewDecWithPrec(3340, 2), //33.40% + AutocompoundIntervalNumBlocks: 17280, }, ExecutionFees: govGenesisV01228.ExecutionFees, PoorNetworkMessages: govGenesisV01228.PoorNetworkMessages, diff --git a/x/gov/genesis_test.go b/x/gov/genesis_test.go index 140e7de1..c7330e94 100644 --- a/x/gov/genesis_test.go +++ b/x/gov/genesis_test.go @@ -395,6 +395,7 @@ func TestExportInitGenesis(t *testing.T) { MintingFtFee: 100_000_000_000_000, MintingNftFee: 100_000_000_000_000, VetoThreshold: sdk.NewDecWithPrec(3340, 2), // 33.40% + AutocompoundIntervalNumBlocks: 17280, }, ExecutionFees: []types.ExecutionFee{ { diff --git a/x/gov/keeper/keeper.go b/x/gov/keeper/keeper.go index e601cce2..0df38b79 100644 --- a/x/gov/keeper/keeper.go +++ b/x/gov/keeper/keeper.go @@ -3,6 +3,7 @@ package keeper import ( "errors" "fmt" + "github.com/KiraCore/sekai/x/gov/types" "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/store/prefix" @@ -248,7 +249,8 @@ func (k Keeper) GetNetworkProperty(ctx sdk.Context, property types.NetworkProper return types.NetworkPropertyValue{Value: properties.MintingNftFee}, nil case types.VetoThreshold: return types.NetworkPropertyValue{StrValue: properties.VetoThreshold.String()}, nil - + case types.AutocompoundIntervalNumBlocks: + return types.NetworkPropertyValue{Value: properties.AutocompoundIntervalNumBlocks}, nil default: return types.NetworkPropertyValue{}, errors.New("trying to fetch network property that does not exist") } @@ -402,6 +404,8 @@ func (k Keeper) SetNetworkProperty(ctx sdk.Context, property types.NetworkProper } properties.VetoThreshold = decValue + case types.AutocompoundIntervalNumBlocks: + properties.AutocompoundIntervalNumBlocks = value.Value default: return errors.New("trying to set network property that does not exist") } diff --git a/x/gov/types/genesis.go b/x/gov/types/genesis.go index 89270d13..9df8c86a 100644 --- a/x/gov/types/genesis.go +++ b/x/gov/types/genesis.go @@ -158,6 +158,7 @@ func DefaultGenesis() *GenesisState { MintingFtFee: 100_000_000_000_000, MintingNftFee: 100_000_000_000_000, VetoThreshold: sdk.NewDecWithPrec(3340, 2), // 33.40% + AutocompoundIntervalNumBlocks: 17280, }, ExecutionFees: []ExecutionFee{ { diff --git a/x/gov/types/network_properties.pb.go b/x/gov/types/network_properties.pb.go index ec19b53d..022585a2 100644 --- a/x/gov/types/network_properties.pb.go +++ b/x/gov/types/network_properties.pb.go @@ -87,6 +87,7 @@ const ( MintingFtFee NetworkProperty = 57 MintingNftFee NetworkProperty = 58 VetoThreshold NetworkProperty = 59 + AutocompoundIntervalNumBlocks NetworkProperty = 60 ) var NetworkProperty_name = map[int32]string{ @@ -150,6 +151,7 @@ var NetworkProperty_name = map[int32]string{ 57: "MINTING_FT_FEE", 58: "MINTING_NFT_FEE", 59: "VETO_THRESHOLD", + 60: "AUTOCOMPOUND_INTERVAL_NUM_BLOCKS", } var NetworkProperty_value = map[string]int32{ @@ -213,6 +215,7 @@ var NetworkProperty_value = map[string]int32{ "MINTING_FT_FEE": 57, "MINTING_NFT_FEE": 58, "VETO_THRESHOLD": 59, + "AUTOCOMPOUND_INTERVAL_NUM_BLOCKS": 60, } func (x NetworkProperty) String() string { @@ -388,6 +391,7 @@ type NetworkProperties struct { MintingFtFee uint64 `protobuf:"varint,58,opt,name=minting_ft_fee,json=mintingFtFee,proto3" json:"minting_ft_fee,omitempty"` MintingNftFee uint64 `protobuf:"varint,59,opt,name=minting_nft_fee,json=mintingNftFee,proto3" json:"minting_nft_fee,omitempty"` VetoThreshold github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,60,opt,name=veto_threshold,json=vetoThreshold,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"veto_threshold"` + AutocompoundIntervalNumBlocks uint64 `protobuf:"varint,61,opt,name=autocompound_interval_num_blocks,json=autocompoundIntervalNumBlocks,proto3" json:"autocompound_interval_num_blocks,omitempty"` } func (m *NetworkProperties) Reset() { *m = NetworkProperties{} } @@ -780,6 +784,13 @@ func (m *NetworkProperties) GetMintingNftFee() uint64 { return 0 } +func (m *NetworkProperties) GetAutocompoundIntervalNumBlocks() uint64 { + if m != nil { + return m.AutocompoundIntervalNumBlocks + } + return 0 +} + func init() { proto.RegisterEnum("kira.gov.NetworkProperty", NetworkProperty_name, NetworkProperty_value) proto.RegisterType((*MsgSetNetworkProperties)(nil), "kira.gov.MsgSetNetworkProperties") @@ -790,180 +801,184 @@ func init() { func init() { proto.RegisterFile("kira/gov/network_properties.proto", fileDescriptor_98011a6048e5dde3) } var fileDescriptor_98011a6048e5dde3 = []byte{ - // 2760 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x59, 0xdd, 0x72, 0xdb, 0xc6, - 0xd9, 0xb6, 0x12, 0x27, 0x91, 0xd7, 0xb6, 0x04, 0x41, 0x94, 0x05, 0x43, 0x36, 0xc5, 0xc8, 0x91, - 0xe3, 0x24, 0xb6, 0x64, 0x3b, 0xb1, 0x93, 0xd8, 0xf9, 0xe6, 0x2b, 0x48, 0x80, 0x16, 0x22, 0xe2, - 0xc7, 0xf8, 0xa1, 0xe3, 0x4c, 0x67, 0x36, 0x10, 0xb9, 0x92, 0x50, 0x82, 0x00, 0x03, 0x80, 0x0a, - 0x95, 0x2b, 0xe8, 0xf0, 0xa8, 0x37, 0xc0, 0x99, 0xce, 0xf4, 0x16, 0x7a, 0x03, 0x3d, 0xcb, 0x61, - 0x0e, 0x3b, 0x3d, 0xc8, 0x74, 0x92, 0x93, 0x9e, 0xf4, 0x06, 0x7a, 0xd4, 0xd9, 0x1f, 0x00, 0xfc, - 0x93, 0xdc, 0xd1, 0x91, 0xe5, 0x7d, 0x9f, 0xe7, 0xdd, 0x77, 0xdf, 0x7d, 0x76, 0xb1, 0xcf, 0x10, - 0xbc, 0xdf, 0xf1, 0x63, 0x6f, 0xf7, 0x28, 0x3a, 0xd9, 0x0d, 0x51, 0xfa, 0x43, 0x14, 0x77, 0x60, - 0x2f, 0x8e, 0x7a, 0x28, 0x4e, 0x7d, 0x94, 0xec, 0xf4, 0xe2, 0x28, 0x8d, 0xf8, 0x45, 0x0c, 0xd9, - 0x39, 0x8a, 0x4e, 0xc4, 0xd2, 0x51, 0x74, 0x14, 0x91, 0xc1, 0x5d, 0xfc, 0x17, 0x8d, 0x6f, 0xfd, - 0x75, 0x01, 0xac, 0x6b, 0xc9, 0x91, 0x8d, 0x52, 0x9d, 0xa6, 0x30, 0xf3, 0x0c, 0xfc, 0xd7, 0x80, - 0x9f, 0xcd, 0x2b, 0x2c, 0x54, 0x16, 0xee, 0x5d, 0x7d, 0xbc, 0xb1, 0x93, 0x25, 0xde, 0x99, 0x21, - 0x5a, 0x2b, 0xe1, 0x4c, 0x2e, 0x0d, 0x2c, 0xe2, 0x1c, 0x51, 0x82, 0x62, 0xe1, 0xad, 0xca, 0xc2, - 0xbd, 0x6b, 0xd5, 0x47, 0xff, 0xf9, 0x65, 0xf3, 0xc1, 0x91, 0x9f, 0x1e, 0xf7, 0x0f, 0x76, 0x5a, - 0x51, 0x77, 0xb7, 0x15, 0x25, 0xdd, 0x28, 0x61, 0xff, 0x3c, 0x48, 0xda, 0x9d, 0xdd, 0xf4, 0xb4, - 0x87, 0x92, 0x1d, 0xa9, 0xd5, 0x92, 0xda, 0xed, 0x18, 0x25, 0x89, 0x95, 0xa7, 0xd8, 0x32, 0x40, - 0x69, 0x72, 0xda, 0xd3, 0xa6, 0x17, 0xf4, 0x11, 0x5f, 0x02, 0xef, 0x9c, 0xe0, 0x3f, 0x48, 0x95, - 0x97, 0x2d, 0xfa, 0x1f, 0x7e, 0x03, 0x5c, 0x49, 0xd2, 0x18, 0xd2, 0x08, 0x9e, 0xfd, 0x8a, 0xb5, - 0x98, 0xa4, 0x31, 0xa1, 0x3c, 0xbb, 0xfc, 0xaf, 0x3f, 0x6f, 0x2e, 0x6c, 0xfd, 0x7b, 0x03, 0xac, - 0xcc, 0x76, 0xe0, 0x16, 0x00, 0x5d, 0x3f, 0x84, 0xe9, 0x00, 0x1e, 0xa2, 0x2c, 0xe7, 0x62, 0xd7, - 0x0f, 0x9d, 0x41, 0x1d, 0x21, 0x12, 0xf5, 0x06, 0x59, 0xf4, 0x2d, 0x16, 0xf5, 0x06, 0x34, 0xba, - 0x09, 0xae, 0x9e, 0x44, 0x29, 0x82, 0xdf, 0xf7, 0xa3, 0xb8, 0xdf, 0x15, 0xde, 0x26, 0x61, 0x80, - 0x87, 0x5e, 0x92, 0x11, 0xfe, 0x4b, 0x70, 0xb3, 0xeb, 0x87, 0x7e, 0xb7, 0xdf, 0x85, 0x74, 0x5d, - 0x5e, 0x00, 0x51, 0xd8, 0x86, 0xa9, 0xdf, 0x45, 0xc2, 0x65, 0x02, 0xbf, 0xc1, 0x00, 0x26, 0x8b, - 0x2b, 0x61, 0xdb, 0xf1, 0xbb, 0x88, 0x7f, 0x0a, 0xd6, 0xc7, 0x28, 0x5e, 0x2b, 0xed, 0xa2, 0x30, - 0xa5, 0xc4, 0x77, 0x08, 0x71, 0xad, 0x97, 0x33, 0x58, 0x94, 0xf0, 0x9e, 0x80, 0x75, 0xbc, 0x9e, - 0x89, 0xe9, 0x0e, 0x82, 0xa8, 0xd5, 0x49, 0x84, 0x77, 0x09, 0xaf, 0xd4, 0xf5, 0xc3, 0xb1, 0xc9, - 0xaa, 0x24, 0xc6, 0x4b, 0xe0, 0xf6, 0x14, 0x2d, 0x9b, 0x92, 0x91, 0xdf, 0x23, 0x64, 0x71, 0x82, - 0xcc, 0x20, 0x2c, 0xc5, 0xff, 0x81, 0x0d, 0x14, 0x7a, 0x07, 0x01, 0x82, 0x87, 0x51, 0x8c, 0xfc, - 0xa3, 0x10, 0xf7, 0x0c, 0xf6, 0xbc, 0x53, 0x8c, 0x49, 0x84, 0xc5, 0xca, 0xc2, 0xbd, 0x45, 0x4b, - 0xa0, 0x90, 0x3a, 0x45, 0xd4, 0x11, 0x32, 0x59, 0x9c, 0xaf, 0x81, 0x72, 0xd7, 0x4f, 0x5a, 0xc7, - 0x5e, 0xd8, 0x42, 0x30, 0xf6, 0xc2, 0x0e, 0x6c, 0xa3, 0x56, 0x8c, 0xbc, 0x04, 0x41, 0xaf, 0x1b, - 0xf5, 0xc3, 0x54, 0xb8, 0x42, 0x4a, 0xd8, 0xc8, 0x51, 0x96, 0x17, 0x76, 0x64, 0x86, 0x91, 0x08, - 0x84, 0xbf, 0x03, 0xae, 0xe3, 0xfd, 0xca, 0x21, 0x02, 0x20, 0x9c, 0x6b, 0x5d, 0x6f, 0xa0, 0x65, - 0x63, 0xfc, 0x23, 0x50, 0x2a, 0x66, 0x6a, 0x45, 0xe1, 0xa1, 0xdf, 0x46, 0x18, 0x7b, 0x95, 0x60, - 0x57, 0xf3, 0x58, 0x2d, 0x0f, 0xf1, 0x09, 0x28, 0xfb, 0x78, 0xb9, 0xfe, 0xc9, 0x74, 0x6d, 0x3d, - 0x14, 0xb7, 0x50, 0x98, 0x0a, 0xd7, 0xb0, 0xe6, 0xaa, 0x3b, 0x3f, 0xfd, 0xb2, 0x79, 0xe9, 0x1f, - 0xbf, 0x6c, 0xde, 0xfd, 0x1f, 0x54, 0x2f, 0xa3, 0x96, 0xb5, 0x91, 0x65, 0x1d, 0x5f, 0x8b, 0x49, - 0x53, 0xf2, 0xdb, 0x60, 0x09, 0xef, 0xc9, 0x89, 0x17, 0xf8, 0x6d, 0x2f, 0x8d, 0xe2, 0x44, 0xb8, - 0x4e, 0x2a, 0xbc, 0xde, 0xf5, 0xc3, 0x66, 0x3e, 0xc8, 0x3f, 0x03, 0x62, 0x2f, 0x8a, 0x62, 0x98, - 0x1d, 0x64, 0xdc, 0x80, 0x03, 0x5c, 0x63, 0x82, 0xc2, 0xb6, 0xb0, 0x44, 0x55, 0x86, 0x11, 0x4c, - 0xfc, 0x9a, 0x37, 0xa8, 0x7a, 0x61, 0xc7, 0x46, 0x61, 0x9b, 0xbf, 0x0b, 0x96, 0xfb, 0xe1, 0x1f, - 0x3c, 0x3f, 0x20, 0x2c, 0xa2, 0xae, 0x65, 0x3a, 0x07, 0x1d, 0xd6, 0xbc, 0x01, 0x51, 0xd5, 0x67, - 0xe0, 0x06, 0xdb, 0xdb, 0x34, 0xea, 0xa0, 0x10, 0xfe, 0x70, 0xec, 0xa7, 0x28, 0xf0, 0x93, 0x54, - 0xe0, 0xc8, 0xb6, 0x96, 0x68, 0xd4, 0xc1, 0xc1, 0x57, 0x59, 0x6c, 0x86, 0x75, 0x10, 0x78, 0xad, - 0x0e, 0x61, 0xad, 0xcc, 0xb0, 0xaa, 0x59, 0x8c, 0x1d, 0x1a, 0x88, 0x3b, 0x9f, 0xfa, 0xe9, 0x29, - 0xf4, 0x7a, 0xbd, 0x38, 0x3a, 0xf1, 0x02, 0x98, 0xfa, 0x3d, 0x81, 0xcf, 0x0f, 0x8d, 0xca, 0xe2, - 0x12, 0x0b, 0x3b, 0x7e, 0x8f, 0x7f, 0x08, 0x4a, 0xfd, 0xd0, 0xff, 0xbe, 0x8f, 0x0a, 0x76, 0x07, - 0x9d, 0x26, 0xc2, 0x2a, 0xb9, 0x10, 0x78, 0x1a, 0xcb, 0x88, 0xfb, 0xe8, 0x34, 0xc1, 0x47, 0xb8, - 0x7f, 0xe0, 0xc3, 0x63, 0x2f, 0x6e, 0xb7, 0xbc, 0x9e, 0x50, 0xa2, 0x47, 0xb8, 0x7f, 0xe0, 0xef, - 0xd1, 0x11, 0xfe, 0x3b, 0x50, 0x2a, 0x36, 0x80, 0x28, 0x3a, 0x39, 0xf6, 0x62, 0x24, 0xac, 0x5d, - 0x68, 0xbf, 0xf9, 0x22, 0x57, 0x1d, 0x21, 0x1b, 0x67, 0xe2, 0x5d, 0xb0, 0xe4, 0x87, 0x87, 0x81, - 0x97, 0xfa, 0x51, 0x08, 0x63, 0x2f, 0x45, 0xc2, 0x8d, 0x0b, 0xe5, 0xbe, 0x9e, 0x67, 0xb1, 0xbc, - 0x14, 0xf1, 0x1f, 0x01, 0xae, 0x48, 0xdb, 0x43, 0xb1, 0x1f, 0xb5, 0x85, 0x75, 0xb2, 0xbc, 0xe5, - 0x7c, 0xdc, 0x24, 0xc3, 0x18, 0xda, 0x0f, 0x93, 0xd4, 0xeb, 0xf8, 0xe1, 0x51, 0x06, 0x15, 0x28, - 0x34, 0x1f, 0x67, 0x50, 0xac, 0x49, 0x6f, 0x00, 0xdb, 0x28, 0x40, 0x47, 0x54, 0x93, 0x37, 0x99, - 0x26, 0xbd, 0x81, 0x9c, 0x0f, 0xe2, 0x9d, 0xc7, 0x7b, 0xc8, 0x60, 0xa4, 0x82, 0x7e, 0x72, 0x1c, - 0xf5, 0x53, 0x41, 0xcc, 0x2f, 0x21, 0x39, 0x0f, 0x9a, 0x34, 0xc6, 0x7f, 0x08, 0x96, 0x93, 0xc0, - 0x4b, 0x8e, 0xc7, 0xca, 0xd8, 0x20, 0xf0, 0xa5, 0x6c, 0x98, 0x55, 0x71, 0x00, 0xd6, 0x70, 0x15, - 0x58, 0xa1, 0xa8, 0x9d, 0x1d, 0x41, 0xef, 0x08, 0x09, 0xb7, 0x2e, 0xd4, 0xb9, 0xd5, 0xae, 0x37, - 0xf8, 0x9a, 0xe4, 0x32, 0xf3, 0x54, 0xfc, 0x21, 0x58, 0xc7, 0x73, 0x8c, 0x17, 0x94, 0xcd, 0x72, - 0xfb, 0x42, 0xb3, 0xe0, 0x92, 0xed, 0x62, 0x1d, 0xd9, 0x3c, 0xf7, 0x01, 0x8f, 0x5b, 0xd5, 0xea, - 0x27, 0x69, 0xd4, 0x3e, 0x85, 0x31, 0xfa, 0xc1, 0x8b, 0xdb, 0x42, 0x99, 0xac, 0x9b, 0xeb, 0xfa, - 0x61, 0x8d, 0x06, 0x2c, 0x32, 0x4e, 0xae, 0x77, 0x6f, 0x90, 0xa3, 0x0f, 0xfa, 0x87, 0x87, 0x28, - 0x86, 0x89, 0xff, 0x23, 0x12, 0x36, 0x59, 0x67, 0xbd, 0x01, 0xa3, 0x54, 0x49, 0xd0, 0xf6, 0x7f, - 0x44, 0xfc, 0x03, 0xb0, 0x3a, 0x4e, 0x4b, 0x07, 0x94, 0x52, 0x61, 0xb3, 0xe4, 0x14, 0x67, 0x40, - 0xe0, 0x0a, 0xd8, 0xf4, 0x0e, 0x92, 0x14, 0x9f, 0x13, 0xa2, 0xc9, 0x39, 0x97, 0xf1, 0xfb, 0x84, - 0x7a, 0xab, 0x80, 0xcd, 0xb9, 0x8d, 0x99, 0x58, 0x0a, 0x8c, 0xb0, 0x95, 0x8b, 0x45, 0xca, 0x07, - 0xf9, 0x1d, 0xb0, 0x4a, 0x3a, 0x10, 0x05, 0x01, 0xa2, 0x57, 0xec, 0x41, 0x14, 0xb6, 0x85, 0x3b, - 0x04, 0xbb, 0x82, 0x5b, 0x90, 0x47, 0xaa, 0x51, 0xd8, 0xc6, 0x1f, 0x9a, 0x39, 0x78, 0xbc, 0x47, - 0xe4, 0x02, 0xfb, 0x80, 0xf0, 0x84, 0x19, 0x9e, 0x1f, 0x1e, 0x65, 0x77, 0x19, 0xe9, 0x45, 0x41, - 0x8f, 0xfa, 0x69, 0xaf, 0x9f, 0x26, 0xc2, 0x76, 0xd1, 0xc1, 0x3c, 0x68, 0xd0, 0xd8, 0x9c, 0x49, - 0x5b, 0x81, 0xe7, 0x77, 0x33, 0x9d, 0xde, 0x9d, 0x33, 0x69, 0x0d, 0x03, 0x98, 0x62, 0x9f, 0x82, - 0xf5, 0xfc, 0xe8, 0xc3, 0x18, 0xb5, 0xa2, 0x13, 0x14, 0x9f, 0xd2, 0x75, 0x7e, 0x48, 0x3f, 0xe7, - 0x79, 0xd8, 0x62, 0x51, 0xb2, 0xd6, 0xef, 0x40, 0x89, 0xb4, 0x30, 0x0c, 0xfb, 0x5e, 0x00, 0xf3, - 0x83, 0x2b, 0xdc, 0xbb, 0xd8, 0xf5, 0x83, 0x1b, 0x4f, 0x52, 0xa9, 0x59, 0xa6, 0x4c, 0x51, 0xf9, - 0x97, 0x3f, 0xf5, 0xd3, 0x00, 0x51, 0x79, 0x7c, 0x94, 0xf7, 0x23, 0xfb, 0xe6, 0x3b, 0x38, 0x48, - 0x24, 0x82, 0x1f, 0x0c, 0xe3, 0xb4, 0x36, 0x4a, 0x5a, 0xb1, 0xdf, 0x23, 0x82, 0x21, 0xe4, 0x8f, - 0xd9, 0x83, 0xa1, 0x20, 0xcb, 0x05, 0x84, 0xa4, 0xf8, 0xdd, 0x54, 0x8a, 0x5e, 0x14, 0x04, 0x30, - 0x1a, 0x4b, 0xf1, 0x09, 0x49, 0x71, 0x73, 0x2c, 0x85, 0x19, 0x05, 0x81, 0x51, 0x64, 0xa8, 0x82, - 0xf2, 0x99, 0x19, 0x5a, 0x44, 0xa6, 0xf7, 0x67, 0xaa, 0x28, 0x52, 0xd4, 0x88, 0x48, 0xf1, 0xc6, - 0x8e, 0xe7, 0x88, 0xd1, 0x21, 0x8a, 0xf1, 0x47, 0x9f, 0xd6, 0xf0, 0x80, 0x6d, 0x6c, 0x91, 0xc0, - 0xca, 0x00, 0xa4, 0x84, 0xe7, 0x40, 0x9c, 0xa0, 0xb7, 0x8e, 0x51, 0xab, 0x93, 0xf4, 0xbb, 0x94, - 0xbd, 0x43, 0xd8, 0xeb, 0x63, 0xec, 0x1a, 0x8b, 0x13, 0xf2, 0x16, 0xb8, 0x4e, 0xae, 0x49, 0xaf, - 0xd7, 0xa3, 0x5a, 0xd8, 0x25, 0xf8, 0xab, 0xf8, 0x76, 0xf4, 0x7a, 0x3d, 0xa2, 0x80, 0x2d, 0xfa, - 0xa4, 0x29, 0x30, 0x0f, 0x19, 0xc6, 0x1b, 0xe4, 0x98, 0xaf, 0x80, 0x48, 0xe2, 0x81, 0xff, 0x7d, - 0x1f, 0x8b, 0x08, 0xaf, 0x3f, 0x3d, 0x8e, 0x51, 0x72, 0x1c, 0x05, 0x6d, 0xe1, 0x11, 0x5d, 0x02, - 0x46, 0x34, 0x0a, 0x80, 0x93, 0xc5, 0xb1, 0x36, 0x67, 0xd8, 0x4c, 0xd6, 0x8f, 0xa9, 0x36, 0xa7, - 0xa8, 0x4c, 0xd3, 0xf7, 0x01, 0x9f, 0x57, 0x05, 0xdb, 0xfd, 0x98, 0x2a, 0xf3, 0x53, 0x7a, 0xa7, - 0xb4, 0x59, 0x6d, 0x32, 0x1b, 0xe7, 0x7f, 0xcf, 0xd0, 0x27, 0x28, 0xf6, 0x0f, 0x7d, 0x14, 0xd3, - 0xc5, 0x7c, 0x76, 0x21, 0x1d, 0x93, 0xec, 0x4d, 0x96, 0x88, 0x74, 0xe0, 0x09, 0x5b, 0x83, 0xd7, - 0x4f, 0x23, 0xd8, 0x46, 0x61, 0xd4, 0xc7, 0x3b, 0x48, 0xee, 0x83, 0x27, 0x54, 0xc5, 0x38, 0x2c, - 0xf5, 0xd3, 0x48, 0x66, 0x41, 0x72, 0x17, 0x34, 0xc0, 0x1d, 0x42, 0x7b, 0xc3, 0xcb, 0xf3, 0x29, - 0x49, 0xb1, 0x89, 0xa1, 0xda, 0x39, 0xaf, 0xcf, 0xac, 0x21, 0x93, 0x4f, 0xd0, 0xcf, 0x8b, 0x86, - 0x68, 0xe3, 0xcf, 0xd0, 0x6c, 0xee, 0x37, 0x3c, 0x2c, 0xbf, 0x28, 0xe6, 0x56, 0xcf, 0x79, 0x2c, - 0x76, 0x98, 0x04, 0x7a, 0x51, 0x14, 0xc0, 0x24, 0xf0, 0x7b, 0x3d, 0xef, 0x08, 0xc1, 0x36, 0x3a, - 0xf4, 0xfa, 0x41, 0x2a, 0x7c, 0x79, 0xa1, 0x36, 0x93, 0x96, 0x9a, 0x51, 0x14, 0xd8, 0x2c, 0x9f, - 0x4c, 0xd3, 0xf1, 0x1f, 0x90, 0x97, 0x69, 0x8a, 0xaf, 0xdc, 0xc3, 0x94, 0x58, 0xa3, 0x67, 0xec, - 0x9d, 0x4d, 0x47, 0xeb, 0x29, 0xb6, 0x47, 0x77, 0xc1, 0x72, 0x86, 0x0a, 0x19, 0xec, 0x79, 0xfe, - 0x80, 0xc5, 0xc3, 0xfa, 0x21, 0xc1, 0xb9, 0x60, 0xe9, 0x04, 0xa5, 0xd1, 0x98, 0x62, 0xbf, 0xba, - 0xd8, 0x03, 0x08, 0x67, 0xc9, 0x65, 0xfd, 0xf1, 0xdf, 0x04, 0xb0, 0x3c, 0xe5, 0x20, 0xb1, 0x9f, - 0xd3, 0x54, 0x1d, 0x3a, 0xdf, 0xc0, 0xba, 0xa2, 0x70, 0x97, 0xc4, 0x6b, 0xc3, 0x51, 0x65, 0x51, - 0x1b, 0x73, 0x7b, 0x9a, 0xf4, 0x4d, 0x16, 0x5d, 0x60, 0xd1, 0x31, 0xb7, 0xd7, 0x34, 0x1c, 0x05, - 0xbe, 0x74, 0x0d, 0xcb, 0xd5, 0xb8, 0xb7, 0xc4, 0xa5, 0xe1, 0xa8, 0x02, 0x9a, 0x13, 0x6e, 0x4f, - 0x53, 0x75, 0x55, 0x73, 0x35, 0x68, 0x5a, 0x86, 0x69, 0xd8, 0x52, 0x03, 0x2a, 0xba, 0x0c, 0x1d, - 0x55, 0x53, 0xb8, 0xb7, 0x45, 0x71, 0x38, 0xaa, 0xdc, 0xd0, 0xce, 0x74, 0x7b, 0x63, 0x14, 0xa9, - 0xe6, 0x68, 0x8a, 0xee, 0x50, 0xe2, 0x65, 0xf1, 0xe6, 0x70, 0x54, 0x59, 0x33, 0xcf, 0x72, 0x7b, - 0x78, 0x3d, 0x13, 0xd3, 0x55, 0x1b, 0x46, 0x6d, 0xdf, 0xe6, 0xde, 0x11, 0x85, 0xe1, 0xa8, 0x52, - 0xd2, 0xce, 0x70, 0x7b, 0x53, 0xb4, 0x6c, 0x4a, 0x46, 0x7e, 0x57, 0x2c, 0x0f, 0x47, 0x15, 0x51, - 0x3b, 0xd7, 0xed, 0x29, 0xba, 0x54, 0x6d, 0x28, 0xb0, 0x6e, 0x58, 0x8a, 0xfa, 0x42, 0xc7, 0x3d, - 0x83, 0xa6, 0xf4, 0x1a, 0xa7, 0xb1, 0xb9, 0xf7, 0xc4, 0x5b, 0xc3, 0x51, 0x45, 0x50, 0xce, 0x71, - 0x7b, 0x9a, 0x6a, 0xd7, 0xf6, 0x24, 0xbd, 0xa6, 0x40, 0x4b, 0xd2, 0xf7, 0xa1, 0xac, 0xd4, 0x2c, - 0x45, 0xb2, 0x15, 0x28, 0x69, 0x86, 0xab, 0x3b, 0xdc, 0xa2, 0xb8, 0x39, 0x1c, 0x55, 0x36, 0xb4, - 0xf3, 0xdd, 0x1e, 0xde, 0xaf, 0x3c, 0x11, 0x77, 0x45, 0xe4, 0x86, 0xa3, 0xca, 0x35, 0x6d, 0xca, - 0xed, 0x15, 0x33, 0xd5, 0x0c, 0xbd, 0xae, 0xca, 0x0a, 0xc6, 0x02, 0x71, 0x7d, 0x38, 0xaa, 0xac, - 0x6a, 0x73, 0xdc, 0x5e, 0x0d, 0x94, 0x55, 0xdc, 0x11, 0xb5, 0x39, 0x5d, 0x9b, 0xa9, 0x58, 0x35, - 0x45, 0x77, 0xb8, 0xab, 0xb4, 0xb8, 0xf3, 0x0e, 0xe4, 0x33, 0x20, 0x9a, 0x86, 0x61, 0x41, 0x5d, - 0x71, 0x5e, 0x19, 0xd6, 0x3e, 0xc4, 0x95, 0x56, 0x71, 0x32, 0x5b, 0xd1, 0x65, 0xee, 0x1a, 0x95, - 0x83, 0x39, 0xdf, 0x96, 0x6d, 0x83, 0x25, 0xbc, 0x3f, 0x4d, 0xa9, 0xa1, 0xca, 0x92, 0x63, 0x58, - 0x36, 0x77, 0x5d, 0x5c, 0x19, 0x8e, 0x2a, 0xd7, 0xb5, 0x09, 0xe7, 0x77, 0x17, 0x2c, 0xbb, 0xfa, - 0xd7, 0x92, 0xda, 0x20, 0xc9, 0x89, 0x5a, 0x96, 0x28, 0xce, 0x9d, 0x76, 0x6f, 0x6c, 0xaf, 0x1c, - 0x63, 0x5f, 0xd1, 0xe1, 0xab, 0x3d, 0xd5, 0x51, 0x1a, 0xaa, 0xed, 0x70, 0xcb, 0x54, 0x24, 0xca, - 0x19, 0xee, 0x6d, 0x82, 0x55, 0x6d, 0x48, 0xb5, 0x7d, 0xc2, 0xe2, 0x66, 0x58, 0x13, 0xee, 0x0d, - 0x97, 0x8e, 0x9b, 0xec, 0xa8, 0xce, 0x6b, 0x28, 0x99, 0xa6, 0x65, 0x34, 0xa5, 0x06, 0x74, 0x54, - 0x93, 0x5b, 0xc9, 0x0f, 0xc1, 0x19, 0xee, 0xcd, 0xd5, 0xd5, 0x97, 0xae, 0x52, 0xb0, 0xf7, 0x95, - 0xd7, 0x36, 0xc7, 0x8b, 0x37, 0x86, 0xa3, 0x0a, 0xef, 0xce, 0x75, 0x6f, 0x6e, 0x55, 0x85, 0x7b, - 0x92, 0x25, 0xd7, 0x24, 0x93, 0x5b, 0xa5, 0x47, 0xd2, 0x2d, 0xdc, 0xdb, 0x43, 0x50, 0x2a, 0x9a, - 0x48, 0x14, 0x6a, 0xef, 0x49, 0x96, 0xc2, 0x95, 0x68, 0xca, 0xe6, 0xac, 0x1b, 0xdb, 0x06, 0x4b, - 0xaa, 0x5e, 0x6f, 0x48, 0x8e, 0x6a, 0xe8, 0xd0, 0x92, 0x1c, 0x85, 0x5b, 0xa3, 0x2d, 0x55, 0xa7, - 0xdd, 0x55, 0x01, 0x33, 0x15, 0x4b, 0x35, 0x64, 0xee, 0x86, 0xb8, 0x3a, 0x1c, 0x55, 0x96, 0xd5, - 0x59, 0x77, 0xe5, 0xea, 0xb6, 0x23, 0xed, 0xab, 0xfa, 0x8b, 0x0c, 0xba, 0x4e, 0xa1, 0xee, 0xac, - 0xbb, 0xc2, 0x3b, 0x29, 0x2b, 0x0d, 0xe5, 0x05, 0xdd, 0x77, 0x81, 0xed, 0xfb, 0xb4, 0xbb, 0xc2, - 0x3d, 0x66, 0x30, 0x52, 0x81, 0x6b, 0xef, 0x19, 0xae, 0xc3, 0xdd, 0xcc, 0x0f, 0xfd, 0x5c, 0x77, - 0x65, 0x37, 0x24, 0x7b, 0x6f, 0xac, 0x0c, 0x51, 0xe4, 0x87, 0xa3, 0xca, 0x92, 0x3d, 0xe9, 0xae, - 0x1e, 0x83, 0x35, 0x5c, 0x05, 0x16, 0x96, 0x22, 0x67, 0x92, 0x97, 0x5e, 0x28, 0xdc, 0x06, 0x3b, - 0x32, 0x73, 0xdc, 0xd2, 0x53, 0xb0, 0x8e, 0x39, 0xe3, 0x13, 0x64, 0xac, 0x5b, 0xf4, 0x02, 0xd3, - 0xce, 0x72, 0x3f, 0x78, 0x29, 0x35, 0xd7, 0x76, 0x0c, 0xf9, 0x35, 0xb4, 0x94, 0x57, 0x92, 0x25, - 0x73, 0xb7, 0xc5, 0xd2, 0x70, 0x54, 0xe1, 0xb4, 0x39, 0xee, 0x07, 0xcf, 0x92, 0xa1, 0xab, 0x6e, - 0xbd, 0xae, 0x58, 0xd0, 0x56, 0xbf, 0x55, 0xb8, 0x32, 0x5b, 0xf9, 0x19, 0xee, 0x67, 0x9c, 0xe6, - 0x7c, 0x43, 0x29, 0x9b, 0x6c, 0x96, 0x39, 0xee, 0x47, 0xaa, 0xda, 0x0e, 0x96, 0x20, 0xd1, 0xc0, - 0x9c, 0xcb, 0xa9, 0x22, 0x56, 0x86, 0xa3, 0xca, 0x2d, 0xe9, 0x0d, 0xee, 0x07, 0xcf, 0x5a, 0xa4, - 0xe2, 0xde, 0xcf, 0x37, 0x73, 0xd2, 0xfd, 0x90, 0x0e, 0x18, 0x8d, 0x86, 0x42, 0xaf, 0x9c, 0xaa, - 0xa1, 0xcb, 0xdc, 0x96, 0xb8, 0x36, 0x1c, 0x55, 0x56, 0xb4, 0x79, 0xee, 0x67, 0x0e, 0x1e, 0xf7, - 0x9c, 0x5c, 0x00, 0x77, 0xe8, 0xc5, 0xab, 0x9d, 0xe3, 0x7e, 0x48, 0x2f, 0x0a, 0xba, 0xe1, 0x3a, - 0xa6, 0xeb, 0xd8, 0xdc, 0x07, 0x45, 0x07, 0xe7, 0xb9, 0x9f, 0xa9, 0x49, 0x6b, 0x0d, 0x49, 0xd5, - 0x32, 0x1d, 0x6d, 0xcf, 0x99, 0x74, 0xca, 0xfd, 0xe4, 0xc7, 0x10, 0x5a, 0x4a, 0xcd, 0x68, 0x2a, - 0xd6, 0x6b, 0xba, 0xce, 0xbb, 0x54, 0x1d, 0xcd, 0xb9, 0xee, 0xe7, 0x21, 0x28, 0x91, 0x16, 0xea, - 0xba, 0x2b, 0x35, 0x60, 0x7e, 0xe0, 0xb8, 0x0f, 0xe9, 0xf1, 0xd5, 0xe6, 0xba, 0x19, 0xcc, 0xc8, - 0xbf, 0x6c, 0x8e, 0xea, 0x34, 0x14, 0xba, 0xdd, 0xf7, 0xf2, 0xf5, 0xcd, 0x75, 0x33, 0x13, 0x34, - 0x59, 0xb1, 0x6b, 0x96, 0x6a, 0x12, 0x01, 0x10, 0xf2, 0x47, 0xec, 0x83, 0x78, 0xae, 0x9b, 0x99, - 0x48, 0x61, 0x1a, 0x8d, 0x06, 0x34, 0xc6, 0x52, 0x7c, 0x2c, 0xde, 0x1e, 0x8e, 0x2a, 0x37, 0xb5, - 0xf3, 0xdc, 0xcc, 0x99, 0x19, 0x6a, 0x44, 0x76, 0x9f, 0xcc, 0x54, 0x31, 0xc7, 0xcd, 0x4c, 0xe4, - 0xb0, 0x94, 0xba, 0x62, 0xe1, 0xef, 0x1d, 0xad, 0xe1, 0x3e, 0xdb, 0xa8, 0x73, 0xdc, 0xcc, 0x04, - 0xbd, 0xb6, 0xa7, 0xd4, 0xf6, 0x6d, 0x57, 0xa3, 0xec, 0x07, 0xe2, 0xc6, 0x70, 0x54, 0x59, 0xd7, - 0xce, 0x76, 0x33, 0xe4, 0x5a, 0x92, 0x4c, 0x93, 0xee, 0xed, 0x8e, 0xb8, 0x3c, 0x1c, 0x55, 0xae, - 0x6a, 0x93, 0x6e, 0x86, 0xdc, 0x70, 0x39, 0x66, 0x97, 0x61, 0x26, 0xdd, 0x0c, 0x89, 0x37, 0xd4, - 0x97, 0x2e, 0xd6, 0x0c, 0x5e, 0xbf, 0xb3, 0x67, 0x29, 0xf6, 0x9e, 0xd1, 0x90, 0xb9, 0x87, 0x74, - 0x09, 0xf2, 0x39, 0x6e, 0x66, 0x86, 0xcd, 0x64, 0xfa, 0x88, 0x6a, 0x4d, 0x3e, 0xcb, 0xcd, 0xe4, - 0x55, 0x41, 0xd9, 0xb5, 0xa8, 0xd2, 0x1e, 0xd3, 0x3b, 0x42, 0x9e, 0x76, 0x33, 0x19, 0xba, 0xa9, - 0x58, 0x6a, 0x5d, 0x55, 0x2c, 0xba, 0x98, 0x4f, 0x0b, 0xf4, 0xb4, 0x3b, 0x21, 0x68, 0xc9, 0x75, - 0x0c, 0x28, 0x2b, 0xba, 0xe1, 0xe2, 0x1d, 0x21, 0xe7, 0xf5, 0x33, 0xaa, 0x4a, 0xf9, 0x0c, 0x77, - 0x42, 0x68, 0x6f, 0x78, 0x29, 0x3d, 0x11, 0xef, 0x0c, 0x47, 0x95, 0x4d, 0xf9, 0xcd, 0xee, 0x84, - 0x66, 0x9b, 0x78, 0x32, 0x3d, 0x2d, 0x4a, 0x9e, 0x76, 0x27, 0x04, 0xfd, 0x86, 0x87, 0xd0, 0xe7, - 0xc5, 0xdc, 0xe7, 0x3d, 0x86, 0x9e, 0xb3, 0x2d, 0x35, 0x0d, 0xa3, 0x01, 0xed, 0x86, 0x6a, 0x9a, - 0xd2, 0x0b, 0x05, 0xca, 0x4a, 0x5d, 0x72, 0x1b, 0x0e, 0xf7, 0x05, 0xd5, 0x95, 0x7c, 0xb6, 0xdb, - 0xd0, 0x54, 0xdd, 0xc1, 0x57, 0x5c, 0xdd, 0x21, 0x4f, 0xf3, 0x2f, 0xd9, 0x3b, 0x6f, 0xca, 0x6d, - 0x64, 0x28, 0x9d, 0xc1, 0x9e, 0xe5, 0x8f, 0xa6, 0x31, 0xb7, 0xb1, 0x0d, 0x96, 0x9a, 0x8a, 0x63, - 0x8c, 0x29, 0xea, 0x39, 0x85, 0x35, 0xc7, 0xdd, 0x83, 0x78, 0xf9, 0x8f, 0x7f, 0x29, 0x5f, 0xaa, - 0xfe, 0xff, 0x4f, 0xbf, 0x96, 0x17, 0x7e, 0xfe, 0xb5, 0xbc, 0xf0, 0xcf, 0x5f, 0xcb, 0x0b, 0x7f, - 0xfa, 0xad, 0x7c, 0xe9, 0xe7, 0xdf, 0xca, 0x97, 0xfe, 0xfe, 0x5b, 0xf9, 0xd2, 0xb7, 0xdb, 0x63, - 0xa6, 0x64, 0xdf, 0x8f, 0xbd, 0x5a, 0x14, 0xa3, 0xdd, 0x04, 0x75, 0x3c, 0x7f, 0x77, 0x40, 0x7e, - 0xaf, 0x23, 0xbe, 0xe4, 0xe0, 0x5d, 0xf2, 0x1b, 0xdc, 0xa7, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, - 0xb4, 0x1e, 0xed, 0xd3, 0xc8, 0x1b, 0x00, 0x00, + // 2825 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x59, 0xdb, 0x72, 0xdb, 0x46, + 0xb6, 0xb5, 0x12, 0x27, 0x91, 0xdb, 0xb6, 0x04, 0x43, 0xb4, 0x05, 0x43, 0x36, 0x05, 0xdb, 0xb1, + 0xe3, 0x24, 0xb6, 0x64, 0x3b, 0xb1, 0x93, 0xd8, 0x49, 0x9d, 0x03, 0x12, 0xa0, 0x85, 0x88, 0xb8, + 0x18, 0x17, 0x3a, 0x4e, 0x9d, 0xaa, 0x0e, 0x44, 0xb6, 0x24, 0x1c, 0x92, 0x00, 0x83, 0x8b, 0x42, + 0xe5, 0x0b, 0x4e, 0xf1, 0xe9, 0xfc, 0x00, 0xab, 0xa6, 0x6a, 0x7e, 0x61, 0x6a, 0xbe, 0x21, 0x8f, + 0x79, 0x9c, 0x9a, 0x87, 0xd4, 0x54, 0xf2, 0x32, 0xdf, 0x30, 0x4f, 0x53, 0x7d, 0x01, 0xc0, 0x9b, + 0xe4, 0x29, 0x3d, 0x59, 0xee, 0xbd, 0xd6, 0xee, 0xdd, 0xbb, 0x57, 0x37, 0x7a, 0x15, 0xc1, 0xad, + 0x6e, 0x10, 0xfb, 0xdb, 0x07, 0xd1, 0xd1, 0x76, 0x88, 0xd2, 0x9f, 0xa2, 0xb8, 0x0b, 0x07, 0x71, + 0x34, 0x40, 0x71, 0x1a, 0xa0, 0x64, 0x6b, 0x10, 0x47, 0x69, 0xc4, 0x2f, 0x63, 0xc8, 0xd6, 0x41, + 0x74, 0x24, 0x56, 0x0e, 0xa2, 0x83, 0x88, 0x0c, 0x6e, 0xe3, 0xbf, 0x68, 0xfc, 0xf6, 0x5f, 0x96, + 0xc0, 0xba, 0x9e, 0x1c, 0x38, 0x28, 0x35, 0x68, 0x0a, 0xab, 0xc8, 0xc0, 0x7f, 0x0b, 0xf8, 0xf9, + 0xbc, 0xc2, 0x92, 0xb4, 0x74, 0xff, 0xe2, 0x93, 0x8d, 0xad, 0x3c, 0xf1, 0xd6, 0x1c, 0xd1, 0xbe, + 0x12, 0xce, 0xe5, 0xd2, 0xc1, 0x32, 0xce, 0x11, 0x25, 0x28, 0x16, 0xde, 0x91, 0x96, 0xee, 0x5f, + 0xaa, 0x3d, 0xfe, 0xd7, 0x6f, 0x9b, 0x0f, 0x0f, 0x82, 0xf4, 0x30, 0xdb, 0xdb, 0x6a, 0x47, 0xfd, + 0xed, 0x76, 0x94, 0xf4, 0xa3, 0x84, 0xfd, 0xf3, 0x30, 0xe9, 0x74, 0xb7, 0xd3, 0xe3, 0x01, 0x4a, + 0xb6, 0xe4, 0x76, 0x5b, 0xee, 0x74, 0x62, 0x94, 0x24, 0x76, 0x91, 0xe2, 0xb6, 0x09, 0x2a, 0xd3, + 0xd3, 0x1e, 0xb7, 0xfc, 0x5e, 0x86, 0xf8, 0x0a, 0x78, 0xef, 0x08, 0xff, 0x41, 0xaa, 0x3c, 0x6f, + 0xd3, 0xff, 0xf0, 0x1b, 0xe0, 0x42, 0x92, 0xc6, 0x90, 0x46, 0xf0, 0xec, 0x17, 0xec, 0xe5, 0x24, + 0x8d, 0x09, 0xe5, 0xf9, 0xf9, 0x7f, 0xfe, 0x69, 0x73, 0xe9, 0xf6, 0x5f, 0x6f, 0x80, 0x2b, 0xf3, + 0x1d, 0xb8, 0x01, 0x40, 0x3f, 0x08, 0x61, 0x3a, 0x84, 0xfb, 0x28, 0xcf, 0xb9, 0xdc, 0x0f, 0x42, + 0x77, 0xd8, 0x40, 0x88, 0x44, 0xfd, 0x61, 0x1e, 0x7d, 0x87, 0x45, 0xfd, 0x21, 0x8d, 0x6e, 0x82, + 0x8b, 0x47, 0x51, 0x8a, 0xe0, 0x8f, 0x59, 0x14, 0x67, 0x7d, 0xe1, 0x5d, 0x12, 0x06, 0x78, 0xe8, + 0x15, 0x19, 0xe1, 0xbf, 0x02, 0xd7, 0xfb, 0x41, 0x18, 0xf4, 0xb3, 0x3e, 0xa4, 0xeb, 0xf2, 0x7b, + 0x10, 0x85, 0x1d, 0x98, 0x06, 0x7d, 0x24, 0x9c, 0x27, 0xf0, 0x6b, 0x0c, 0x60, 0xb1, 0xb8, 0x1a, + 0x76, 0xdc, 0xa0, 0x8f, 0xf8, 0x67, 0x60, 0x7d, 0x82, 0xe2, 0xb7, 0xd3, 0x3e, 0x0a, 0x53, 0x4a, + 0x7c, 0x8f, 0x10, 0xaf, 0x0e, 0x0a, 0x06, 0x8b, 0x12, 0xde, 0x53, 0xb0, 0x8e, 0xd7, 0x33, 0x35, + 0xdd, 0x5e, 0x2f, 0x6a, 0x77, 0x13, 0xe1, 0x7d, 0xc2, 0xab, 0xf4, 0x83, 0x70, 0x62, 0xb2, 0x1a, + 0x89, 0xf1, 0x32, 0xb8, 0x39, 0x43, 0xcb, 0xa7, 0x64, 0xe4, 0x0f, 0x08, 0x59, 0x9c, 0x22, 0x33, + 0x08, 0x4b, 0xf1, 0x0d, 0xd8, 0x40, 0xa1, 0xbf, 0xd7, 0x43, 0x70, 0x3f, 0x8a, 0x51, 0x70, 0x10, + 0xe2, 0x9e, 0xc1, 0x81, 0x7f, 0x8c, 0x31, 0x89, 0xb0, 0x2c, 0x2d, 0xdd, 0x5f, 0xb6, 0x05, 0x0a, + 0x69, 0x50, 0x44, 0x03, 0x21, 0x8b, 0xc5, 0xf9, 0x3a, 0xa8, 0xf6, 0x83, 0xa4, 0x7d, 0xe8, 0x87, + 0x6d, 0x04, 0x63, 0x3f, 0xec, 0xc2, 0x0e, 0x6a, 0xc7, 0xc8, 0x4f, 0x10, 0xf4, 0xfb, 0x51, 0x16, + 0xa6, 0xc2, 0x05, 0x52, 0xc2, 0x46, 0x81, 0xb2, 0xfd, 0xb0, 0xab, 0x30, 0x8c, 0x4c, 0x20, 0xfc, + 0x1d, 0x70, 0x19, 0xef, 0x57, 0x01, 0x11, 0x00, 0xe1, 0x5c, 0xea, 0xfb, 0x43, 0x3d, 0x1f, 0xe3, + 0x1f, 0x83, 0x4a, 0x39, 0x53, 0x3b, 0x0a, 0xf7, 0x83, 0x0e, 0xc2, 0xd8, 0x8b, 0x04, 0xbb, 0x56, + 0xc4, 0xea, 0x45, 0x88, 0x4f, 0x40, 0x35, 0xc0, 0xcb, 0x0d, 0x8e, 0x66, 0x6b, 0x1b, 0xa0, 0xb8, + 0x8d, 0xc2, 0x54, 0xb8, 0x84, 0x35, 0x57, 0xdb, 0xfa, 0xe5, 0xb7, 0xcd, 0x73, 0x7f, 0xff, 0x6d, + 0xf3, 0xde, 0x7f, 0xa0, 0x7a, 0x05, 0xb5, 0xed, 0x8d, 0x3c, 0xeb, 0xe4, 0x5a, 0x2c, 0x9a, 0x92, + 0xbf, 0x0b, 0x56, 0xf0, 0x9e, 0x1c, 0xf9, 0xbd, 0xa0, 0xe3, 0xa7, 0x51, 0x9c, 0x08, 0x97, 0x49, + 0x85, 0x97, 0xfb, 0x41, 0xd8, 0x2a, 0x06, 0xf9, 0xe7, 0x40, 0x1c, 0x44, 0x51, 0x0c, 0xf3, 0x83, + 0x8c, 0x1b, 0xb0, 0x87, 0x6b, 0x4c, 0x50, 0xd8, 0x11, 0x56, 0xa8, 0xca, 0x30, 0x82, 0x89, 0x5f, + 0xf7, 0x87, 0x35, 0x3f, 0xec, 0x3a, 0x28, 0xec, 0xf0, 0xf7, 0xc0, 0x6a, 0x16, 0xfe, 0xaf, 0x1f, + 0xf4, 0x08, 0x8b, 0xa8, 0x6b, 0x95, 0xce, 0x41, 0x87, 0x75, 0x7f, 0x48, 0x54, 0xf5, 0x39, 0xb8, + 0xc6, 0xf6, 0x36, 0x8d, 0xba, 0x28, 0x84, 0x3f, 0x1d, 0x06, 0x29, 0xea, 0x05, 0x49, 0x2a, 0x70, + 0x64, 0x5b, 0x2b, 0x34, 0xea, 0xe2, 0xe0, 0xeb, 0x3c, 0x36, 0xc7, 0xda, 0xeb, 0xf9, 0xed, 0x2e, + 0x61, 0x5d, 0x99, 0x63, 0xd5, 0xf2, 0x18, 0x3b, 0x34, 0x10, 0x77, 0x3e, 0x0d, 0xd2, 0x63, 0xe8, + 0x0f, 0x06, 0x71, 0x74, 0xe4, 0xf7, 0x60, 0x1a, 0x0c, 0x04, 0xbe, 0x38, 0x34, 0x1a, 0x8b, 0xcb, + 0x2c, 0xec, 0x06, 0x03, 0xfe, 0x11, 0xa8, 0x64, 0x61, 0xf0, 0x63, 0x86, 0x4a, 0x76, 0x17, 0x1d, + 0x27, 0xc2, 0x1a, 0xb9, 0x10, 0x78, 0x1a, 0xcb, 0x89, 0xbb, 0xe8, 0x38, 0xc1, 0x47, 0x38, 0xdb, + 0x0b, 0xe0, 0xa1, 0x1f, 0x77, 0xda, 0xfe, 0x40, 0xa8, 0xd0, 0x23, 0x9c, 0xed, 0x05, 0x3b, 0x74, + 0x84, 0xff, 0x01, 0x54, 0xca, 0x0d, 0x20, 0x8a, 0x4e, 0x0e, 0xfd, 0x18, 0x09, 0x57, 0xcf, 0xb4, + 0xdf, 0x7c, 0x99, 0xab, 0x81, 0x90, 0x83, 0x33, 0xf1, 0x1e, 0x58, 0x09, 0xc2, 0xfd, 0x9e, 0x9f, + 0x06, 0x51, 0x08, 0x63, 0x3f, 0x45, 0xc2, 0xb5, 0x33, 0xe5, 0xbe, 0x5c, 0x64, 0xb1, 0xfd, 0x14, + 0xf1, 0x1f, 0x03, 0xae, 0x4c, 0x3b, 0x40, 0x71, 0x10, 0x75, 0x84, 0x75, 0xb2, 0xbc, 0xd5, 0x62, + 0xdc, 0x22, 0xc3, 0x18, 0x9a, 0x85, 0x49, 0xea, 0x77, 0x83, 0xf0, 0x20, 0x87, 0x0a, 0x14, 0x5a, + 0x8c, 0x33, 0x28, 0xd6, 0xa4, 0x3f, 0x84, 0x1d, 0xd4, 0x43, 0x07, 0x54, 0x93, 0xd7, 0x99, 0x26, + 0xfd, 0xa1, 0x52, 0x0c, 0xe2, 0x9d, 0xc7, 0x7b, 0xc8, 0x60, 0xa4, 0x82, 0x2c, 0x39, 0x8c, 0xb2, + 0x54, 0x10, 0x8b, 0x4b, 0x48, 0x29, 0x82, 0x16, 0x8d, 0xf1, 0x1f, 0x81, 0xd5, 0xa4, 0xe7, 0x27, + 0x87, 0x13, 0x65, 0x6c, 0x10, 0xf8, 0x4a, 0x3e, 0xcc, 0xaa, 0xd8, 0x03, 0x57, 0x71, 0x15, 0x58, + 0xa1, 0xa8, 0x93, 0x1f, 0x41, 0xff, 0x00, 0x09, 0x37, 0xce, 0xd4, 0xb9, 0xb5, 0xbe, 0x3f, 0xfc, + 0x96, 0xe4, 0xb2, 0x8a, 0x54, 0xfc, 0x3e, 0x58, 0xc7, 0x73, 0x4c, 0x16, 0x94, 0xcf, 0x72, 0xf3, + 0x4c, 0xb3, 0xe0, 0x92, 0x9d, 0x72, 0x1d, 0xf9, 0x3c, 0x0f, 0x00, 0x8f, 0x5b, 0xd5, 0xce, 0x92, + 0x34, 0xea, 0x1c, 0xc3, 0x18, 0xfd, 0xe4, 0xc7, 0x1d, 0xa1, 0x4a, 0xd6, 0xcd, 0xf5, 0x83, 0xb0, + 0x4e, 0x03, 0x36, 0x19, 0x27, 0xd7, 0xbb, 0x3f, 0x2c, 0xd0, 0x7b, 0xd9, 0xfe, 0x3e, 0x8a, 0x61, + 0x12, 0xfc, 0x8c, 0x84, 0x4d, 0xd6, 0x59, 0x7f, 0xc8, 0x28, 0x35, 0x12, 0x74, 0x82, 0x9f, 0x11, + 0xff, 0x10, 0xac, 0x4d, 0xd2, 0xd2, 0x21, 0xa5, 0x48, 0x6c, 0x96, 0x82, 0xe2, 0x0e, 0x09, 0x5c, + 0x05, 0x9b, 0xfe, 0x5e, 0x92, 0xe2, 0x73, 0x42, 0x34, 0xb9, 0xe0, 0x32, 0xbe, 0x45, 0xa8, 0x37, + 0x4a, 0xd8, 0x82, 0xdb, 0x98, 0x89, 0xa5, 0xc4, 0x08, 0xb7, 0x0b, 0xb1, 0xc8, 0xc5, 0x20, 0xbf, + 0x05, 0xd6, 0x48, 0x07, 0xa2, 0x5e, 0x0f, 0xd1, 0x2b, 0x76, 0x2f, 0x0a, 0x3b, 0xc2, 0x1d, 0x82, + 0xbd, 0x82, 0x5b, 0x50, 0x44, 0x6a, 0x51, 0xd8, 0xc1, 0x1f, 0x9a, 0x05, 0x78, 0xbc, 0x47, 0xe4, + 0x02, 0xfb, 0x90, 0xf0, 0x84, 0x39, 0x5e, 0x10, 0x1e, 0xe4, 0x77, 0x19, 0xe9, 0x45, 0x49, 0x8f, + 0xb2, 0x74, 0x90, 0xa5, 0x89, 0x70, 0xb7, 0xec, 0x60, 0x11, 0x34, 0x69, 0x6c, 0xc1, 0xa4, 0xed, + 0x9e, 0x1f, 0xf4, 0x73, 0x9d, 0xde, 0x5b, 0x30, 0x69, 0x1d, 0x03, 0x98, 0x62, 0x9f, 0x81, 0xf5, + 0xe2, 0xe8, 0xc3, 0x18, 0xb5, 0xa3, 0x23, 0x14, 0x1f, 0xd3, 0x75, 0x7e, 0x44, 0x3f, 0xe7, 0x45, + 0xd8, 0x66, 0x51, 0xb2, 0xd6, 0x1f, 0x40, 0x85, 0xb4, 0x30, 0x0c, 0x33, 0xbf, 0x07, 0x8b, 0x83, + 0x2b, 0xdc, 0x3f, 0xdb, 0xf5, 0x83, 0x1b, 0x4f, 0x52, 0x69, 0x79, 0xa6, 0x5c, 0x51, 0xc5, 0x97, + 0x3f, 0x0d, 0xd2, 0x1e, 0xa2, 0xf2, 0xf8, 0xb8, 0xe8, 0x47, 0xfe, 0xcd, 0x77, 0x71, 0x90, 0x48, + 0x04, 0x3f, 0x18, 0x26, 0x69, 0x1d, 0x94, 0xb4, 0xe3, 0x60, 0x40, 0x04, 0x43, 0xc8, 0x9f, 0xb0, + 0x07, 0x43, 0x49, 0x56, 0x4a, 0x08, 0x49, 0xf1, 0xdf, 0x33, 0x29, 0x06, 0x51, 0xaf, 0x07, 0xa3, + 0x89, 0x14, 0x9f, 0x92, 0x14, 0xd7, 0x27, 0x52, 0x58, 0x51, 0xaf, 0x67, 0x96, 0x19, 0x6a, 0xa0, + 0x7a, 0x62, 0x86, 0x36, 0x91, 0xe9, 0x83, 0xb9, 0x2a, 0xca, 0x14, 0x75, 0x22, 0x52, 0xbc, 0xb1, + 0x93, 0x39, 0x62, 0xb4, 0x8f, 0x62, 0xfc, 0xd1, 0xa7, 0x35, 0x3c, 0x64, 0x1b, 0x5b, 0x26, 0xb0, + 0x73, 0x00, 0x29, 0xe1, 0x05, 0x10, 0xa7, 0xe8, 0xed, 0x43, 0xd4, 0xee, 0x26, 0x59, 0x9f, 0xb2, + 0xb7, 0x08, 0x7b, 0x7d, 0x82, 0x5d, 0x67, 0x71, 0x42, 0xbe, 0x0d, 0x2e, 0x93, 0x6b, 0xd2, 0x1f, + 0x0c, 0xa8, 0x16, 0xb6, 0x09, 0xfe, 0x22, 0xbe, 0x1d, 0xfd, 0xc1, 0x80, 0x28, 0xe0, 0x36, 0x7d, + 0xd2, 0x94, 0x98, 0x47, 0x0c, 0xe3, 0x0f, 0x0b, 0xcc, 0xd7, 0x40, 0x24, 0xf1, 0x5e, 0xf0, 0x63, + 0x86, 0x45, 0x84, 0xd7, 0x9f, 0x1e, 0xc6, 0x28, 0x39, 0x8c, 0x7a, 0x1d, 0xe1, 0x31, 0x5d, 0x02, + 0x46, 0x34, 0x4b, 0x80, 0x9b, 0xc7, 0xb1, 0x36, 0xe7, 0xd8, 0x4c, 0xd6, 0x4f, 0xa8, 0x36, 0x67, + 0xa8, 0x4c, 0xd3, 0x0f, 0x00, 0x5f, 0x54, 0x05, 0x3b, 0x59, 0x4c, 0x95, 0xf9, 0x19, 0xbd, 0x53, + 0x3a, 0xac, 0x36, 0x85, 0x8d, 0xf3, 0xff, 0xc3, 0xd0, 0x47, 0x28, 0x0e, 0xf6, 0x03, 0x14, 0xd3, + 0xc5, 0x7c, 0x7e, 0x26, 0x1d, 0x93, 0xec, 0x2d, 0x96, 0x88, 0x74, 0xe0, 0x29, 0x5b, 0x83, 0x9f, + 0xa5, 0x11, 0xec, 0xa0, 0x30, 0xca, 0xf0, 0x0e, 0x92, 0xfb, 0xe0, 0x29, 0x55, 0x31, 0x0e, 0xcb, + 0x59, 0x1a, 0x29, 0x2c, 0x48, 0xee, 0x82, 0x26, 0xb8, 0x43, 0x68, 0x6f, 0x79, 0x79, 0x3e, 0x23, + 0x29, 0x36, 0x31, 0x54, 0x3f, 0xe5, 0xf5, 0x99, 0x37, 0x64, 0xfa, 0x09, 0xfa, 0x45, 0xd9, 0x10, + 0x7d, 0xf2, 0x19, 0x9a, 0xcf, 0xfd, 0x96, 0x87, 0xe5, 0x97, 0xe5, 0xdc, 0xda, 0x29, 0x8f, 0xc5, + 0x2e, 0x93, 0xc0, 0x20, 0x8a, 0x7a, 0x30, 0xe9, 0x05, 0x83, 0x81, 0x7f, 0x80, 0x60, 0x07, 0xed, + 0xfb, 0x59, 0x2f, 0x15, 0xbe, 0x3a, 0x53, 0x9b, 0x49, 0x4b, 0xad, 0x28, 0xea, 0x39, 0x2c, 0x9f, + 0x42, 0xd3, 0xf1, 0x1f, 0x92, 0x97, 0x69, 0x8a, 0xaf, 0xdc, 0xfd, 0x94, 0x58, 0xa3, 0xe7, 0xec, + 0x9d, 0x4d, 0x47, 0x1b, 0x29, 0xb6, 0x47, 0xf7, 0xc0, 0x6a, 0x8e, 0x0a, 0x19, 0xec, 0x45, 0xf1, + 0x80, 0xc5, 0xc3, 0xc6, 0x3e, 0xc1, 0x79, 0x60, 0xe5, 0x08, 0xa5, 0xd1, 0x84, 0x62, 0xbf, 0x3e, + 0xdb, 0x03, 0x08, 0x67, 0x29, 0x65, 0xfd, 0x12, 0x48, 0x58, 0x0d, 0xed, 0xa8, 0x3f, 0x88, 0xb2, + 0xb0, 0x03, 0x83, 0x30, 0x45, 0x31, 0x7e, 0x47, 0x86, 0x59, 0x3f, 0x77, 0x35, 0xdf, 0x90, 0x7a, + 0x6e, 0x4e, 0xe2, 0x34, 0x06, 0x33, 0xb2, 0x3e, 0x35, 0x36, 0x9f, 0x8c, 0xae, 0x83, 0xd5, 0x19, + 0x2b, 0x8a, 0x8d, 0xa1, 0xae, 0x19, 0xd0, 0xfd, 0x0e, 0x36, 0x54, 0x95, 0x3b, 0x27, 0x5e, 0x1a, + 0x8d, 0xa5, 0x65, 0x7d, 0xc2, 0x36, 0xea, 0xf2, 0x77, 0x79, 0x74, 0x89, 0x45, 0x27, 0x6c, 0x63, + 0xcb, 0x74, 0x55, 0xf8, 0xca, 0x33, 0x6d, 0x4f, 0xe7, 0xde, 0x11, 0x57, 0x46, 0x63, 0x09, 0xb4, + 0xa6, 0x6c, 0xa3, 0xae, 0x19, 0x9a, 0xee, 0xe9, 0xd0, 0xb2, 0x4d, 0xcb, 0x74, 0xe4, 0x26, 0x54, + 0x0d, 0x05, 0xba, 0x9a, 0xae, 0x72, 0xef, 0x8a, 0xe2, 0x68, 0x2c, 0x5d, 0xd3, 0x4f, 0xb4, 0x8d, + 0x13, 0x14, 0xb9, 0xee, 0xea, 0xaa, 0xe1, 0x52, 0xe2, 0x79, 0xf1, 0xfa, 0x68, 0x2c, 0x5d, 0xb5, + 0x4e, 0xb2, 0x8d, 0x78, 0x3d, 0x53, 0xd3, 0xd5, 0x9a, 0x66, 0x7d, 0xd7, 0xe1, 0xde, 0x13, 0x85, + 0xd1, 0x58, 0xaa, 0xe8, 0x27, 0xd8, 0xc6, 0x19, 0x5a, 0x3e, 0x25, 0x23, 0xbf, 0x2f, 0x56, 0x47, + 0x63, 0x49, 0xd4, 0x4f, 0xb5, 0x8d, 0xaa, 0x21, 0xd7, 0x9a, 0x2a, 0x6c, 0x98, 0xb6, 0xaa, 0xbd, + 0x34, 0x70, 0xcf, 0xa0, 0x25, 0xbf, 0xc1, 0x69, 0x1c, 0xee, 0x03, 0xf1, 0xc6, 0x68, 0x2c, 0x09, + 0xea, 0x29, 0xb6, 0x51, 0xd7, 0x9c, 0xfa, 0x8e, 0x6c, 0xd4, 0x55, 0x68, 0xcb, 0xc6, 0x2e, 0x54, + 0xd4, 0xba, 0xad, 0xca, 0x8e, 0x0a, 0x65, 0xdd, 0xf4, 0x0c, 0x97, 0x5b, 0x16, 0x37, 0x47, 0x63, + 0x69, 0x43, 0x3f, 0xdd, 0x36, 0xe2, 0xfd, 0x2a, 0x12, 0x71, 0x17, 0x44, 0x6e, 0x34, 0x96, 0x2e, + 0xe9, 0x33, 0xb6, 0xb1, 0x9c, 0xa9, 0x6e, 0x1a, 0x0d, 0x4d, 0x51, 0x31, 0x16, 0x88, 0xeb, 0xa3, + 0xb1, 0xb4, 0xa6, 0x2f, 0xb0, 0x8d, 0x75, 0x50, 0xd5, 0x70, 0x47, 0xb4, 0xd6, 0x6c, 0x6d, 0x96, + 0x6a, 0xd7, 0x55, 0xc3, 0xe5, 0x2e, 0xd2, 0xe2, 0x4e, 0x3b, 0xd9, 0xcf, 0x81, 0x68, 0x99, 0xa6, + 0x0d, 0x0d, 0xd5, 0x7d, 0x6d, 0xda, 0xbb, 0x10, 0x57, 0x5a, 0xc3, 0xc9, 0x1c, 0xd5, 0x50, 0xb8, + 0x4b, 0x54, 0x0e, 0xd6, 0x62, 0x7f, 0x77, 0x17, 0xac, 0xe0, 0xfd, 0x69, 0xc9, 0x4d, 0x4d, 0x91, + 0x5d, 0xd3, 0x76, 0xb8, 0xcb, 0xe2, 0x95, 0xd1, 0x58, 0xba, 0xac, 0x4f, 0x59, 0xc8, 0x7b, 0x60, + 0xd5, 0x33, 0xbe, 0x95, 0xb5, 0x26, 0x49, 0x4e, 0xd4, 0xb2, 0x42, 0x71, 0xde, 0xac, 0x0d, 0x64, + 0x7b, 0xe5, 0x9a, 0xbb, 0xaa, 0x01, 0x5f, 0xef, 0x68, 0xae, 0xda, 0xd4, 0x1c, 0x97, 0x5b, 0xa5, + 0x22, 0x51, 0x4f, 0xb0, 0x81, 0x53, 0xac, 0x5a, 0x53, 0xae, 0xef, 0x12, 0x16, 0x37, 0xc7, 0x9a, + 0xb2, 0x81, 0xb8, 0x74, 0xdc, 0x64, 0x57, 0x73, 0xdf, 0x40, 0xd9, 0xb2, 0x6c, 0xb3, 0x25, 0x37, + 0xa1, 0xab, 0x59, 0xdc, 0x95, 0xe2, 0x10, 0x9c, 0x60, 0x03, 0x3d, 0x43, 0x7b, 0xe5, 0xa9, 0x25, + 0x7b, 0x57, 0x7d, 0xe3, 0x70, 0xbc, 0x78, 0x6d, 0x34, 0x96, 0x78, 0x6f, 0xa1, 0x0d, 0xf4, 0x6a, + 0x1a, 0xdc, 0x91, 0x6d, 0xa5, 0x2e, 0x5b, 0xdc, 0x1a, 0x3d, 0x92, 0x5e, 0x69, 0x03, 0x1f, 0x81, + 0x4a, 0xd9, 0x44, 0xa2, 0x50, 0x67, 0x47, 0xb6, 0x55, 0xae, 0x42, 0x53, 0xb6, 0xe6, 0x6d, 0xdd, + 0x5d, 0xb0, 0xa2, 0x19, 0x8d, 0xa6, 0xec, 0x6a, 0xa6, 0x01, 0x6d, 0xd9, 0x55, 0xb9, 0xab, 0xb4, + 0xa5, 0xda, 0xac, 0x4d, 0x2b, 0x61, 0x96, 0x6a, 0x6b, 0xa6, 0xc2, 0x5d, 0x13, 0xd7, 0x46, 0x63, + 0x69, 0x55, 0x9b, 0xb7, 0x69, 0x9e, 0xe1, 0xb8, 0xf2, 0xae, 0x66, 0xbc, 0xcc, 0xa1, 0xeb, 0x14, + 0xea, 0xcd, 0xdb, 0x34, 0xbc, 0x93, 0x8a, 0xda, 0x54, 0x5f, 0xd2, 0x7d, 0x17, 0xd8, 0xbe, 0xcf, + 0xda, 0x34, 0xdc, 0x63, 0x06, 0x23, 0x15, 0x78, 0xce, 0x8e, 0xe9, 0xb9, 0xdc, 0xf5, 0xe2, 0xd0, + 0x2f, 0xb4, 0x69, 0x4e, 0x53, 0x76, 0x76, 0x26, 0xca, 0x10, 0x45, 0x7e, 0x34, 0x96, 0x56, 0x9c, + 0x69, 0x9b, 0xf6, 0x04, 0x5c, 0xc5, 0x55, 0x60, 0x61, 0xa9, 0x4a, 0x2e, 0x79, 0xf9, 0xa5, 0xca, + 0x6d, 0xb0, 0x23, 0xb3, 0xc0, 0x76, 0x3d, 0x03, 0xeb, 0x98, 0x33, 0x39, 0x41, 0xce, 0xba, 0x41, + 0x2f, 0x30, 0xfd, 0x24, 0x1b, 0x85, 0x97, 0x52, 0xf7, 0x1c, 0xd7, 0x54, 0xde, 0x40, 0x5b, 0x7d, + 0x2d, 0xdb, 0x0a, 0x77, 0x53, 0xac, 0x8c, 0xc6, 0x12, 0xa7, 0x2f, 0xb0, 0x51, 0x78, 0x96, 0x1c, + 0x5d, 0xf3, 0x1a, 0x0d, 0xd5, 0x86, 0x8e, 0xf6, 0xbd, 0xca, 0x55, 0xd9, 0xca, 0x4f, 0xb0, 0x51, + 0x93, 0x34, 0xf7, 0x3b, 0x4a, 0xd9, 0x64, 0xb3, 0x2c, 0xb0, 0x51, 0x72, 0xcd, 0x71, 0xb1, 0x04, + 0x89, 0x06, 0x16, 0x5c, 0x4e, 0x92, 0x28, 0x8d, 0xc6, 0xd2, 0x0d, 0xf9, 0x2d, 0x36, 0x0a, 0xcf, + 0x5a, 0xa6, 0xe2, 0x6e, 0x15, 0x9b, 0x39, 0x6d, 0xa3, 0x48, 0x07, 0xcc, 0x66, 0x53, 0xa5, 0x57, + 0x4e, 0xcd, 0x34, 0x14, 0xee, 0xb6, 0x78, 0x75, 0x34, 0x96, 0xae, 0xe8, 0x8b, 0x6c, 0xd4, 0x02, + 0x3c, 0xee, 0x39, 0xb9, 0x00, 0xee, 0xd0, 0x8b, 0x57, 0x3f, 0xc5, 0x46, 0x91, 0x5e, 0x94, 0x74, + 0xd3, 0x73, 0x2d, 0xcf, 0x75, 0xb8, 0x0f, 0xcb, 0x0e, 0x2e, 0xb2, 0x51, 0x33, 0x93, 0xd6, 0x9b, + 0xb2, 0xa6, 0xe7, 0x3a, 0xba, 0xbb, 0x60, 0xd2, 0x19, 0x1b, 0x55, 0x1c, 0x43, 0x68, 0xab, 0x75, + 0xb3, 0xa5, 0xda, 0x6f, 0xe8, 0x3a, 0xef, 0x51, 0x75, 0xb4, 0x16, 0xda, 0xa8, 0x47, 0xa0, 0x42, + 0x5a, 0x68, 0x18, 0x9e, 0xdc, 0x84, 0xc5, 0x81, 0xe3, 0x3e, 0xa2, 0xc7, 0x57, 0x5f, 0x68, 0x8b, + 0x30, 0xa3, 0xf8, 0xb2, 0xb9, 0x9a, 0xdb, 0x54, 0xe9, 0x76, 0xdf, 0x2f, 0xd6, 0xb7, 0xd0, 0x16, + 0x4d, 0xd1, 0x14, 0xd5, 0xa9, 0xdb, 0x9a, 0x45, 0x04, 0x40, 0xc8, 0x1f, 0xb3, 0x0f, 0xe2, 0xa9, + 0xb6, 0x68, 0x2a, 0x85, 0x65, 0x36, 0x9b, 0xd0, 0x9c, 0x48, 0xf1, 0x89, 0x78, 0x73, 0x34, 0x96, + 0xae, 0xeb, 0xa7, 0xd9, 0xa2, 0x13, 0x33, 0xd4, 0x89, 0xec, 0x3e, 0x9d, 0xab, 0x62, 0x81, 0x2d, + 0x9a, 0xca, 0x61, 0xab, 0x0d, 0xd5, 0xc6, 0xdf, 0x3b, 0x5a, 0xc3, 0x03, 0xb6, 0x51, 0xa7, 0xd8, + 0xa2, 0x29, 0x7a, 0x7d, 0x47, 0xad, 0xef, 0x3a, 0x9e, 0x4e, 0xd9, 0x0f, 0xc5, 0x8d, 0xd1, 0x58, + 0x5a, 0xd7, 0x4f, 0xb6, 0x45, 0xe4, 0x5a, 0x92, 0x2d, 0x8b, 0xee, 0xed, 0x96, 0xb8, 0x3a, 0x1a, + 0x4b, 0x17, 0xf5, 0x69, 0x5b, 0x44, 0x6e, 0xb8, 0x02, 0xb3, 0xcd, 0x30, 0xd3, 0xb6, 0x88, 0xc4, + 0x9b, 0xda, 0x2b, 0x0f, 0x6b, 0x06, 0xaf, 0xdf, 0xdd, 0xb1, 0x55, 0x67, 0xc7, 0x6c, 0x2a, 0xdc, + 0x23, 0xba, 0x04, 0xe5, 0x14, 0x5b, 0x34, 0xc7, 0x66, 0x32, 0x7d, 0x4c, 0xb5, 0xa6, 0x9c, 0x64, + 0x8b, 0x8a, 0xaa, 0xa0, 0xe2, 0xd9, 0x54, 0x69, 0x4f, 0xe8, 0x1d, 0xa1, 0xcc, 0xda, 0xa2, 0x1c, + 0xdd, 0x52, 0x6d, 0xad, 0xa1, 0xa9, 0x36, 0x5d, 0xcc, 0x67, 0x25, 0x7a, 0xd6, 0xe6, 0x10, 0xb4, + 0xec, 0xb9, 0x26, 0x54, 0x54, 0xc3, 0xf4, 0xf0, 0x8e, 0x90, 0xf3, 0xfa, 0x39, 0x55, 0xa5, 0x72, + 0x82, 0xcd, 0x21, 0xb4, 0xb7, 0xbc, 0x94, 0x9e, 0x8a, 0x77, 0x46, 0x63, 0x69, 0x53, 0x79, 0xbb, + 0xcd, 0xa1, 0xd9, 0xa6, 0x9e, 0x4c, 0xcf, 0xca, 0x92, 0x67, 0x6d, 0x0e, 0x41, 0xbf, 0xe5, 0x21, + 0xf4, 0x45, 0x39, 0xf7, 0x69, 0x8f, 0xa1, 0x17, 0x6c, 0x4b, 0x2d, 0xd3, 0x6c, 0x42, 0xa7, 0xa9, + 0x59, 0x96, 0xfc, 0x52, 0x85, 0x8a, 0xda, 0x90, 0xbd, 0xa6, 0xcb, 0x7d, 0x49, 0x75, 0xa5, 0x9c, + 0x6c, 0x5b, 0x74, 0xcd, 0x70, 0xf1, 0x15, 0xd7, 0x70, 0xc9, 0xd3, 0xfc, 0x2b, 0xf6, 0xce, 0x9b, + 0xb1, 0x2d, 0x39, 0xca, 0x60, 0xb0, 0xe7, 0xc5, 0xa3, 0x69, 0xc2, 0xb6, 0xdc, 0x05, 0x2b, 0x2d, + 0xd5, 0x35, 0x27, 0x14, 0xf5, 0x82, 0xc2, 0x5a, 0xb3, 0x36, 0x04, 0xef, 0x56, 0xdd, 0xd4, 0x2d, + 0xd3, 0x33, 0x14, 0xa8, 0x19, 0xae, 0x6a, 0xe3, 0x77, 0x8c, 0xe1, 0xe9, 0xf9, 0x2b, 0xf9, 0x6b, + 0xf1, 0xd6, 0x68, 0x2c, 0xdd, 0x94, 0x4f, 0xb3, 0x21, 0xe2, 0xf9, 0xff, 0xfb, 0x73, 0xf5, 0x5c, + 0xed, 0xbf, 0x7e, 0xf9, 0xbd, 0xba, 0xf4, 0xeb, 0xef, 0xd5, 0xa5, 0x7f, 0xfc, 0x5e, 0x5d, 0xfa, + 0xff, 0x3f, 0xaa, 0xe7, 0x7e, 0xfd, 0xa3, 0x7a, 0xee, 0x6f, 0x7f, 0x54, 0xcf, 0x7d, 0x7f, 0x77, + 0xc2, 0x26, 0xed, 0x06, 0xb1, 0x5f, 0x8f, 0x62, 0xb4, 0x9d, 0xa0, 0xae, 0x1f, 0x6c, 0x0f, 0xc9, + 0x2f, 0x88, 0xc4, 0x29, 0xed, 0xbd, 0x4f, 0x7e, 0x15, 0xfc, 0xec, 0xdf, 0x01, 0x00, 0x00, 0xff, + 0xff, 0x06, 0xee, 0x6e, 0x01, 0x5a, 0x1c, 0x00, 0x00, } func (this *NetworkPropertyValue) Equal(that interface{}) bool { @@ -1090,6 +1105,13 @@ func (m *NetworkProperties) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.AutocompoundIntervalNumBlocks != 0 { + i = encodeVarintNetworkProperties(dAtA, i, uint64(m.AutocompoundIntervalNumBlocks)) + i-- + dAtA[i] = 0x3 + i-- + dAtA[i] = 0xe8 + } { size := m.VetoThreshold.Size() i -= size @@ -1767,6 +1789,9 @@ func (m *NetworkProperties) Size() (n int) { } l = m.VetoThreshold.Size() n += 2 + l + sovNetworkProperties(uint64(l)) + if m.AutocompoundIntervalNumBlocks != 0 { + n += 2 + sovNetworkProperties(uint64(m.AutocompoundIntervalNumBlocks)) + } return n } @@ -3317,6 +3342,25 @@ func (m *NetworkProperties) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 61: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field AutocompoundIntervalNumBlocks", wireType) + } + m.AutocompoundIntervalNumBlocks = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowNetworkProperties + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.AutocompoundIntervalNumBlocks |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipNetworkProperties(dAtA[iNdEx:]) diff --git a/x/gov/types/query.pb.go b/x/gov/types/query.pb.go index 83eba1aa..658f89b7 100644 --- a/x/gov/types/query.pb.go +++ b/x/gov/types/query.pb.go @@ -3567,7 +3567,7 @@ type QueryClient interface { // Query list of all polls by address PollsListByAddress(ctx context.Context, in *QueryPollsListByAddress, opts ...grpc.CallOption) (*QueryPollsListByAddressResponse, error) PollsVotesByPollId(ctx context.Context, in *QueryPollsVotesByPollId, opts ...grpc.CallOption) (*QueryPollsVotesByPollIdResponse, error) - // CustomPrefixes returns custom prefixes + // CustomPrefixes returns custom denom and bech32 address prefix CustomPrefixes(ctx context.Context, in *QueryCustomPrefixesRequest, opts ...grpc.CallOption) (*QueryCustomPrefixesResponse, error) } @@ -3964,7 +3964,7 @@ type QueryServer interface { // Query list of all polls by address PollsListByAddress(context.Context, *QueryPollsListByAddress) (*QueryPollsListByAddressResponse, error) PollsVotesByPollId(context.Context, *QueryPollsVotesByPollId) (*QueryPollsVotesByPollIdResponse, error) - // CustomPrefixes returns custom prefixes + // CustomPrefixes returns custom denom and bech32 address prefix CustomPrefixes(context.Context, *QueryCustomPrefixesRequest) (*QueryCustomPrefixesResponse, error) } diff --git a/x/gov/types/query.pb.gw.go b/x/gov/types/query.pb.gw.go index 7746e009..7b6f4070 100644 --- a/x/gov/types/query.pb.gw.go +++ b/x/gov/types/query.pb.gw.go @@ -2430,6 +2430,8 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv mux.Handle("GET", pattern_Query_CustomPrefixes_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -2437,6 +2439,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } resp, md, err := local_request_Query_CustomPrefixes_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -3260,7 +3263,7 @@ var ( pattern_Query_PollsVotesByPollId_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"kira", "gov", "proposal_poll", "votes", "poll_id"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_CustomPrefixes_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"kira", "gov", "custom_prefixes"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_CustomPrefixes_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"kira", "gov", "custom_prefixes"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/multistaking/types/multistaking.pb.go b/x/multistaking/types/multistaking.pb.go index 008d1be1..48f17027 100644 --- a/x/multistaking/types/multistaking.pb.go +++ b/x/multistaking/types/multistaking.pb.go @@ -209,6 +209,7 @@ type CompoundInfo struct { Delegator string `protobuf:"bytes,1,opt,name=delegator,proto3" json:"delegator,omitempty"` AllDenom bool `protobuf:"varint,2,opt,name=all_denom,json=allDenom,proto3" json:"all_denom,omitempty"` CompoundDenoms []string `protobuf:"bytes,3,rep,name=compound_denoms,json=compoundDenoms,proto3" json:"compound_denoms,omitempty"` + LastExecBlock uint64 `protobuf:"varint,4,opt,name=last_exec_block,json=lastExecBlock,proto3" json:"last_exec_block,omitempty"` } func (m *CompoundInfo) Reset() { *m = CompoundInfo{} } @@ -265,6 +266,13 @@ func (m *CompoundInfo) GetCompoundDenoms() []string { return nil } +func (m *CompoundInfo) GetLastExecBlock() uint64 { + if m != nil { + return m.LastExecBlock + } + return 0 +} + func init() { proto.RegisterType((*StakingPool)(nil), "kira.multistaking.StakingPool") proto.RegisterType((*Undelegation)(nil), "kira.multistaking.Undelegation") @@ -277,41 +285,43 @@ func init() { } var fileDescriptor_a141b2df58d204b4 = []byte{ - // 537 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xc1, 0x6e, 0xd3, 0x40, - 0x10, 0x86, 0xe3, 0x24, 0xc4, 0xf1, 0xb4, 0x14, 0x58, 0x55, 0xc8, 0x2a, 0x95, 0x13, 0x45, 0x88, - 0xe6, 0x82, 0x7d, 0xe0, 0x09, 0x68, 0x2b, 0x41, 0x05, 0x42, 0xc8, 0x94, 0x0b, 0x12, 0x8a, 0x36, - 0xd9, 0xad, 0xbb, 0xca, 0xda, 0x13, 0xed, 0x6e, 0x42, 0xfb, 0x04, 0x5c, 0x79, 0x0c, 0x9e, 0x81, - 0x27, 0xe8, 0xb1, 0x47, 0xc4, 0xa1, 0x42, 0xc9, 0x8b, 0x20, 0xaf, 0xd7, 0x6a, 0x2a, 0x0e, 0xa0, - 0x9c, 0x92, 0xd9, 0xf9, 0xe7, 0xfb, 0x3d, 0xb3, 0xa3, 0x85, 0xa7, 0x53, 0xa1, 0x68, 0x92, 0xcf, - 0xa5, 0x11, 0xda, 0xd0, 0xa9, 0x28, 0xb2, 0x3b, 0x41, 0x3c, 0x53, 0x68, 0x90, 0x3c, 0x2a, 0x55, - 0xf1, 0x7a, 0x62, 0x6f, 0x37, 0xc3, 0x0c, 0x6d, 0x36, 0x29, 0xff, 0x55, 0xc2, 0xbd, 0x5e, 0x86, - 0x98, 0x49, 0x9e, 0xd8, 0x68, 0x3c, 0x3f, 0x4b, 0x8c, 0xc8, 0xb9, 0x36, 0x34, 0x9f, 0x55, 0x82, - 0xc1, 0xd7, 0x36, 0x6c, 0x7d, 0xa8, 0x10, 0xef, 0x11, 0x25, 0xd9, 0x81, 0xa6, 0x60, 0xa1, 0xd7, - 0xf7, 0x86, 0xed, 0xb4, 0x29, 0x18, 0xd9, 0x87, 0x60, 0x41, 0xa5, 0x60, 0xd4, 0xa0, 0x0a, 0x9b, - 0x7d, 0x6f, 0x18, 0xa4, 0xb7, 0x07, 0x24, 0x04, 0x9f, 0x17, 0x74, 0x2c, 0x39, 0x0b, 0x5b, 0x7d, - 0x6f, 0xd8, 0x4d, 0xeb, 0x90, 0xbc, 0x06, 0x5f, 0x4b, 0xaa, 0xcf, 0x39, 0x0b, 0xdb, 0x65, 0xd5, - 0x61, 0x7c, 0x75, 0xd3, 0x6b, 0xfc, 0xba, 0xe9, 0x3d, 0xcb, 0x84, 0x39, 0x9f, 0x8f, 0xe3, 0x09, - 0xe6, 0xc9, 0x04, 0x75, 0x8e, 0xda, 0xfd, 0x3c, 0xd7, 0x6c, 0x9a, 0x98, 0xcb, 0x19, 0xd7, 0xf1, - 0x31, 0x9f, 0xa4, 0x75, 0x39, 0xa1, 0xb0, 0x6b, 0xd0, 0x50, 0x39, 0x72, 0x9d, 0x8e, 0x0c, 0x4e, - 0x79, 0xa1, 0xc3, 0x7b, 0xfd, 0xd6, 0x30, 0x38, 0x4c, 0x1c, 0xf6, 0xe0, 0x3f, 0xb0, 0x47, 0x28, - 0x8a, 0x94, 0x58, 0x98, 0x6b, 0xf9, 0xd4, 0xa2, 0xc8, 0x67, 0x20, 0xce, 0xe2, 0x9c, 0x2a, 0x5e, - 0x1b, 0x74, 0x36, 0x33, 0x78, 0x58, 0x19, 0x94, 0x24, 0x87, 0x3f, 0x85, 0xfb, 0x15, 0x5e, 0xf1, - 0x2f, 0x54, 0x31, 0x1d, 0xfa, 0x9b, 0x91, 0xb7, 0x2d, 0x25, 0xad, 0x20, 0xe4, 0x1d, 0xc0, 0x04, - 0xf3, 0x5c, 0x68, 0x2d, 0xb0, 0x08, 0xbb, 0x1b, 0x0d, 0x79, 0x8d, 0x30, 0xf8, 0xe1, 0xc1, 0xf6, - 0xc7, 0x82, 0x71, 0xc9, 0x33, 0x6a, 0x04, 0x16, 0x7f, 0xad, 0x42, 0x08, 0x3e, 0x65, 0x4c, 0x71, - 0xad, 0xdd, 0x22, 0xd4, 0x21, 0xe9, 0xc1, 0xd6, 0x82, 0xca, 0x51, 0x9d, 0x6d, 0xd9, 0x2c, 0x2c, - 0xa8, 0x7c, 0xe9, 0x04, 0x8f, 0xa1, 0xc3, 0x2f, 0x66, 0x42, 0x5d, 0xda, 0x65, 0x68, 0xa7, 0x2e, - 0x22, 0xaf, 0xa0, 0x43, 0x73, 0x9c, 0x17, 0x66, 0xd3, 0xdb, 0x74, 0xe5, 0x03, 0x05, 0x7e, 0x3d, - 0x97, 0x7d, 0x08, 0x5c, 0x13, 0xa8, 0xec, 0xd7, 0x07, 0xe9, 0xed, 0x01, 0x39, 0x01, 0xbf, 0xbe, - 0x85, 0xe6, 0x66, 0x96, 0x75, 0xfd, 0x40, 0xc1, 0xf6, 0x11, 0xe6, 0x33, 0x9c, 0x17, 0xec, 0xa4, - 0x38, 0xc3, 0x7f, 0x18, 0x3f, 0x81, 0x80, 0x4a, 0x39, 0x62, 0xbc, 0xc0, 0xdc, 0xce, 0xaf, 0x9b, - 0x76, 0xa9, 0x94, 0xc7, 0x65, 0x4c, 0x0e, 0xe0, 0xc1, 0xc4, 0xa1, 0x2a, 0x45, 0x39, 0xc4, 0xd6, - 0x30, 0x48, 0x77, 0xea, 0x63, 0xab, 0xd3, 0x87, 0x6f, 0xbf, 0x2f, 0x23, 0xef, 0x6a, 0x19, 0x79, - 0xd7, 0xcb, 0xc8, 0xfb, 0xbd, 0x8c, 0xbc, 0x6f, 0xab, 0xa8, 0x71, 0xbd, 0x8a, 0x1a, 0x3f, 0x57, - 0x51, 0xe3, 0x53, 0xbc, 0xd6, 0xc3, 0x1b, 0xa1, 0xe8, 0x11, 0x2a, 0x9e, 0x68, 0x3e, 0xa5, 0x22, - 0xb9, 0xb8, 0xfb, 0xa6, 0xd8, 0x7e, 0xc6, 0x1d, 0xfb, 0x06, 0xbc, 0xf8, 0x13, 0x00, 0x00, 0xff, - 0xff, 0x27, 0x09, 0xf7, 0x5f, 0x75, 0x04, 0x00, 0x00, + // 566 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xcf, 0x6e, 0xd3, 0x4e, + 0x10, 0xc7, 0xe3, 0x24, 0xbf, 0x24, 0x9e, 0xfe, 0xfb, 0xb1, 0xaa, 0x90, 0x55, 0x2a, 0x27, 0x8a, + 0x50, 0x9b, 0x0b, 0xf1, 0x81, 0x27, 0x20, 0x2d, 0x82, 0x0a, 0x84, 0x90, 0x29, 0x17, 0x24, 0x14, + 0x6d, 0xbc, 0x5b, 0x77, 0x95, 0xb5, 0x27, 0xda, 0xdd, 0x94, 0xf4, 0x09, 0xb8, 0x72, 0xe6, 0x09, + 0x78, 0x06, 0x9e, 0xa0, 0xc7, 0x1e, 0x11, 0x87, 0x0a, 0xa5, 0x2f, 0x82, 0xbc, 0x5e, 0xab, 0xa9, + 0x38, 0x80, 0x72, 0x4a, 0x66, 0xe6, 0x3b, 0x9f, 0xaf, 0x67, 0x76, 0xb5, 0xf0, 0x78, 0x2a, 0x14, + 0x8d, 0xb2, 0xb9, 0x34, 0x42, 0x1b, 0x3a, 0x15, 0x79, 0x7a, 0x2f, 0x18, 0xce, 0x14, 0x1a, 0x24, + 0x0f, 0x0a, 0xd5, 0x70, 0xb5, 0xb0, 0xb7, 0x9b, 0x62, 0x8a, 0xb6, 0x1a, 0x15, 0xff, 0x4a, 0xe1, + 0x5e, 0x37, 0x45, 0x4c, 0x25, 0x8f, 0x6c, 0x34, 0x99, 0x9f, 0x45, 0x46, 0x64, 0x5c, 0x1b, 0x9a, + 0xcd, 0x4a, 0x41, 0xff, 0x73, 0x13, 0x36, 0xde, 0x95, 0x88, 0xb7, 0x88, 0x92, 0x6c, 0x43, 0x5d, + 0xb0, 0xc0, 0xeb, 0x79, 0x83, 0x66, 0x5c, 0x17, 0x8c, 0xec, 0x83, 0x7f, 0x41, 0xa5, 0x60, 0xd4, + 0xa0, 0x0a, 0xea, 0x3d, 0x6f, 0xe0, 0xc7, 0x77, 0x09, 0x12, 0x40, 0x9b, 0xe7, 0x74, 0x22, 0x39, + 0x0b, 0x1a, 0x3d, 0x6f, 0xd0, 0x89, 0xab, 0x90, 0xbc, 0x84, 0xb6, 0x96, 0x54, 0x9f, 0x73, 0x16, + 0x34, 0x8b, 0xae, 0xd1, 0xf0, 0xea, 0xa6, 0x5b, 0xfb, 0x79, 0xd3, 0x3d, 0x48, 0x85, 0x39, 0x9f, + 0x4f, 0x86, 0x09, 0x66, 0x51, 0x82, 0x3a, 0x43, 0xed, 0x7e, 0x9e, 0x68, 0x36, 0x8d, 0xcc, 0xe5, + 0x8c, 0xeb, 0xe1, 0x31, 0x4f, 0xe2, 0xaa, 0x9d, 0x50, 0xd8, 0x35, 0x68, 0xa8, 0x1c, 0xbb, 0x49, + 0xc7, 0x06, 0xa7, 0x3c, 0xd7, 0xc1, 0x7f, 0xbd, 0xc6, 0xc0, 0x1f, 0x45, 0x0e, 0x7b, 0xf8, 0x0f, + 0xd8, 0x23, 0x14, 0x79, 0x4c, 0x2c, 0xcc, 0x8d, 0x7c, 0x6a, 0x51, 0xe4, 0x23, 0x10, 0x67, 0x71, + 0x4e, 0x15, 0xaf, 0x0c, 0x5a, 0xeb, 0x19, 0xfc, 0x5f, 0x1a, 0x14, 0x24, 0x87, 0x3f, 0x85, 0xad, + 0x12, 0xaf, 0xf8, 0x27, 0xaa, 0x98, 0x0e, 0xda, 0xeb, 0x91, 0x37, 0x2d, 0x25, 0x2e, 0x21, 0xe4, + 0x0d, 0x40, 0x82, 0x59, 0x26, 0xb4, 0x16, 0x98, 0x07, 0x9d, 0xb5, 0x96, 0xbc, 0x42, 0xe8, 0x7f, + 0xf7, 0x60, 0xf3, 0x7d, 0xce, 0xb8, 0xe4, 0x29, 0x35, 0x02, 0xf3, 0x3f, 0xae, 0x42, 0x00, 0x6d, + 0xca, 0x98, 0xe2, 0x5a, 0xbb, 0x8b, 0x50, 0x85, 0xa4, 0x0b, 0x1b, 0x17, 0x54, 0x8e, 0xab, 0x6a, + 0xc3, 0x56, 0xe1, 0x82, 0xca, 0x67, 0x4e, 0xf0, 0x10, 0x5a, 0x7c, 0x31, 0x13, 0xea, 0xd2, 0x5e, + 0x86, 0x66, 0xec, 0x22, 0xf2, 0x02, 0x5a, 0x34, 0xc3, 0x79, 0x6e, 0xd6, 0x3d, 0x4d, 0xd7, 0xde, + 0x57, 0xd0, 0xae, 0xf6, 0xb2, 0x0f, 0xbe, 0x1b, 0x02, 0x95, 0xfd, 0x7a, 0x3f, 0xbe, 0x4b, 0x90, + 0x13, 0x68, 0x57, 0xa7, 0x50, 0x5f, 0xcf, 0xb2, 0xea, 0xef, 0x7f, 0xf5, 0x60, 0xf3, 0x08, 0xb3, + 0x19, 0xce, 0x73, 0x76, 0x92, 0x9f, 0xe1, 0x5f, 0x9c, 0x1f, 0x81, 0x4f, 0xa5, 0x1c, 0x33, 0x9e, + 0x63, 0x66, 0x17, 0xd8, 0x89, 0x3b, 0x54, 0xca, 0xe3, 0x22, 0x26, 0x87, 0xb0, 0x93, 0x38, 0x54, + 0xa9, 0x28, 0xb6, 0xd8, 0x18, 0xf8, 0xf1, 0x76, 0x95, 0xb6, 0x3a, 0x4d, 0x0e, 0x60, 0x47, 0x52, + 0x6d, 0xc6, 0x7c, 0xc1, 0x93, 0xf1, 0x44, 0x62, 0x32, 0x75, 0x2b, 0xdd, 0x2a, 0xd2, 0xcf, 0x17, + 0x3c, 0x19, 0x15, 0xc9, 0xd1, 0xeb, 0x6f, 0xcb, 0xd0, 0xbb, 0x5a, 0x86, 0xde, 0xf5, 0x32, 0xf4, + 0x7e, 0x2d, 0x43, 0xef, 0xcb, 0x6d, 0x58, 0xbb, 0xbe, 0x0d, 0x6b, 0x3f, 0x6e, 0xc3, 0xda, 0x87, + 0xe1, 0xca, 0xb0, 0xaf, 0x84, 0xa2, 0x47, 0xa8, 0x78, 0xa4, 0xf9, 0x94, 0x8a, 0x68, 0x71, 0xff, + 0xf1, 0xb1, 0x83, 0x4f, 0x5a, 0xf6, 0xb1, 0x78, 0xfa, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x77, 0xc0, + 0x85, 0x48, 0x9e, 0x04, 0x00, 0x00, } func (this *StakingPool) Equal(that interface{}) bool { @@ -480,6 +490,9 @@ func (this *CompoundInfo) Equal(that interface{}) bool { return false } } + if this.LastExecBlock != that1.LastExecBlock { + return false + } return true } func (m *StakingPool) Marshal() (dAtA []byte, err error) { @@ -714,6 +727,11 @@ func (m *CompoundInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.LastExecBlock != 0 { + i = encodeVarintMultistaking(dAtA, i, uint64(m.LastExecBlock)) + i-- + dAtA[i] = 0x20 + } if len(m.CompoundDenoms) > 0 { for iNdEx := len(m.CompoundDenoms) - 1; iNdEx >= 0; iNdEx-- { i -= len(m.CompoundDenoms[iNdEx]) @@ -862,6 +880,9 @@ func (m *CompoundInfo) Size() (n int) { n += 1 + l + sovMultistaking(uint64(l)) } } + if m.LastExecBlock != 0 { + n += 1 + sovMultistaking(uint64(m.LastExecBlock)) + } return n } @@ -1587,6 +1608,25 @@ func (m *CompoundInfo) Unmarshal(dAtA []byte) error { } m.CompoundDenoms = append(m.CompoundDenoms, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field LastExecBlock", wireType) + } + m.LastExecBlock = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowMultistaking + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.LastExecBlock |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipMultistaking(dAtA[iNdEx:])