From 1059bce87ed3e7f871aab95163391d6ef0f219a5 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Fri, 14 Jul 2023 12:35:19 -0700 Subject: [PATCH] [Chore] Add amino name for tx msgs (backport #5784) (#5787) * [Chore] Add amino name for tx msgs (#5784) * updated amino name * updated (cherry picked from commit 1e3149f05a08c5af8d0df9b0392bb554dfc9bc78) * cleanup * more cleanup * fixed conflicts * rebased * Delete atom --------- Co-authored-by: Sishir Giri Co-authored-by: Dev Ojha --- proto/osmosis/concentrated-liquidity/tx.proto | 13 ++ proto/osmosis/poolmanager/v1beta1/tx.proto | 9 + proto/osmosis/protorev/v1beta1/tx.proto | 8 + proto/osmosis/superfluid/tx.proto | 6 + proto/osmosis/tokenfactory/v1beta1/tx.proto | 2 + x/concentrated-liquidity/types/tx.pb.go | 143 ++++++++------- x/poolmanager/types/tx.pb.go | 103 ++++++----- x/protorev/types/tx.pb.go | 112 ++++++------ x/superfluid/types/tx.pb.go | 167 +++++++++--------- x/tokenfactory/types/tx.pb.go | 103 +++++------ 10 files changed, 361 insertions(+), 305 deletions(-) diff --git a/proto/osmosis/concentrated-liquidity/tx.proto b/proto/osmosis/concentrated-liquidity/tx.proto index c2a4437cb1a..e044fa44c80 100644 --- a/proto/osmosis/concentrated-liquidity/tx.proto +++ b/proto/osmosis/concentrated-liquidity/tx.proto @@ -2,6 +2,7 @@ syntax = "proto3"; package osmosis.concentratedliquidity.v1beta1; import "gogoproto/gogo.proto"; +import "amino/amino.proto"; import "google/protobuf/timestamp.proto"; import "google/protobuf/duration.proto"; import "cosmos/base/v1beta1/coin.proto"; @@ -26,6 +27,8 @@ service Msg { // ===================== MsgCreatePosition message MsgCreatePosition { + option (amino.name) = "osmosis/cl-create-position"; + uint64 pool_id = 1 [ (gogoproto.moretags) = "yaml:\"pool_id\"" ]; string sender = 2 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; int64 lower_tick = 3 [ (gogoproto.moretags) = "yaml:\"lower_tick\"" ]; @@ -77,6 +80,8 @@ message MsgCreatePositionResponse { // ===================== MsgAddToPosition message MsgAddToPosition { + option (amino.name) = "osmosis/cl-add-to-position"; + uint64 position_id = 1 [ (gogoproto.moretags) = "yaml:\"position_id\"" ]; string sender = 2 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; // amount0 represents the amount of token0 willing to put in. @@ -127,6 +132,8 @@ message MsgAddToPositionResponse { // ===================== MsgWithdrawPosition message MsgWithdrawPosition { + option (amino.name) = "osmosis/cl-withdraw-position"; + uint64 position_id = 1 [ (gogoproto.moretags) = "yaml:\"position_id\"" ]; string sender = 2 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; string liquidity_amount = 3 [ @@ -151,6 +158,8 @@ message MsgWithdrawPositionResponse { // ===================== MsgCollectSpreadRewards message MsgCollectSpreadRewards { + option (amino.name) = "osmosis/cl-col-sp-rewards"; + repeated uint64 position_ids = 1 [ (gogoproto.moretags) = "yaml:\"position_ids\"" ]; string sender = 2 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; @@ -166,6 +175,8 @@ message MsgCollectSpreadRewardsResponse { // ===================== MsgCollectIncentives message MsgCollectIncentives { + option (amino.name) = "osmosis/cl-collect-incentives"; + repeated uint64 position_ids = 1 [ (gogoproto.moretags) = "yaml:\"position_ids\"" ]; string sender = 2 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; @@ -186,6 +197,8 @@ message MsgCollectIncentivesResponse { // ===================== MsgFungifyChargedPositions message MsgFungifyChargedPositions { + option (amino.name) = "osmosis/cl-fungify-charged-positions"; + repeated uint64 position_ids = 1 [ (gogoproto.moretags) = "yaml:\"position_ids\"" ]; string sender = 2 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; diff --git a/proto/osmosis/poolmanager/v1beta1/tx.proto b/proto/osmosis/poolmanager/v1beta1/tx.proto index 5fc166472c8..b2c369531e9 100644 --- a/proto/osmosis/poolmanager/v1beta1/tx.proto +++ b/proto/osmosis/poolmanager/v1beta1/tx.proto @@ -2,6 +2,7 @@ syntax = "proto3"; package osmosis.poolmanager.v1beta1; import "gogoproto/gogo.proto"; +import "amino/amino.proto"; import "cosmos/base/v1beta1/coin.proto"; import "osmosis/poolmanager/v1beta1/swap_route.proto"; @@ -20,6 +21,8 @@ service Msg { // ===================== MsgSwapExactAmountIn message MsgSwapExactAmountIn { + option (amino.name) = "osmosis/poolmanager/swap-exact-amount-in"; + string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; repeated SwapAmountInRoute routes = 2 [ (gogoproto.nullable) = false ]; cosmos.base.v1beta1.Coin token_in = 3 [ @@ -43,6 +46,8 @@ message MsgSwapExactAmountInResponse { // ===================== MsgSplitRouteSwapExactAmountIn message MsgSplitRouteSwapExactAmountIn { + option (amino.name) = "osmosis/poolmanager/split-amount-in"; + string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; repeated SwapAmountInSplitRoute routes = 2 [ (gogoproto.nullable) = false ]; string token_in_denom = 3 @@ -64,6 +69,8 @@ message MsgSplitRouteSwapExactAmountInResponse { // ===================== MsgSwapExactAmountOut message MsgSwapExactAmountOut { + option (amino.name) = "osmosis/poolmanager/swap-exact-amount-out"; + string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; repeated SwapAmountOutRoute routes = 2 [ (gogoproto.nullable) = false ]; string token_in_max_amount = 3 [ @@ -87,6 +94,8 @@ message MsgSwapExactAmountOutResponse { // ===================== MsgSplitRouteSwapExactAmountOut message MsgSplitRouteSwapExactAmountOut { + option (amino.name) = "osmosis/poolmanager/split-amount-out"; + string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; repeated SwapAmountOutSplitRoute routes = 2 [ (gogoproto.nullable) = false ]; string token_out_denom = 3 diff --git a/proto/osmosis/protorev/v1beta1/tx.proto b/proto/osmosis/protorev/v1beta1/tx.proto index 91a7dfdd7c7..1ecb47b4223 100644 --- a/proto/osmosis/protorev/v1beta1/tx.proto +++ b/proto/osmosis/protorev/v1beta1/tx.proto @@ -93,6 +93,8 @@ message MsgSetDeveloperAccountResponse {} // MsgSetPoolWeights defines the Msg/SetPoolWeights request type. message MsgSetPoolWeights { + option (amino.name) = "osmosis/MsgSetPoolWeights"; + // admin is the account that is authorized to set the pool weights. string admin = 1 [ (gogoproto.moretags) = "yaml:\"admin\"", @@ -110,6 +112,8 @@ message MsgSetPoolWeightsResponse {} // MsgSetMaxPoolPointsPerTx defines the Msg/SetMaxPoolPointsPerTx request type. message MsgSetMaxPoolPointsPerTx { + option (amino.name) = "osmosis/MsgSetMaxPoolPointsPerTx"; + // admin is the account that is authorized to set the max pool points per tx. string admin = 1 [ (gogoproto.moretags) = "yaml:\"admin\"", @@ -128,6 +132,8 @@ message MsgSetMaxPoolPointsPerTxResponse {} // MsgSetMaxPoolPointsPerBlock defines the Msg/SetMaxPoolPointsPerBlock request // type. message MsgSetMaxPoolPointsPerBlock { + option (amino.name) = "osmosis/MsgSetPoolWeights"; + // admin is the account that is authorized to set the max pool points per // block. string admin = 1 [ @@ -146,6 +152,8 @@ message MsgSetMaxPoolPointsPerBlockResponse {} // MsgSetBaseDenoms defines the Msg/SetBaseDenoms request type. message MsgSetBaseDenoms { + option (amino.name) = "osmosis/MsgSetBaseDenoms"; + // admin is the account that is authorized to set the base denoms. string admin = 1 [ (gogoproto.moretags) = "yaml:\"admin\"", diff --git a/proto/osmosis/superfluid/tx.proto b/proto/osmosis/superfluid/tx.proto index af547f7ff49..41149d7f065 100644 --- a/proto/osmosis/superfluid/tx.proto +++ b/proto/osmosis/superfluid/tx.proto @@ -118,6 +118,8 @@ message MsgLockAndSuperfluidDelegateResponse { uint64 ID = 1; } // MsgCreateFullRangePositionAndSuperfluidDelegate creates a full range position // in a concentrated liquidity pool, then superfluid delegates. message MsgCreateFullRangePositionAndSuperfluidDelegate { + option (amino.name) = "osmosis/full-range-and-sf-delegate"; + string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; repeated cosmos.base.v1beta1.Coin coins = 2 [ (gogoproto.nullable) = false, @@ -153,6 +155,8 @@ message MsgUnPoolWhitelistedPoolResponse { // ===================== // MsgUnlockAndMigrateSharesToFullRangeConcentratedPosition message MsgUnlockAndMigrateSharesToFullRangeConcentratedPosition { + option (amino.name) = "osmosis/unlock-and-migrate"; + string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; int64 lock_id = 2 [ (gogoproto.moretags) = "yaml:\"lock_id\"" ]; cosmos.base.v1beta1.Coin shares_to_migrate = 3 [ @@ -192,6 +196,8 @@ message MsgUnlockAndMigrateSharesToFullRangeConcentratedPositionResponse { // ===================== MsgAddToConcentratedLiquiditySuperfluidPosition message MsgAddToConcentratedLiquiditySuperfluidPosition { + option (amino.name) = "osmosis/add-to-cl-superfluid-position"; + uint64 position_id = 1 [ (gogoproto.moretags) = "yaml:\"position_id\"" ]; string sender = 2 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; cosmos.base.v1beta1.Coin token_desired0 = 3 [ diff --git a/proto/osmosis/tokenfactory/v1beta1/tx.proto b/proto/osmosis/tokenfactory/v1beta1/tx.proto index 5fabed3e301..643acc23fc4 100644 --- a/proto/osmosis/tokenfactory/v1beta1/tx.proto +++ b/proto/osmosis/tokenfactory/v1beta1/tx.proto @@ -118,6 +118,8 @@ message MsgSetDenomMetadata { message MsgSetDenomMetadataResponse {} message MsgForceTransfer { + option (amino.name) = "osmosis/tokenfactory/force-transfer"; + string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; cosmos.base.v1beta1.Coin amount = 2 [ (gogoproto.moretags) = "yaml:\"amount\"", diff --git a/x/concentrated-liquidity/types/tx.pb.go b/x/concentrated-liquidity/types/tx.pb.go index 39d2bea0911..b45ff2f6c78 100644 --- a/x/concentrated-liquidity/types/tx.pb.go +++ b/x/concentrated-liquidity/types/tx.pb.go @@ -8,6 +8,7 @@ import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" @@ -705,74 +706,80 @@ func init() { } var fileDescriptor_1f1fff802923d7db = []byte{ - // 1063 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x58, 0xcf, 0x6f, 0xe3, 0x44, - 0x14, 0xee, 0x34, 0x69, 0xaa, 0x4e, 0xe9, 0x8f, 0xb8, 0xa5, 0xf5, 0x66, 0x51, 0x5c, 0x8d, 0x04, - 0x04, 0xa1, 0xc6, 0x9b, 0x05, 0x01, 0x2a, 0x12, 0x6c, 0x53, 0xb4, 0x52, 0x90, 0x22, 0x56, 0xde, - 0x95, 0x90, 0x76, 0x91, 0x2c, 0xc7, 0x9e, 0xba, 0xa3, 0x26, 0x1e, 0xe3, 0x99, 0xb4, 0xdb, 0x03, - 0x12, 0x12, 0x27, 0x04, 0x07, 0x84, 0xc4, 0x11, 0xc4, 0x11, 0xf1, 0x3f, 0x70, 0xdf, 0x03, 0x87, - 0xbd, 0x20, 0x21, 0x0e, 0x06, 0xb5, 0x77, 0x10, 0xf9, 0x0b, 0x90, 0x7f, 0x8d, 0xb3, 0x4e, 0x0a, - 0x71, 0xda, 0x2d, 0x87, 0x3d, 0x25, 0x33, 0xf3, 0xbe, 0xef, 0xbd, 0xf9, 0xde, 0x9b, 0xe7, 0xb1, - 0xe1, 0xcb, 0x94, 0xf5, 0x28, 0x23, 0x4c, 0x35, 0xa9, 0x63, 0x62, 0x87, 0x7b, 0x06, 0xc7, 0xd6, - 0x76, 0x97, 0x7c, 0xdc, 0x27, 0x16, 0xe1, 0x27, 0x2a, 0x7f, 0x58, 0x77, 0x3d, 0xca, 0xa9, 0xf4, - 0x62, 0x6c, 0x58, 0x1f, 0x36, 0x14, 0x76, 0xf5, 0xa3, 0x46, 0x07, 0x73, 0xa3, 0x51, 0x59, 0xb7, - 0xa9, 0x4d, 0x43, 0x84, 0x1a, 0xfc, 0x8b, 0xc0, 0x15, 0xc5, 0xa6, 0xd4, 0xee, 0x62, 0x35, 0x1c, - 0x75, 0xfa, 0xfb, 0x2a, 0x27, 0x3d, 0xcc, 0xb8, 0xd1, 0x73, 0x63, 0x83, 0x6a, 0xd6, 0xc0, 0xea, - 0x7b, 0x06, 0x27, 0xd4, 0x49, 0xd6, 0xcd, 0xd0, 0xbd, 0xda, 0x31, 0x18, 0x56, 0x63, 0x5f, 0xaa, - 0x49, 0x49, 0xbc, 0x8e, 0x7e, 0x2a, 0xc2, 0x72, 0x9b, 0xd9, 0x7b, 0x1e, 0x36, 0x38, 0xbe, 0x43, - 0x19, 0x09, 0xb0, 0xd2, 0xab, 0x70, 0xde, 0xa5, 0xb4, 0xab, 0x13, 0x4b, 0x06, 0x5b, 0xa0, 0x56, - 0x6c, 0x4a, 0x03, 0x5f, 0x59, 0x3e, 0x31, 0x7a, 0xdd, 0x1d, 0x14, 0x2f, 0x20, 0xad, 0x14, 0xfc, - 0x6b, 0x59, 0xd2, 0x2b, 0xb0, 0xc4, 0xb0, 0x63, 0x61, 0x4f, 0x9e, 0xdd, 0x02, 0xb5, 0x85, 0x66, - 0x79, 0xe0, 0x2b, 0x4b, 0x91, 0x6d, 0x34, 0x8f, 0xb4, 0xd8, 0x40, 0x7a, 0x1d, 0xc2, 0x2e, 0x3d, - 0xc6, 0x9e, 0xce, 0x89, 0x79, 0x28, 0x17, 0xb6, 0x40, 0xad, 0xd0, 0x7c, 0x7e, 0xe0, 0x2b, 0xe5, - 0xc8, 0x3c, 0x5d, 0x43, 0xda, 0x42, 0x38, 0xb8, 0x47, 0xcc, 0xc3, 0x00, 0xd5, 0x77, 0xdd, 0x04, - 0x55, 0xcc, 0xa2, 0xd2, 0x35, 0xa4, 0x2d, 0x84, 0x83, 0x10, 0xc5, 0xe1, 0x0a, 0xa7, 0x87, 0xd8, - 0x61, 0xba, 0xeb, 0xd1, 0x23, 0x62, 0x61, 0x4b, 0x9e, 0xdb, 0x2a, 0xd4, 0x16, 0x6f, 0x5e, 0xab, - 0x47, 0x9a, 0xd4, 0x03, 0x4d, 0x12, 0xfd, 0xeb, 0x7b, 0x94, 0x38, 0xcd, 0x1b, 0x8f, 0x7c, 0x65, - 0xe6, 0xc7, 0xdf, 0x95, 0x9a, 0x4d, 0xf8, 0x41, 0xbf, 0x53, 0x37, 0x69, 0x4f, 0x8d, 0x05, 0x8c, - 0x7e, 0xb6, 0x99, 0x75, 0xa8, 0xf2, 0x13, 0x17, 0xb3, 0x10, 0xc0, 0xb4, 0xe5, 0xc8, 0xc7, 0x9d, - 0xd8, 0x85, 0x74, 0x04, 0xcb, 0xe1, 0x8c, 0xde, 0x23, 0x8e, 0x6e, 0xf4, 0x68, 0xdf, 0xe1, 0x37, - 0xe4, 0x52, 0xa8, 0xcb, 0xfb, 0x01, 0xf9, 0x6f, 0xbe, 0xf2, 0xd2, 0x04, 0xe4, 0x2d, 0x87, 0x0f, - 0x7c, 0x45, 0x8e, 0x36, 0x38, 0x42, 0x88, 0xb4, 0x68, 0x6b, 0x6d, 0xe2, 0xec, 0x46, 0x33, 0xe3, - 0xfc, 0x36, 0xe4, 0xf9, 0xcb, 0xf5, 0xdb, 0x18, 0xf1, 0xdb, 0x40, 0x7f, 0x17, 0xe0, 0xb5, 0x91, - 0xfa, 0xd1, 0x30, 0x73, 0xa9, 0xc3, 0xb0, 0xf4, 0x26, 0x5c, 0x74, 0xe3, 0xb9, 0xb4, 0x96, 0x36, - 0x06, 0xbe, 0x22, 0x25, 0xb5, 0x24, 0x16, 0x91, 0x06, 0x93, 0x51, 0xcb, 0x92, 0xee, 0xc3, 0xf9, - 0x44, 0xbc, 0xa8, 0xa8, 0x6e, 0xe5, 0xde, 0x44, 0x5c, 0xae, 0x42, 0xb2, 0x84, 0x30, 0xe5, 0x6e, - 0x84, 0x15, 0x78, 0x61, 0xee, 0x86, 0xe0, 0x6e, 0x48, 0xc7, 0xb0, 0x2c, 0x8e, 0xb6, 0x6e, 0x86, - 0xa2, 0x04, 0x65, 0x97, 0x37, 0x0d, 0xef, 0x61, 0x33, 0x4d, 0xc3, 0x08, 0x21, 0xd2, 0x56, 0xc5, - 0x5c, 0x24, 0xbc, 0x95, 0x39, 0x59, 0xa5, 0xa9, 0x4e, 0xd6, 0xfc, 0x64, 0x27, 0x0b, 0x7d, 0x5f, - 0x84, 0xab, 0x6d, 0x66, 0xef, 0x5a, 0xd6, 0x3d, 0x2a, 0x5a, 0xc6, 0xd4, 0xa9, 0xce, 0xd1, 0x3e, - 0x1e, 0xa4, 0x55, 0x11, 0x65, 0x6e, 0x37, 0x77, 0xe6, 0x56, 0x86, 0x33, 0xa7, 0x0f, 0x97, 0xc5, - 0x83, 0xb4, 0x2c, 0x8a, 0x97, 0x42, 0x3e, 0x5c, 0x17, 0x63, 0xdb, 0xc2, 0xdc, 0xff, 0xd4, 0x16, - 0x4a, 0x4f, 0xbf, 0x2d, 0x7c, 0x31, 0x0b, 0xe5, 0x6c, 0x89, 0x3c, 0xb3, 0x5d, 0x01, 0xfd, 0x05, - 0xe0, 0x5a, 0x9b, 0xd9, 0x1f, 0x12, 0x7e, 0x60, 0x79, 0xc6, 0xf1, 0x95, 0x9e, 0x19, 0x0e, 0xd3, - 0x66, 0x11, 0x27, 0x2c, 0xde, 0x60, 0x2b, 0x77, 0x43, 0xda, 0xcc, 0x36, 0xa4, 0x88, 0x0f, 0x69, - 0x2b, 0x62, 0x2a, 0x2a, 0x00, 0xf4, 0x0b, 0x80, 0xd7, 0xc7, 0xec, 0x58, 0x94, 0xc0, 0x50, 0x26, - 0xc1, 0x53, 0xcc, 0xe4, 0xec, 0x65, 0x67, 0xf2, 0x53, 0x00, 0x37, 0x83, 0xc7, 0x1d, 0xed, 0x76, - 0xb1, 0xc9, 0xef, 0xba, 0x1e, 0x36, 0x2c, 0x0d, 0x1f, 0x1b, 0x9e, 0xc5, 0xa4, 0x1d, 0xf8, 0xdc, - 0x50, 0xc2, 0x98, 0x0c, 0xb6, 0x0a, 0xb5, 0x62, 0x73, 0x73, 0xe0, 0x2b, 0x6b, 0x23, 0xe9, 0x64, - 0x48, 0x5b, 0x4c, 0xf3, 0xc9, 0x72, 0x24, 0x14, 0xfd, 0x0c, 0xa0, 0x72, 0x4e, 0x08, 0x42, 0xde, - 0x1f, 0x00, 0x94, 0xcd, 0xc8, 0x00, 0x5b, 0x3a, 0x0b, 0x6d, 0x74, 0x2f, 0x32, 0x0a, 0xe3, 0xfa, - 0xd7, 0x5b, 0xd0, 0xdd, 0x40, 0xaf, 0x81, 0xaf, 0x28, 0x51, 0x00, 0xe7, 0x11, 0xa1, 0x5c, 0x17, - 0xa5, 0x0d, 0x41, 0xf3, 0x44, 0xc8, 0xe8, 0x13, 0xb8, 0x9e, 0xee, 0xa6, 0x15, 0xde, 0x90, 0xc9, - 0x11, 0xbe, 0x32, 0x35, 0xfd, 0x59, 0xf8, 0xc2, 0x38, 0xff, 0x42, 0xca, 0x6f, 0x01, 0x5c, 0x4f, - 0x15, 0x20, 0xc2, 0xe0, 0xbf, 0x65, 0xfc, 0x20, 0x96, 0xf1, 0x7a, 0x56, 0xc6, 0x94, 0x24, 0x9f, - 0x84, 0x6b, 0x82, 0x62, 0x48, 0xa7, 0x20, 0xbe, 0x7d, 0xea, 0xed, 0x63, 0x92, 0x89, 0x6f, 0x36, - 0x67, 0x7c, 0xe3, 0x48, 0x72, 0xc6, 0x27, 0x28, 0xd2, 0xf8, 0xd0, 0x67, 0x00, 0x56, 0xda, 0xcc, - 0xbe, 0xdd, 0x77, 0x6c, 0xb2, 0x7f, 0xb2, 0x77, 0x60, 0x78, 0x36, 0xb6, 0x92, 0x7e, 0x70, 0x65, - 0x69, 0x3e, 0x80, 0xe8, 0xfc, 0x20, 0x44, 0xae, 0x9b, 0x70, 0xc5, 0xc1, 0xc7, 0xfa, 0x68, 0x4f, - 0xae, 0x0c, 0x7c, 0x65, 0x23, 0x62, 0xce, 0x18, 0x20, 0x6d, 0xc9, 0xc1, 0xa2, 0xbf, 0xb5, 0xac, - 0x9b, 0x7f, 0xce, 0xc1, 0x42, 0x9b, 0xd9, 0xd2, 0x97, 0x00, 0x2e, 0x67, 0xde, 0xaa, 0xde, 0xaa, - 0x4f, 0xf4, 0x2a, 0x58, 0x1f, 0xb9, 0x4f, 0x57, 0x6e, 0x4d, 0x8b, 0x14, 0x5b, 0xfb, 0x1a, 0xc0, - 0xd5, 0x91, 0xe7, 0xcf, 0xce, 0xe4, 0xb4, 0x59, 0x6c, 0xa5, 0x39, 0x3d, 0x56, 0x04, 0xf5, 0x39, - 0x80, 0x4b, 0x99, 0x5b, 0xe4, 0xe4, 0xac, 0x4f, 0x00, 0x2b, 0xef, 0x4e, 0x09, 0x14, 0xb1, 0x7c, - 0x07, 0xe0, 0xfa, 0xd8, 0xb6, 0xfe, 0x4e, 0x0e, 0xed, 0xc7, 0xe0, 0x2b, 0xb7, 0x2f, 0x86, 0x17, - 0x01, 0x7e, 0x03, 0x60, 0x79, 0xb4, 0x4d, 0xbe, 0x9d, 0x9b, 0x3d, 0x05, 0x57, 0xf6, 0x2e, 0x00, - 0x4e, 0xe2, 0x6a, 0x7e, 0xf4, 0xe8, 0xb4, 0x0a, 0x1e, 0x9f, 0x56, 0xc1, 0x1f, 0xa7, 0x55, 0xf0, - 0xd5, 0x59, 0x75, 0xe6, 0xf1, 0x59, 0x75, 0xe6, 0xd7, 0xb3, 0xea, 0xcc, 0xfd, 0xe6, 0x50, 0xe7, - 0x88, 0x1d, 0x6d, 0x77, 0x8d, 0x0e, 0x4b, 0x06, 0xea, 0x51, 0xe3, 0x0d, 0xf5, 0xe1, 0xb9, 0x1f, - 0x50, 0x82, 0xce, 0xd2, 0x29, 0x85, 0x9f, 0x29, 0x5e, 0xfb, 0x27, 0x00, 0x00, 0xff, 0xff, 0xb7, - 0x80, 0xf6, 0x45, 0x6f, 0x11, 0x00, 0x00, + // 1156 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x58, 0x4d, 0x6f, 0xe3, 0x44, + 0x18, 0xae, 0x93, 0x34, 0x55, 0xa7, 0xf4, 0x23, 0x6e, 0x69, 0xd3, 0xec, 0x12, 0x97, 0x11, 0x1f, + 0x59, 0x50, 0xe2, 0xcd, 0x82, 0x00, 0x05, 0x09, 0xb6, 0x29, 0x5a, 0x29, 0x48, 0x11, 0x2b, 0xef, + 0x4a, 0x48, 0xbb, 0x48, 0x91, 0x63, 0x4f, 0xdd, 0x51, 0x13, 0x8f, 0xf1, 0x38, 0xcd, 0xf6, 0x27, + 0xf0, 0x71, 0x40, 0x2b, 0x71, 0x04, 0xc1, 0x0d, 0x71, 0x40, 0xfc, 0x05, 0x6e, 0x7b, 0xe0, 0xb0, + 0x17, 0x24, 0xc4, 0xc1, 0xa0, 0xf6, 0xc0, 0x0d, 0x89, 0xfc, 0x02, 0x64, 0x8f, 0x3d, 0x76, 0x9d, + 0x14, 0xea, 0xb4, 0x74, 0x0f, 0x7b, 0x69, 0xe3, 0x99, 0xf7, 0x7d, 0xe6, 0x99, 0xe7, 0x7d, 0xe6, + 0x1d, 0x27, 0xe0, 0x65, 0x42, 0xfb, 0x84, 0x62, 0x2a, 0x6b, 0xc4, 0xd4, 0x90, 0xe9, 0xd8, 0xaa, + 0x83, 0xf4, 0x6a, 0x0f, 0x7f, 0x3c, 0xc0, 0x3a, 0x76, 0x0e, 0x65, 0xe7, 0x41, 0xcd, 0xb2, 0x89, + 0x43, 0xc4, 0x17, 0x83, 0xc0, 0x5a, 0x3c, 0x90, 0xc7, 0xd5, 0x0e, 0xea, 0x5d, 0xe4, 0xa8, 0xf5, + 0xd2, 0x9a, 0x41, 0x0c, 0xe2, 0x67, 0xc8, 0xde, 0x27, 0x96, 0x5c, 0x2a, 0xa8, 0x7d, 0x6c, 0x12, + 0xd9, 0xff, 0x1b, 0x0c, 0x49, 0x06, 0x21, 0x46, 0x0f, 0xc9, 0xfe, 0x53, 0x77, 0xb0, 0x2b, 0x3b, + 0xb8, 0x8f, 0xa8, 0xa3, 0xf6, 0xad, 0x20, 0xa0, 0x9c, 0x0c, 0xd0, 0x07, 0xb6, 0xea, 0x60, 0x62, + 0x86, 0xf3, 0x9a, 0xcf, 0x48, 0xee, 0xaa, 0x14, 0xc9, 0xc1, 0xf2, 0xb2, 0x46, 0x70, 0x30, 0x0f, + 0xdd, 0x1c, 0x28, 0xb4, 0xa9, 0xb1, 0x63, 0x23, 0xd5, 0x41, 0xb7, 0x09, 0xc5, 0x5e, 0xae, 0xf8, + 0x2a, 0x98, 0xb3, 0x08, 0xe9, 0x75, 0xb0, 0x5e, 0x14, 0xb6, 0x84, 0x4a, 0xae, 0x29, 0x8e, 0x5c, + 0x69, 0xe9, 0x50, 0xed, 0xf7, 0x1a, 0x30, 0x98, 0x80, 0x4a, 0xde, 0xfb, 0xd4, 0xd2, 0xc5, 0x6b, + 0x20, 0x4f, 0x91, 0xa9, 0x23, 0xbb, 0x98, 0xd9, 0x12, 0x2a, 0xf3, 0xcd, 0xc2, 0xc8, 0x95, 0x16, + 0x59, 0x2c, 0x1b, 0x87, 0x4a, 0x10, 0x20, 0xbe, 0x0e, 0x40, 0x8f, 0x0c, 0x91, 0xdd, 0x71, 0xb0, + 0xb6, 0x5f, 0xcc, 0x6e, 0x09, 0x95, 0x6c, 0xf3, 0xd9, 0x91, 0x2b, 0x15, 0x58, 0x78, 0x34, 0x07, + 0x95, 0x79, 0xff, 0xe1, 0x2e, 0xd6, 0xf6, 0xbd, 0xac, 0x81, 0x65, 0x85, 0x59, 0xb9, 0x64, 0x56, + 0x34, 0x07, 0x95, 0x79, 0xff, 0xc1, 0xcf, 0x72, 0xc0, 0xb2, 0x43, 0xf6, 0x91, 0x49, 0x3b, 0x96, + 0x4d, 0x0e, 0xb0, 0x8e, 0xf4, 0xe2, 0xec, 0x56, 0xb6, 0xb2, 0x70, 0x63, 0xb3, 0xc6, 0x34, 0xa9, + 0x79, 0x9a, 0x84, 0x25, 0xa9, 0xed, 0x10, 0x6c, 0x36, 0xaf, 0x3f, 0x72, 0xa5, 0x99, 0xef, 0x7f, + 0x97, 0x2a, 0x06, 0x76, 0xf6, 0x06, 0xdd, 0x9a, 0x46, 0xfa, 0x72, 0x20, 0x20, 0xfb, 0x57, 0xa5, + 0xfa, 0xbe, 0xec, 0x1c, 0x5a, 0x88, 0xfa, 0x09, 0x54, 0x59, 0x62, 0x6b, 0xdc, 0x0e, 0x96, 0x10, + 0x0f, 0x40, 0xc1, 0x1f, 0xe9, 0xf4, 0xb1, 0xd9, 0x51, 0xfb, 0x64, 0x60, 0x3a, 0xd7, 0x8b, 0x79, + 0x5f, 0x97, 0xf7, 0x3d, 0xf0, 0xdf, 0x5c, 0xe9, 0xa5, 0x33, 0x80, 0xb7, 0x4c, 0x67, 0xe4, 0x4a, + 0x45, 0xb6, 0xc1, 0x31, 0x40, 0xa8, 0xb0, 0xad, 0xb5, 0xb1, 0xb9, 0xcd, 0x46, 0x26, 0xad, 0x5b, + 0x2f, 0xce, 0x5d, 0xec, 0xba, 0xf5, 0xb1, 0x75, 0xeb, 0x0d, 0xe9, 0xd3, 0x3f, 0x7f, 0x7c, 0xa5, + 0xc4, 0x8f, 0x47, 0xaf, 0xaa, 0xf9, 0x4e, 0xaa, 0x5a, 0x81, 0x95, 0xe0, 0xdf, 0x59, 0xb0, 0x39, + 0x66, 0x30, 0x05, 0x51, 0x8b, 0x98, 0x14, 0x89, 0x6f, 0x82, 0x85, 0x30, 0x32, 0x32, 0xdb, 0xfa, + 0xc8, 0x95, 0xc4, 0xd0, 0x6c, 0x7c, 0x12, 0x2a, 0x20, 0x7c, 0x6a, 0xe9, 0xe2, 0x3d, 0x30, 0x17, + 0xaa, 0xcb, 0x5c, 0x77, 0x33, 0xf5, 0x2e, 0x03, 0x3f, 0x73, 0x4d, 0x43, 0xc0, 0x08, 0xbb, 0xee, + 0x5b, 0xf4, 0xdc, 0xd8, 0x75, 0x8e, 0x5d, 0x17, 0x87, 0xa0, 0xc0, 0xdb, 0x41, 0x87, 0x69, 0xe5, + 0xf9, 0x32, 0x6d, 0x9d, 0xde, 0x43, 0x5a, 0x54, 0xa7, 0x31, 0x40, 0xa8, 0xac, 0xf0, 0x31, 0x26, + 0xbc, 0x9e, 0x38, 0x7a, 0xf9, 0xa9, 0x8e, 0xde, 0xdc, 0xd9, 0x8e, 0x1e, 0xfc, 0x29, 0x07, 0x56, + 0xda, 0xd4, 0xd8, 0xd6, 0xf5, 0xbb, 0x84, 0xf7, 0x94, 0xa9, 0x4b, 0x9d, 0xa2, 0xbf, 0xdc, 0x8f, + 0x5c, 0xc1, 0x2a, 0xb7, 0x9d, 0xba, 0x72, 0xcb, 0xf1, 0xca, 0x75, 0xe2, 0xb6, 0xb8, 0x1f, 0xd9, + 0x22, 0x77, 0x21, 0xe0, 0x71, 0x5f, 0x4c, 0xec, 0x1b, 0xb3, 0x4f, 0xa8, 0x6f, 0xe4, 0x9f, 0x40, + 0xdf, 0x50, 0x75, 0xbd, 0xea, 0x90, 0xa8, 0x6f, 0x7c, 0x96, 0x01, 0xc5, 0xa4, 0x87, 0x9e, 0xda, + 0xb6, 0x01, 0x1f, 0x66, 0xc0, 0x6a, 0x9b, 0x1a, 0x1f, 0x62, 0x67, 0x4f, 0xb7, 0xd5, 0xe1, 0xa5, + 0x1e, 0x2a, 0x07, 0x44, 0xdd, 0x24, 0xa8, 0x68, 0xb0, 0xc1, 0x56, 0xea, 0x8e, 0xb5, 0x91, 0xec, + 0x58, 0x0c, 0x0f, 0x2a, 0xcb, 0x7c, 0x88, 0x39, 0xa4, 0xf1, 0xbc, 0x67, 0x90, 0xab, 0x31, 0x83, + 0x0c, 0x83, 0xbd, 0x47, 0x16, 0xf9, 0x45, 0x00, 0x57, 0x26, 0x88, 0xc2, 0x5d, 0x12, 0x2b, 0xb6, + 0xf0, 0x3f, 0x16, 0x3b, 0x73, 0xd1, 0xc5, 0xfe, 0x46, 0x00, 0x1b, 0xde, 0x95, 0x49, 0x7a, 0x3d, + 0xa4, 0x39, 0x77, 0x2c, 0x1b, 0xa9, 0xba, 0x82, 0x86, 0xaa, 0xad, 0x53, 0xb1, 0x01, 0x9e, 0x89, + 0xd5, 0x94, 0x16, 0x85, 0xad, 0x6c, 0x25, 0xd7, 0xdc, 0x18, 0xb9, 0xd2, 0xea, 0x58, 0xc5, 0x29, + 0x54, 0x16, 0xa2, 0x92, 0xd3, 0x14, 0x35, 0x6f, 0x94, 0x3d, 0xf5, 0x37, 0xe3, 0xd7, 0x3a, 0xe9, + 0x55, 0xa9, 0x55, 0xb5, 0x19, 0x0d, 0xf8, 0xb3, 0x00, 0xa4, 0x53, 0x28, 0x72, 0xf9, 0xbf, 0x13, + 0x40, 0x51, 0x63, 0x01, 0x48, 0xef, 0x50, 0x3f, 0xa6, 0x13, 0x00, 0xf8, 0xbc, 0xff, 0xf5, 0x55, + 0xec, 0x8e, 0xa7, 0xe7, 0xc8, 0x95, 0x24, 0x46, 0xf0, 0x34, 0x20, 0x98, 0xea, 0x6d, 0x6d, 0x9d, + 0xc3, 0x9c, 0xa0, 0x0c, 0xbf, 0x15, 0xc0, 0x5a, 0xb4, 0x9d, 0x96, 0xff, 0xea, 0x8e, 0x0f, 0xd0, + 0xa5, 0xc9, 0x0d, 0x3d, 0xb9, 0x9f, 0x3b, 0x29, 0xb7, 0xc7, 0xa4, 0x8a, 0x39, 0x15, 0xe8, 0x66, + 0xc0, 0xd5, 0x49, 0x1c, 0xb9, 0xde, 0x5f, 0x09, 0x60, 0x2d, 0x92, 0x29, 0xca, 0xfc, 0x6f, 0xad, + 0x3f, 0x08, 0xb4, 0xbe, 0x92, 0xd4, 0x3a, 0xb6, 0x7c, 0x2a, 0x9d, 0x57, 0x39, 0x44, 0x4c, 0x4b, + 0x8f, 0xdf, 0x2e, 0xb1, 0x77, 0x11, 0x4e, 0xf0, 0xcb, 0xa4, 0xe4, 0x37, 0x09, 0x24, 0x25, 0x3f, + 0x0e, 0x11, 0xf1, 0x83, 0x3f, 0x08, 0xa0, 0xd4, 0xa6, 0xc6, 0xad, 0x81, 0x69, 0xe0, 0xdd, 0xc3, + 0x9d, 0x3d, 0xd5, 0x36, 0x90, 0x1e, 0x36, 0x95, 0x4b, 0xb3, 0xc2, 0x35, 0xcf, 0x0a, 0x2f, 0xc4, + 0xac, 0xb0, 0xcb, 0xf8, 0x54, 0x35, 0x46, 0x88, 0xb7, 0x3f, 0x0a, 0xf7, 0x00, 0x3c, 0x9d, 0x2f, + 0xb7, 0x45, 0x13, 0x2c, 0x9b, 0x68, 0xd8, 0x19, 0xbf, 0x26, 0x4a, 0x23, 0x57, 0x5a, 0x67, 0x24, + 0x12, 0x01, 0x50, 0x59, 0x34, 0x11, 0xef, 0xa7, 0x2d, 0xfd, 0xc6, 0x5f, 0xb3, 0x20, 0xdb, 0xa6, + 0x86, 0xf8, 0xb9, 0x00, 0x96, 0x12, 0x5f, 0x15, 0xdf, 0xaa, 0x9d, 0xe9, 0x2b, 0x6f, 0x6d, 0xec, + 0x3b, 0x40, 0xe9, 0xe6, 0xb4, 0x99, 0x7c, 0x6b, 0x0f, 0x05, 0xb0, 0x32, 0x76, 0x25, 0x36, 0xce, + 0x0e, 0x9b, 0xcc, 0x2d, 0x35, 0xa7, 0xcf, 0xe5, 0xa4, 0x3e, 0x11, 0xc0, 0x62, 0xe2, 0xcd, 0xf7, + 0xec, 0xa8, 0x27, 0x12, 0x4b, 0xef, 0x4e, 0x99, 0xc8, 0xb9, 0x7c, 0x2d, 0x80, 0xb5, 0x89, 0xd7, + 0xc8, 0x3b, 0x29, 0xb4, 0x9f, 0x90, 0x5f, 0xba, 0x75, 0xbe, 0x7c, 0x4e, 0xf0, 0x4b, 0x01, 0x14, + 0xc6, 0xbb, 0xee, 0xdb, 0xa9, 0xd1, 0xa3, 0xe4, 0xd2, 0xce, 0x39, 0x92, 0x43, 0x5e, 0xcd, 0x8f, + 0x1e, 0x1d, 0x95, 0x85, 0xc7, 0x47, 0x65, 0xe1, 0x8f, 0xa3, 0xb2, 0xf0, 0xc5, 0x71, 0x79, 0xe6, + 0xf1, 0x71, 0x79, 0xe6, 0xd7, 0xe3, 0xf2, 0xcc, 0xbd, 0x66, 0xac, 0xc9, 0x04, 0x0b, 0x55, 0x7b, + 0x6a, 0x97, 0x86, 0x0f, 0xf2, 0x41, 0xfd, 0x0d, 0xf9, 0xc1, 0xa9, 0x3f, 0x14, 0x79, 0x4d, 0xa8, + 0x9b, 0xf7, 0x7f, 0x7b, 0x79, 0xed, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0e, 0x3c, 0x64, 0xbe, + 0x57, 0x12, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/poolmanager/types/tx.pb.go b/x/poolmanager/types/tx.pb.go index 2b7f074682a..7be2a949c7a 100644 --- a/x/poolmanager/types/tx.pb.go +++ b/x/poolmanager/types/tx.pb.go @@ -8,6 +8,7 @@ import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" @@ -446,55 +447,59 @@ func init() { } var fileDescriptor_acd130b4825d67dc = []byte{ - // 753 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0xdf, 0x4e, 0xd3, 0x50, - 0x1c, 0xde, 0x19, 0x0b, 0xc2, 0x41, 0xfe, 0x55, 0x90, 0x51, 0xb0, 0x25, 0x8d, 0x41, 0x4c, 0xa4, - 0xcd, 0x86, 0xd1, 0x88, 0x26, 0xc6, 0x81, 0x89, 0x4b, 0x68, 0x26, 0xf5, 0xce, 0x9b, 0xa5, 0x1b, - 0xcd, 0x6c, 0x58, 0xcf, 0x69, 0x76, 0x4e, 0x61, 0xc4, 0xc4, 0xc4, 0xc4, 0x07, 0xd0, 0x78, 0x69, - 0x8c, 0x89, 0x4f, 0xc3, 0x25, 0x77, 0x1a, 0x2f, 0x2a, 0xc2, 0x1b, 0xec, 0x09, 0x4c, 0xdb, 0xd3, - 0xb2, 0x95, 0x51, 0xa8, 0x24, 0x72, 0xd5, 0xf6, 0xf4, 0xf7, 0xe7, 0xfb, 0x7d, 0xdf, 0x77, 0x4e, - 0x0b, 0x6f, 0x63, 0x62, 0x61, 0x62, 0x12, 0xc5, 0xc6, 0xb8, 0x69, 0xe9, 0x48, 0x6f, 0x18, 0x2d, - 0x65, 0xa7, 0x50, 0x33, 0xa8, 0x5e, 0x50, 0x68, 0x5b, 0xb6, 0x5b, 0x98, 0x62, 0x6e, 0x8e, 0x45, - 0xc9, 0x5d, 0x51, 0x32, 0x8b, 0xe2, 0xa7, 0x1a, 0xb8, 0x81, 0xfd, 0x38, 0xc5, 0xbb, 0x0b, 0x52, - 0x78, 0xa1, 0xee, 0xe7, 0x28, 0x35, 0x9d, 0x18, 0x51, 0xc1, 0x3a, 0x36, 0x11, 0x7b, 0x7f, 0x2f, - 0xa9, 0x31, 0xd9, 0xd5, 0xed, 0x6a, 0x0b, 0x3b, 0xd4, 0x08, 0xa2, 0x25, 0x37, 0x0b, 0xa7, 0x54, - 0xd2, 0x78, 0xb5, 0xab, 0xdb, 0xcf, 0xdb, 0x7a, 0x9d, 0x3e, 0xb3, 0xb0, 0x83, 0x68, 0x19, 0x71, - 0x77, 0xe1, 0x20, 0x31, 0xd0, 0x96, 0xd1, 0xca, 0x83, 0x05, 0xb0, 0x34, 0x5c, 0x9a, 0xec, 0xb8, - 0xe2, 0xe8, 0x9e, 0x6e, 0x35, 0x57, 0xa5, 0x60, 0x5d, 0xd2, 0x58, 0x00, 0xb7, 0x01, 0x07, 0xfd, - 0x92, 0x24, 0x9f, 0x5d, 0x18, 0x58, 0x1a, 0x29, 0xca, 0x72, 0xc2, 0x54, 0xb2, 0xd7, 0x2a, 0xec, - 0xa2, 0x79, 0x69, 0xa5, 0xdc, 0xbe, 0x2b, 0x66, 0x34, 0x56, 0x83, 0x53, 0xe1, 0x10, 0xc5, 0xdb, - 0x06, 0xaa, 0x9a, 0x28, 0x3f, 0xb0, 0x00, 0x96, 0x46, 0x8a, 0xb3, 0x72, 0x30, 0xb2, 0xec, 0x8d, - 0x1c, 0xd5, 0x59, 0xc3, 0x26, 0x2a, 0xcd, 0x78, 0xa9, 0x1d, 0x57, 0x1c, 0x0f, 0x90, 0x85, 0x89, - 0x92, 0x76, 0xcd, 0xbf, 0x2d, 0x23, 0xee, 0x1d, 0x9c, 0x0a, 0x56, 0xb1, 0x43, 0xab, 0x96, 0x89, - 0xaa, 0xba, 0xdf, 0x3b, 0x9f, 0xf3, 0xa7, 0x52, 0xbd, 0xfc, 0x5f, 0xae, 0xb8, 0xd8, 0x30, 0xe9, - 0x1b, 0xa7, 0x26, 0xd7, 0xb1, 0xa5, 0x30, 0x7e, 0x83, 0xcb, 0x32, 0xd9, 0xda, 0x56, 0xe8, 0x9e, - 0x6d, 0x10, 0xb9, 0x8c, 0x68, 0xc7, 0x15, 0xe7, 0xba, 0x3b, 0xf5, 0xd6, 0x94, 0xb4, 0x49, 0x7f, - 0xb9, 0xe2, 0x50, 0xd5, 0x44, 0xc1, 0x8c, 0xd2, 0x67, 0x00, 0xe7, 0xfb, 0x11, 0xac, 0x19, 0xc4, - 0xc6, 0x88, 0x18, 0x1c, 0x81, 0x13, 0x27, 0xc5, 0x18, 0xb8, 0x80, 0xf2, 0x72, 0x6a, 0x70, 0x33, - 0x71, 0x70, 0x21, 0xb0, 0xb1, 0x10, 0x18, 0x43, 0xf5, 0x3b, 0x0b, 0x05, 0x0f, 0x95, 0xdd, 0x34, - 0xa9, 0x2f, 0xc2, 0xa5, 0x0c, 0xb0, 0x19, 0x33, 0xc0, 0xca, 0x85, 0x0d, 0x70, 0x02, 0x20, 0xe6, - 0x82, 0xa7, 0x70, 0x2c, 0x14, 0xb3, 0xba, 0x65, 0x20, 0x6c, 0xf9, 0x5e, 0x18, 0x2e, 0xcd, 0x76, - 0x5c, 0x71, 0xba, 0x57, 0xec, 0xe0, 0xbd, 0xa4, 0x5d, 0x67, 0x92, 0xaf, 0x7b, 0x8f, 0x57, 0xae, - 0xfb, 0x57, 0x00, 0x17, 0x93, 0x19, 0xbe, 0x5a, 0x07, 0x1c, 0x66, 0xe1, 0xf4, 0x69, 0x5f, 0x56, - 0x1c, 0x9a, 0x46, 0x78, 0x35, 0x26, 0xbc, 0x72, 0x41, 0xe1, 0x2b, 0x4e, 0x5f, 0xd1, 0xdf, 0xc2, - 0x1b, 0x91, 0xa8, 0x96, 0xde, 0x0e, 0xb9, 0x08, 0x94, 0xdf, 0x48, 0xcd, 0x05, 0x1f, 0xf3, 0xc9, - 0x49, 0x49, 0x49, 0x9b, 0x60, 0x66, 0x51, 0xf5, 0x76, 0x00, 0x89, 0x7b, 0x09, 0x87, 0x23, 0xd6, - 0x7c, 0x97, 0x24, 0x1e, 0x3c, 0x79, 0x76, 0xf0, 0x4c, 0xc4, 0xf8, 0x96, 0xb4, 0xa1, 0x90, 0x68, - 0xe9, 0x13, 0x80, 0xb7, 0xfa, 0x52, 0x1c, 0x29, 0x6f, 0xc3, 0xf1, 0x08, 0x5d, 0x8f, 0xf0, 0x2f, - 0x52, 0x0f, 0x7b, 0x33, 0x36, 0x6c, 0x38, 0xe8, 0x28, 0x1b, 0x94, 0xc9, 0xfe, 0x27, 0x0b, 0xc5, - 0x24, 0x5b, 0xa6, 0x34, 0x80, 0x16, 0x33, 0xc0, 0xfd, 0x8b, 0x1b, 0xe0, 0xcc, 0xad, 0x5f, 0x0a, - 0x49, 0xf1, 0xec, 0xdb, 0xbd, 0xf7, 0xf9, 0xf8, 0x98, 0x51, 0x40, 0x38, 0x66, 0xc5, 0xa1, 0xc1, - 0xee, 0x3f, 0xc3, 0x49, 0xb9, 0xff, 0xe1, 0x24, 0xe9, 0x0b, 0x80, 0x77, 0xce, 0xe1, 0xf8, 0xea, - 0x1c, 0x50, 0xfc, 0x91, 0x83, 0x03, 0x2a, 0x69, 0x70, 0xef, 0x01, 0x9c, 0x3c, 0x7d, 0xea, 0x17, - 0x12, 0x05, 0xec, 0xf7, 0x21, 0xe3, 0x1f, 0xa5, 0x4e, 0x89, 0xa6, 0xff, 0x00, 0x20, 0xd7, 0xc7, - 0x80, 0xc5, 0x94, 0x15, 0x2b, 0x0e, 0xe5, 0x57, 0xd3, 0xe7, 0x44, 0x30, 0xbe, 0x01, 0x38, 0x97, - 0xf4, 0x29, 0x7c, 0x7c, 0x6e, 0xed, 0xb3, 0x93, 0xf9, 0xb5, 0x4b, 0x24, 0x47, 0x08, 0xbf, 0x03, - 0x38, 0x9f, 0xb8, 0x67, 0x9f, 0xfc, 0x73, 0x17, 0x8f, 0xbc, 0xf5, 0xcb, 0x64, 0x87, 0x20, 0x4b, - 0x9b, 0xfb, 0x47, 0x02, 0x38, 0x38, 0x12, 0xc0, 0xe1, 0x91, 0x00, 0x3e, 0x1e, 0x0b, 0x99, 0x83, - 0x63, 0x21, 0xf3, 0xf3, 0x58, 0xc8, 0xbc, 0x7e, 0xd8, 0x65, 0x62, 0xd6, 0x69, 0xb9, 0xa9, 0xd7, - 0x48, 0xf8, 0xa0, 0xec, 0x14, 0x1e, 0x28, 0xed, 0x9e, 0x3f, 0x56, 0xdf, 0xd9, 0xb5, 0x41, 0xff, - 0x2f, 0x75, 0xe5, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x61, 0x95, 0x33, 0xba, 0x4e, 0x0b, 0x00, - 0x00, + // 818 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x96, 0x5f, 0x6b, 0xd3, 0x5e, + 0x18, 0xc7, 0x9b, 0x5f, 0xcb, 0x7e, 0xdb, 0x99, 0xfb, 0xd3, 0xb8, 0xb9, 0xae, 0x9b, 0xe9, 0x88, + 0x63, 0x76, 0x62, 0x13, 0xda, 0x89, 0x62, 0x15, 0xc4, 0x6e, 0x82, 0x85, 0x95, 0xba, 0x78, 0xe7, + 0x4d, 0x49, 0xbb, 0x50, 0xc3, 0x9a, 0x73, 0x42, 0xcf, 0xc9, 0xd6, 0x21, 0x08, 0x82, 0x37, 0x8a, + 0xc2, 0xc4, 0x4b, 0x11, 0xc1, 0x57, 0xe0, 0xcb, 0xd8, 0xe5, 0xee, 0x14, 0x2f, 0x8a, 0x6c, 0x17, + 0xde, 0xf7, 0x15, 0xc8, 0xc9, 0x49, 0xb2, 0x36, 0xeb, 0xb2, 0xc6, 0x81, 0xbb, 0xd9, 0x92, 0x93, + 0xe7, 0xdf, 0xf7, 0x79, 0x3e, 0x79, 0x52, 0xb0, 0x88, 0xb0, 0x81, 0xb0, 0x8e, 0x65, 0x13, 0xa1, + 0x86, 0xa1, 0x42, 0xb5, 0xae, 0x35, 0xe5, 0xed, 0x6c, 0x55, 0x23, 0x6a, 0x56, 0x26, 0x2d, 0xc9, + 0x6c, 0x22, 0x82, 0xf8, 0x39, 0xc7, 0x4a, 0xea, 0xb2, 0x92, 0x1c, 0xab, 0xe4, 0x54, 0x1d, 0xd5, + 0x91, 0x6d, 0x27, 0xd3, 0x2b, 0xe6, 0x92, 0x8c, 0xab, 0x86, 0x0e, 0x91, 0x6c, 0xff, 0x75, 0x8e, + 0x84, 0x9a, 0x1d, 0x46, 0xae, 0xaa, 0x58, 0xf3, 0x72, 0xd4, 0x90, 0x0e, 0x9d, 0xe7, 0x37, 0x83, + 0x6a, 0xc1, 0x3b, 0xaa, 0x59, 0x69, 0x22, 0x8b, 0x68, 0xcc, 0x5a, 0x7c, 0x1f, 0x05, 0x53, 0x25, + 0x5c, 0x7f, 0xba, 0xa3, 0x9a, 0x8f, 0x5a, 0x6a, 0x8d, 0x3c, 0x34, 0x90, 0x05, 0x49, 0x11, 0xf2, + 0xcb, 0x60, 0x08, 0x6b, 0x70, 0x53, 0x6b, 0x26, 0xb8, 0x05, 0x2e, 0x3d, 0x52, 0x88, 0x77, 0xda, + 0xa9, 0xb1, 0x5d, 0xd5, 0x68, 0xe4, 0x45, 0x76, 0x2e, 0x2a, 0x8e, 0x01, 0xbf, 0x0e, 0x86, 0xec, + 0x90, 0x38, 0xf1, 0xdf, 0x42, 0x34, 0x3d, 0x9a, 0x93, 0xa4, 0x00, 0xa1, 0x12, 0x4d, 0xe5, 0x66, + 0x51, 0xa8, 0x5b, 0x21, 0xb6, 0xdf, 0x4e, 0x45, 0x14, 0x27, 0x06, 0x5f, 0x02, 0xc3, 0x04, 0x6d, + 0x69, 0xb0, 0xa2, 0xc3, 0x44, 0x74, 0x81, 0x4b, 0x8f, 0xe6, 0x66, 0x25, 0x26, 0x59, 0xa2, 0x92, + 0xbd, 0x38, 0xab, 0x48, 0x87, 0x85, 0x19, 0xea, 0xda, 0x69, 0xa7, 0x26, 0x58, 0x65, 0xae, 0xa3, + 0xa8, 0xfc, 0x6f, 0x5f, 0x16, 0x21, 0xff, 0x12, 0x4c, 0xb1, 0x53, 0x64, 0x91, 0x8a, 0xa1, 0xc3, + 0x8a, 0x6a, 0xe7, 0x4e, 0xc4, 0x6c, 0x55, 0x25, 0xea, 0xff, 0xb3, 0x9d, 0x5a, 0xaa, 0xeb, 0xe4, + 0xb9, 0x55, 0x95, 0x6a, 0xc8, 0x90, 0x9d, 0xfe, 0xb2, 0x7f, 0x19, 0xbc, 0xb9, 0x25, 0x93, 0x5d, + 0x53, 0xc3, 0x52, 0x11, 0x92, 0x4e, 0x3b, 0x35, 0xd7, 0x9d, 0xa9, 0x37, 0xa6, 0xa8, 0xc4, 0xed, + 0xe3, 0xb2, 0x45, 0x4a, 0x3a, 0x64, 0x1a, 0xf3, 0x99, 0xb7, 0xbf, 0xbf, 0xdd, 0x48, 0xf7, 0x9b, + 0x09, 0x9d, 0x45, 0x46, 0xa3, 0x4d, 0xcf, 0x30, 0xff, 0x8c, 0x0e, 0xc5, 0x8f, 0x1c, 0x98, 0xef, + 0x37, 0x0f, 0x45, 0xc3, 0x26, 0x82, 0x58, 0xe3, 0x31, 0x98, 0x3c, 0xce, 0xed, 0x68, 0x61, 0x13, + 0x2a, 0x86, 0xd6, 0x32, 0xe3, 0xd7, 0xe2, 0xea, 0x18, 0x77, 0x75, 0xb0, 0xf4, 0xe2, 0x9b, 0x28, + 0x10, 0x68, 0x55, 0x66, 0x43, 0x27, 0xf6, 0xcc, 0xce, 0xc5, 0xcb, 0x86, 0x8f, 0x97, 0x95, 0x81, + 0x79, 0x39, 0x2e, 0xc0, 0x07, 0xcd, 0x03, 0x30, 0xee, 0xce, 0xbe, 0xb2, 0xa9, 0x41, 0x64, 0xd8, + 0xe8, 0x8c, 0x14, 0x66, 0x3b, 0xed, 0xd4, 0x74, 0x2f, 0x1b, 0xec, 0xb9, 0xa8, 0x5c, 0x72, 0x08, + 0x59, 0xa3, 0xb7, 0x17, 0x8e, 0x49, 0x9a, 0x62, 0x72, 0xad, 0x2f, 0x26, 0x54, 0x73, 0x17, 0x21, + 0x9f, 0x39, 0xb0, 0x14, 0x3c, 0x8b, 0x8b, 0x65, 0x65, 0x2f, 0x0a, 0xa6, 0x4f, 0x12, 0x5c, 0xb6, + 0x48, 0x18, 0x44, 0x4a, 0x3e, 0x44, 0xe4, 0x01, 0x11, 0x29, 0x5b, 0x7d, 0xf1, 0x78, 0x01, 0x2e, + 0x7b, 0xe3, 0x37, 0xd4, 0x96, 0xdb, 0x0b, 0xc6, 0xc8, 0x7a, 0xe8, 0x5e, 0x24, 0x7d, 0x44, 0x1d, + 0x87, 0x14, 0x95, 0x49, 0x07, 0xab, 0x92, 0xda, 0x62, 0x25, 0xf1, 0x4f, 0xc0, 0x88, 0xd7, 0x35, + 0x9b, 0xa7, 0xc0, 0x8d, 0x96, 0x70, 0x36, 0xda, 0xa4, 0xaf, 0xdf, 0xa2, 0x32, 0xec, 0x36, 0x3a, + 0x2f, 0x51, 0x58, 0x96, 0x07, 0xdb, 0x29, 0xd4, 0xf5, 0x03, 0x07, 0xae, 0xf6, 0x1d, 0x89, 0x47, + 0x8a, 0x09, 0x26, 0x3c, 0x35, 0x3d, 0xa0, 0x3c, 0x0e, 0xdd, 0x9c, 0x2b, 0xbe, 0xe6, 0xb8, 0x8d, + 0x19, 0x73, 0x1a, 0xe3, 0x60, 0xf2, 0x2e, 0x0a, 0x52, 0x41, 0x18, 0x87, 0x04, 0x46, 0xf1, 0x01, + 0x73, 0x6b, 0x70, 0x60, 0x4e, 0x5d, 0x2a, 0x05, 0xb7, 0x29, 0x14, 0xf7, 0xee, 0xad, 0x92, 0xf4, + 0xcb, 0xf4, 0x0c, 0x5c, 0x99, 0x65, 0x8b, 0xb0, 0xbd, 0x72, 0x0a, 0x79, 0xb1, 0x7f, 0x41, 0x5e, + 0x7e, 0x99, 0x72, 0xb2, 0x78, 0xe6, 0x52, 0xa1, 0x88, 0x7c, 0xe2, 0xc0, 0xf5, 0x33, 0xc6, 0x71, + 0x71, 0xb0, 0xe4, 0xbe, 0xc7, 0x40, 0xb4, 0x84, 0xeb, 0xfc, 0x2b, 0x0e, 0xc4, 0x4f, 0x7e, 0x7a, + 0xb2, 0x81, 0xb3, 0xee, 0xf7, 0x35, 0x4d, 0xde, 0x0d, 0xed, 0xe2, 0xa9, 0x7f, 0xcd, 0x01, 0xbe, + 0x0f, 0xab, 0xb9, 0x90, 0x11, 0xcb, 0x16, 0x49, 0xe6, 0xc3, 0xfb, 0x78, 0x65, 0x7c, 0xe1, 0xc0, + 0x5c, 0xd0, 0xf7, 0xf8, 0xde, 0x99, 0xb1, 0x4f, 0x77, 0x4e, 0xae, 0x9e, 0xc3, 0xd9, 0xab, 0xf0, + 0x2b, 0x07, 0xe6, 0x03, 0x5f, 0xef, 0xfb, 0x7f, 0x9d, 0x85, 0x36, 0x6f, 0xed, 0x3c, 0xde, 0x6e, + 0x91, 0x85, 0x8d, 0xfd, 0x43, 0x81, 0x3b, 0x38, 0x14, 0xb8, 0x5f, 0x87, 0x02, 0xb7, 0x77, 0x24, + 0x44, 0x0e, 0x8e, 0x84, 0xc8, 0x8f, 0x23, 0x21, 0xf2, 0xec, 0x4e, 0x17, 0xc4, 0x4e, 0xa6, 0x4c, + 0x43, 0xad, 0x62, 0xf7, 0x46, 0xde, 0xce, 0xde, 0x96, 0x5b, 0x3d, 0x6f, 0x95, 0x4d, 0x76, 0x75, + 0xc8, 0xfe, 0x65, 0xbd, 0xf2, 0x27, 0x00, 0x00, 0xff, 0xff, 0x67, 0x71, 0x3e, 0x8f, 0x15, 0x0c, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/protorev/types/tx.pb.go b/x/protorev/types/tx.pb.go index b944735e073..4c43599f339 100644 --- a/x/protorev/types/tx.pb.go +++ b/x/protorev/types/tx.pb.go @@ -609,61 +609,63 @@ func init() { func init() { proto.RegisterFile("osmosis/protorev/v1beta1/tx.proto", fileDescriptor_2783dce032fc6954) } var fileDescriptor_2783dce032fc6954 = []byte{ - // 854 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x95, 0x4f, 0x6f, 0xe3, 0x44, - 0x18, 0xc6, 0x33, 0x5d, 0x40, 0xec, 0xa4, 0xc0, 0xc6, 0xfb, 0x2f, 0x71, 0x8b, 0x93, 0x9d, 0x6e, - 0x77, 0xc3, 0xee, 0x26, 0xde, 0x24, 0xbb, 0x68, 0x15, 0x04, 0x52, 0xad, 0x3d, 0xc0, 0xa1, 0x28, - 0x72, 0x8b, 0x90, 0x38, 0x60, 0xec, 0x64, 0x70, 0xac, 0xc6, 0x1e, 0xcb, 0x33, 0x0d, 0xe9, 0x95, - 0x23, 0x27, 0x24, 0x6e, 0x1c, 0x38, 0xf0, 0x09, 0x40, 0x2a, 0x1c, 0x90, 0x38, 0x70, 0xeb, 0x05, - 0xa9, 0x82, 0x03, 0x9c, 0x22, 0xd4, 0x22, 0x71, 0xcf, 0x27, 0x40, 0x99, 0xb1, 0x9d, 0x34, 0xb1, - 0x49, 0x43, 0x2e, 0x55, 0x33, 0xf3, 0xbc, 0xcf, 0xfb, 0x7b, 0x3c, 0xe3, 0xd7, 0xf0, 0x0e, 0xa1, - 0x2e, 0xa1, 0x0e, 0x55, 0xfd, 0x80, 0x30, 0x12, 0xe0, 0xbe, 0xda, 0xaf, 0x59, 0x98, 0x99, 0x35, - 0x95, 0x0d, 0xaa, 0x7c, 0x4d, 0xca, 0x87, 0x92, 0x6a, 0x24, 0xa9, 0x86, 0x12, 0xf9, 0x86, 0x4d, - 0x6c, 0xc2, 0x57, 0xd5, 0xf1, 0x7f, 0x42, 0x20, 0xe7, 0x4c, 0xd7, 0xf1, 0x88, 0xca, 0xff, 0x86, - 0x4b, 0x9b, 0x36, 0x21, 0x76, 0x0f, 0xab, 0xa6, 0xef, 0xa8, 0xa6, 0xe7, 0x11, 0x66, 0x32, 0x87, - 0x78, 0xa1, 0xa3, 0x7c, 0x3f, 0x95, 0x21, 0xee, 0x28, 0x84, 0x85, 0x36, 0x57, 0x1a, 0xa2, 0xa5, - 0xf8, 0x21, 0xb6, 0xd0, 0x1f, 0x00, 0xbe, 0xb6, 0x4b, 0xed, 0x3d, 0xcc, 0xde, 0x25, 0x4c, 0x27, - 0x87, 0x0c, 0x53, 0xe9, 0x1d, 0xf8, 0xa2, 0xd9, 0x71, 0x1d, 0x2f, 0x0f, 0x4a, 0xa0, 0x7c, 0x55, - 0x2b, 0x8f, 0x86, 0xc5, 0xf5, 0x23, 0xd3, 0xed, 0x35, 0x11, 0x5f, 0x46, 0xbf, 0x1d, 0x57, 0x6e, - 0x84, 0x26, 0x3b, 0x9d, 0x4e, 0x80, 0x29, 0xdd, 0x63, 0x81, 0xe3, 0xd9, 0xba, 0x28, 0x93, 0x3e, - 0x85, 0xb0, 0x4b, 0x98, 0x11, 0x70, 0xb7, 0xfc, 0x5a, 0xe9, 0x4a, 0x39, 0x5b, 0x7f, 0x54, 0x4d, - 0x7b, 0x1a, 0xd5, 0x7d, 0x72, 0x80, 0xbd, 0x96, 0xe9, 0x04, 0x3b, 0x81, 0x25, 0x08, 0xb4, 0xc2, - 0xc9, 0xb0, 0x98, 0x19, 0x0d, 0x8b, 0x39, 0xd1, 0x76, 0xe2, 0x86, 0xf4, 0xab, 0xdd, 0x88, 0xb3, - 0xb9, 0xf9, 0xc5, 0x3f, 0xdf, 0x3d, 0xb8, 0x1d, 0x3d, 0x84, 0x99, 0x14, 0xa8, 0x00, 0x6f, 0xcf, - 0x2c, 0xe9, 0x98, 0xfa, 0xc4, 0xa3, 0x18, 0x9d, 0x00, 0x78, 0x4b, 0xec, 0x3d, 0xc7, 0x7d, 0xdc, - 0x23, 0x3e, 0x0e, 0x76, 0xda, 0x6d, 0x72, 0xe8, 0xb1, 0x95, 0xb3, 0xbf, 0x07, 0x73, 0x9d, 0xc8, - 0xd3, 0x30, 0x85, 0x69, 0x7e, 0x8d, 0x7b, 0x6d, 0x8e, 0x86, 0xc5, 0xbc, 0xf0, 0x9a, 0x93, 0x20, - 0xfd, 0x5a, 0x67, 0x06, 0xa5, 0xb9, 0x35, 0x8e, 0xa7, 0x5c, 0x8c, 0x37, 0xcb, 0x8b, 0x4a, 0x50, - 0x49, 0xde, 0x89, 0xc3, 0xfe, 0x04, 0x60, 0x4e, 0x48, 0x5a, 0x84, 0xf4, 0x3e, 0xc4, 0x8e, 0xdd, - 0x65, 0xab, 0x9f, 0x31, 0x86, 0xeb, 0x3e, 0x21, 0x3d, 0xe3, 0x33, 0xe1, 0xc7, 0x23, 0x66, 0xeb, - 0xdb, 0xe9, 0xa7, 0x3c, 0xd5, 0x5c, 0xdb, 0x08, 0x8f, 0xf7, 0xba, 0xe8, 0x38, 0x6d, 0x84, 0xf4, - 0xac, 0x3f, 0x51, 0xa2, 0x0d, 0x58, 0x98, 0x63, 0x8f, 0x93, 0x7d, 0x0f, 0x60, 0x5e, 0xec, 0xee, - 0x9a, 0x83, 0xb1, 0xa0, 0x45, 0x1c, 0x8f, 0xd1, 0x16, 0x0e, 0xf6, 0x07, 0x2b, 0x07, 0xfc, 0x00, - 0xde, 0x72, 0xcd, 0x81, 0xc1, 0xd9, 0x7c, 0xee, 0x6b, 0x8c, 0xcf, 0x8b, 0x0d, 0x78, 0xd4, 0x17, - 0xb4, 0x3b, 0xa3, 0x61, 0xf1, 0x75, 0x61, 0x98, 0xac, 0x43, 0xba, 0xe4, 0xce, 0x61, 0x21, 0x04, - 0x4b, 0x69, 0xc8, 0x71, 0xae, 0x9f, 0x01, 0xdc, 0x48, 0x16, 0x69, 0x3d, 0xd2, 0x3e, 0x58, 0x39, - 0xda, 0xc7, 0xb0, 0x90, 0x84, 0x6c, 0x8d, 0xcd, 0xc3, 0x74, 0x77, 0x47, 0xc3, 0x62, 0x29, 0x3d, - 0x1d, 0x97, 0x22, 0xfd, 0xa6, 0x9b, 0xc4, 0x87, 0xb6, 0xe1, 0xd6, 0x7f, 0xe0, 0xc7, 0x31, 0x8f, - 0x01, 0xbc, 0x26, 0x74, 0x9a, 0x49, 0xf1, 0x73, 0xec, 0x11, 0x77, 0xf5, 0x7b, 0xf9, 0x09, 0xcc, - 0x5a, 0x26, 0xc5, 0x46, 0x87, 0xdb, 0x85, 0xc3, 0x67, 0x2b, 0xfd, 0x5a, 0xc6, 0xad, 0x35, 0x39, - 0xbc, 0x94, 0x92, 0x68, 0x37, 0xe5, 0x82, 0x74, 0x68, 0xc5, 0x84, 0x48, 0x8e, 0x2e, 0xdd, 0x84, - 0x3a, 0x8a, 0x54, 0xff, 0xe1, 0x65, 0x78, 0x65, 0x97, 0xda, 0xd2, 0xd7, 0x00, 0xae, 0x5f, 0x18, - 0xa9, 0x6f, 0xa4, 0x13, 0xcc, 0x0c, 0x29, 0xb9, 0x76, 0x69, 0x69, 0xfc, 0x24, 0x1f, 0x7d, 0xfe, - 0xfb, 0xdf, 0x5f, 0xad, 0xdd, 0x43, 0x77, 0xd5, 0x68, 0x5a, 0xf4, 0x6b, 0x4f, 0x26, 0x5f, 0x05, - 0x8a, 0x99, 0x31, 0x19, 0xa1, 0xd2, 0x8f, 0x00, 0x5e, 0x4f, 0x1a, 0x7d, 0x8f, 0x17, 0x35, 0x9e, - 0xad, 0x90, 0x9f, 0x2d, 0x5b, 0x11, 0x13, 0x37, 0x38, 0x71, 0x05, 0x3d, 0x4c, 0x27, 0x9e, 0x9b, - 0x91, 0xd2, 0x2f, 0x00, 0xde, 0x4c, 0x7e, 0xd9, 0xeb, 0x8b, 0x40, 0xe6, 0x6b, 0xe4, 0xe6, 0xf2, - 0x35, 0x31, 0xfe, 0x33, 0x8e, 0x5f, 0x47, 0x8f, 0xd3, 0xf1, 0x93, 0x87, 0x82, 0xf4, 0x2b, 0x80, - 0xf9, 0xd4, 0x17, 0xfb, 0xe9, 0xb2, 0x48, 0xbc, 0x4c, 0x7e, 0xfb, 0x7f, 0x95, 0xc5, 0x61, 0xde, - 0xe2, 0x61, 0x9e, 0xa2, 0xc6, 0x72, 0x61, 0xf8, 0x0c, 0x90, 0xbe, 0x05, 0xf0, 0xd5, 0x99, 0x4f, - 0xcb, 0xc3, 0x45, 0x38, 0x53, 0x62, 0xb9, 0xb1, 0x84, 0x38, 0x26, 0xae, 0x72, 0xe2, 0x32, 0xba, - 0x97, 0x4e, 0x3c, 0xfd, 0x4d, 0x91, 0xbe, 0x01, 0xf0, 0x95, 0x8b, 0x63, 0xe6, 0xc1, 0xa2, 0xb6, - 0x13, 0xad, 0x5c, 0xbf, 0xbc, 0x36, 0x26, 0xac, 0x70, 0xc2, 0xfb, 0x68, 0x3b, 0x9d, 0x70, 0x6a, - 0xc0, 0x68, 0xef, 0x9f, 0x9c, 0x29, 0xe0, 0xf4, 0x4c, 0x01, 0x7f, 0x9d, 0x29, 0xe0, 0xcb, 0x73, - 0x25, 0x73, 0x7a, 0xae, 0x64, 0xfe, 0x3c, 0x57, 0x32, 0x1f, 0x3d, 0xb1, 0x1d, 0xd6, 0x3d, 0xb4, - 0xaa, 0x6d, 0xe2, 0x46, 0x56, 0x95, 0x9e, 0x69, 0xd1, 0x29, 0xdf, 0x37, 0xd5, 0xc1, 0xc4, 0x99, - 0x1d, 0xf9, 0x98, 0x5a, 0x2f, 0xf1, 0xdf, 0x8d, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x6d, 0xc7, - 0x9f, 0x51, 0xa6, 0x0a, 0x00, 0x00, + // 883 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x95, 0x4f, 0x8f, 0xdb, 0x44, + 0x18, 0xc6, 0x77, 0xb6, 0x80, 0xe8, 0xec, 0x02, 0x5d, 0xf7, 0x9f, 0xe3, 0xdd, 0x3a, 0xe9, 0x6c, + 0xb7, 0x5d, 0xda, 0x6e, 0xdc, 0x4d, 0x5a, 0x54, 0x05, 0x81, 0xb4, 0x56, 0x0f, 0x70, 0x58, 0x14, + 0xb9, 0x45, 0x48, 0x1c, 0x30, 0x76, 0x32, 0x38, 0x56, 0x63, 0x8f, 0xe5, 0x99, 0x0d, 0xe9, 0x95, + 0x23, 0x27, 0x24, 0x6e, 0x1c, 0x38, 0xf0, 0x09, 0x38, 0x00, 0x77, 0x6e, 0x7b, 0x41, 0xaa, 0xe8, + 0x81, 0x0a, 0x89, 0x08, 0xed, 0x22, 0x71, 0xcf, 0x27, 0x40, 0x9e, 0xf1, 0xbf, 0x24, 0x36, 0x69, + 0x9a, 0xcb, 0x6a, 0x33, 0xf3, 0xcc, 0xf3, 0xfe, 0x9e, 0x77, 0x46, 0xaf, 0xe1, 0x55, 0x42, 0x3d, + 0x42, 0x5d, 0xaa, 0x05, 0x21, 0x61, 0x24, 0xc4, 0x03, 0x6d, 0xb0, 0x6f, 0x63, 0x66, 0xed, 0x6b, + 0x6c, 0x58, 0xe7, 0x6b, 0x92, 0x1c, 0x4b, 0xea, 0x89, 0xa4, 0x1e, 0x4b, 0x94, 0x0b, 0x0e, 0x71, + 0x08, 0x5f, 0xd5, 0xa2, 0xff, 0x84, 0x40, 0xd9, 0xb0, 0x3c, 0xd7, 0x27, 0x1a, 0xff, 0x1b, 0x2f, + 0x6d, 0x39, 0x84, 0x38, 0x7d, 0xac, 0x59, 0x81, 0xab, 0x59, 0xbe, 0x4f, 0x98, 0xc5, 0x5c, 0xe2, + 0xc7, 0x8e, 0xca, 0x8d, 0x52, 0x86, 0xb4, 0xa2, 0x10, 0x56, 0x3a, 0x5c, 0x69, 0x8a, 0x92, 0xe2, + 0x87, 0xd8, 0x42, 0x7f, 0x00, 0xf8, 0xd6, 0x21, 0x75, 0x1e, 0x62, 0xf6, 0x01, 0x61, 0x06, 0x39, + 0x62, 0x98, 0x4a, 0xef, 0xc3, 0x57, 0xad, 0xae, 0xe7, 0xfa, 0x32, 0xa8, 0x81, 0xdd, 0xb3, 0xfa, + 0xee, 0x78, 0x54, 0x5d, 0x7f, 0x62, 0x79, 0xfd, 0x16, 0xe2, 0xcb, 0xe8, 0xf7, 0x9f, 0xf6, 0x2e, + 0xc4, 0x26, 0x07, 0xdd, 0x6e, 0x88, 0x29, 0x7d, 0xc8, 0x42, 0xd7, 0x77, 0x0c, 0x71, 0x4c, 0xfa, + 0x02, 0xc2, 0x1e, 0x61, 0x66, 0xc8, 0xdd, 0xe4, 0xd5, 0xda, 0x99, 0xdd, 0xb5, 0xc6, 0xed, 0x7a, + 0x59, 0x37, 0xea, 0x8f, 0xc8, 0x63, 0xec, 0xb7, 0x2d, 0x37, 0x3c, 0x08, 0x6d, 0x41, 0xa0, 0x57, + 0x8e, 0x47, 0xd5, 0x95, 0xf1, 0xa8, 0xba, 0x21, 0xca, 0x66, 0x6e, 0xc8, 0x38, 0xdb, 0x4b, 0x38, + 0x5b, 0x5b, 0x5f, 0xff, 0xfb, 0xe3, 0xcd, 0xcb, 0x49, 0x13, 0xa6, 0x52, 0xa0, 0x0a, 0xbc, 0x3c, + 0xb5, 0x64, 0x60, 0x1a, 0x10, 0x9f, 0x62, 0x74, 0x0c, 0xe0, 0x25, 0xb1, 0xf7, 0x00, 0x0f, 0x70, + 0x9f, 0x04, 0x38, 0x3c, 0xe8, 0x74, 0xc8, 0x91, 0xcf, 0x96, 0xce, 0xfe, 0x21, 0xdc, 0xe8, 0x26, + 0x9e, 0xa6, 0x25, 0x4c, 0xe5, 0x55, 0xee, 0xb5, 0x35, 0x1e, 0x55, 0x65, 0xe1, 0x35, 0x23, 0x41, + 0xc6, 0xb9, 0xee, 0x14, 0x4a, 0x6b, 0x3b, 0x8a, 0xa7, 0x4e, 0xc6, 0x9b, 0xe6, 0x45, 0x35, 0xa8, + 0x16, 0xef, 0xa4, 0x61, 0xff, 0x04, 0x70, 0x43, 0x48, 0xda, 0x84, 0xf4, 0x3f, 0xc1, 0xae, 0xd3, + 0x63, 0xcb, 0xdf, 0x31, 0x86, 0xeb, 0x01, 0x21, 0x7d, 0xf3, 0x4b, 0xe1, 0xc7, 0x23, 0xae, 0x35, + 0x76, 0xca, 0x6f, 0x39, 0x57, 0x5c, 0xdf, 0x8c, 0xaf, 0xf7, 0xbc, 0xa8, 0x98, 0x37, 0x42, 0xc6, + 0x5a, 0x90, 0x29, 0x5b, 0x6a, 0xd4, 0x83, 0xca, 0x64, 0x0f, 0x72, 0x4e, 0x68, 0x13, 0x56, 0x66, + 0x16, 0xd3, 0xe4, 0xcf, 0x01, 0x94, 0xc5, 0xee, 0xa1, 0x35, 0x8c, 0x04, 0x6d, 0xe2, 0xfa, 0x8c, + 0xb6, 0x71, 0xf8, 0x68, 0xb8, 0x74, 0x03, 0x3e, 0x86, 0x97, 0x3c, 0x6b, 0x68, 0x72, 0xf6, 0x80, + 0xfb, 0x9a, 0xd1, 0x7d, 0xb2, 0x21, 0x6f, 0xc5, 0x2b, 0xfa, 0xd5, 0xf1, 0xa8, 0x7a, 0x45, 0x18, + 0x16, 0xeb, 0x90, 0x21, 0x79, 0x33, 0x58, 0xad, 0x9d, 0x28, 0x70, 0x6d, 0x32, 0xf0, 0x2c, 0x3d, + 0x42, 0xb0, 0x56, 0xb6, 0x97, 0xc6, 0xff, 0x0b, 0xc0, 0xcd, 0x62, 0x91, 0xde, 0x27, 0x9d, 0xc7, + 0x4b, 0x77, 0xe0, 0x33, 0x58, 0x29, 0x4a, 0x66, 0x47, 0xe6, 0x71, 0x13, 0xae, 0x8d, 0x47, 0xd5, + 0x5a, 0x79, 0x13, 0xb8, 0x14, 0x19, 0x17, 0xbd, 0x22, 0xbe, 0xb9, 0x77, 0xbf, 0x03, 0xb7, 0xff, + 0x27, 0x5e, 0xda, 0x86, 0x67, 0x00, 0x9e, 0x13, 0x3a, 0xdd, 0xa2, 0xf8, 0x01, 0xf6, 0x89, 0xb7, + 0xfc, 0xf3, 0xff, 0x1c, 0xae, 0xd9, 0x16, 0xc5, 0x66, 0x97, 0xdb, 0xc5, 0x33, 0x6e, 0xbb, 0xfc, + 0xf5, 0xa7, 0xa5, 0x75, 0x25, 0x7e, 0xfb, 0x92, 0x28, 0x97, 0x73, 0x41, 0x06, 0xb4, 0x53, 0xc2, + 0xd6, 0x95, 0x28, 0xbd, 0x3c, 0x99, 0x3e, 0x0b, 0x80, 0x94, 0xe4, 0x69, 0x67, 0x6b, 0x49, 0xe2, + 0xc6, 0xcf, 0xaf, 0xc3, 0x33, 0x87, 0xd4, 0x91, 0xbe, 0x03, 0x70, 0x7d, 0x62, 0xb0, 0xbf, 0x5d, + 0x0e, 0x38, 0x35, 0x2a, 0x95, 0xfd, 0x17, 0x96, 0xa6, 0x8d, 0xbe, 0xfd, 0xd5, 0xb3, 0x7f, 0xbe, + 0x5d, 0xbd, 0x8e, 0xae, 0x69, 0x09, 0xf5, 0x60, 0xff, 0x6e, 0xf6, 0x6d, 0xa2, 0x98, 0x99, 0xd9, + 0x20, 0x97, 0x7e, 0x01, 0xf0, 0x7c, 0xd1, 0x00, 0xbe, 0x33, 0xaf, 0xf0, 0xf4, 0x09, 0xe5, 0xfe, + 0xa2, 0x27, 0x52, 0xe2, 0x26, 0x27, 0xde, 0x43, 0xb7, 0xca, 0x89, 0x67, 0x26, 0xb5, 0xf4, 0x2b, + 0x80, 0x17, 0x8b, 0x47, 0x4a, 0x63, 0x1e, 0xc8, 0xec, 0x19, 0xa5, 0xb5, 0xf8, 0x99, 0x14, 0xff, + 0x3e, 0xc7, 0x6f, 0xa0, 0x3b, 0xe5, 0xf8, 0xc5, 0xa3, 0x47, 0xfa, 0x0d, 0x40, 0xb9, 0x74, 0x2e, + 0xdc, 0x5b, 0x14, 0x89, 0x1f, 0x53, 0xde, 0x7b, 0xa9, 0x63, 0x69, 0x98, 0x77, 0x79, 0x98, 0x7b, + 0xa8, 0xb9, 0x58, 0x18, 0x3e, 0x42, 0xa4, 0x1f, 0x00, 0x7c, 0x73, 0xea, 0x03, 0x77, 0x6b, 0x1e, + 0x4e, 0x4e, 0xac, 0x34, 0x17, 0x10, 0xa7, 0xc4, 0x75, 0x4e, 0xbc, 0x8b, 0xae, 0x97, 0x13, 0xe7, + 0xbf, 0x6c, 0xd2, 0xf7, 0x00, 0xbe, 0x31, 0x39, 0x85, 0x6e, 0xce, 0x2b, 0x9b, 0x69, 0x95, 0xc6, + 0x8b, 0x6b, 0x53, 0xc2, 0x3d, 0x4e, 0x78, 0x03, 0xed, 0x94, 0x13, 0xe6, 0xe6, 0x8f, 0xfe, 0xd1, + 0xf1, 0x89, 0x0a, 0x9e, 0x9e, 0xa8, 0xe0, 0xef, 0x13, 0x15, 0x7c, 0x73, 0xaa, 0xae, 0x3c, 0x3d, + 0x55, 0x57, 0x9e, 0x9f, 0xaa, 0x2b, 0x9f, 0xde, 0x75, 0x5c, 0xd6, 0x3b, 0xb2, 0xeb, 0x1d, 0xe2, + 0x25, 0x56, 0x7b, 0x7d, 0xcb, 0xa6, 0x39, 0xdf, 0x77, 0xb4, 0x61, 0xe6, 0xcc, 0x9e, 0x04, 0x98, + 0xda, 0xaf, 0xf1, 0xdf, 0xcd, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x89, 0x8d, 0xc5, 0x97, 0x2c, + 0x0b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/superfluid/types/tx.pb.go b/x/superfluid/types/tx.pb.go index 7b030350a26..7532c22f46e 100644 --- a/x/superfluid/types/tx.pb.go +++ b/x/superfluid/types/tx.pb.go @@ -1045,88 +1045,91 @@ func init() { func init() { proto.RegisterFile("osmosis/superfluid/tx.proto", fileDescriptor_55b645f187d22814) } var fileDescriptor_55b645f187d22814 = []byte{ - // 1290 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x58, 0xcd, 0x73, 0xd3, 0x46, - 0x14, 0x8f, 0xec, 0x90, 0xc0, 0x86, 0x00, 0x51, 0xf9, 0x30, 0x2e, 0x58, 0x66, 0x61, 0x98, 0x50, - 0xb0, 0x14, 0x43, 0x0b, 0x4c, 0x4e, 0xc4, 0xf1, 0xd0, 0x31, 0x8d, 0xa7, 0x8c, 0x08, 0xd3, 0x19, - 0x2e, 0x1e, 0xd9, 0xbb, 0x08, 0x35, 0xb2, 0xd6, 0x78, 0xa5, 0x7c, 0x4c, 0x4f, 0xed, 0x85, 0x0e, - 0x27, 0x8e, 0xbd, 0xf5, 0xde, 0x43, 0xa7, 0x7f, 0x42, 0x0f, 0x3d, 0x30, 0x3d, 0x71, 0x6b, 0xa7, - 0x9d, 0x31, 0x9d, 0xe4, 0xd0, 0x7b, 0x8e, 0x3d, 0x75, 0x56, 0x5a, 0xad, 0xe5, 0x58, 0xc2, 0x91, - 0x71, 0x0f, 0xbd, 0x80, 0x77, 0xf7, 0xbd, 0xf7, 0xfb, 0xbd, 0xb7, 0xef, 0xbd, 0x7d, 0x0a, 0xf8, - 0x90, 0xd0, 0x36, 0xa1, 0x16, 0xd5, 0xa8, 0xd7, 0xc1, 0xdd, 0xa7, 0xb6, 0x67, 0x21, 0xcd, 0xdd, - 0x56, 0x3b, 0x5d, 0xe2, 0x12, 0x59, 0xe6, 0x87, 0x6a, 0xff, 0x30, 0x7f, 0xda, 0x24, 0x26, 0xf1, - 0x8f, 0x35, 0xf6, 0x2b, 0x90, 0xcc, 0x2f, 0x18, 0x6d, 0xcb, 0x21, 0x9a, 0xff, 0x2f, 0xdf, 0x2a, - 0x98, 0x84, 0x98, 0x36, 0xd6, 0xfc, 0x55, 0xd3, 0x7b, 0xaa, 0x21, 0xaf, 0x6b, 0xb8, 0x16, 0x71, - 0xc2, 0xf3, 0x96, 0x6f, 0x5d, 0x6b, 0x1a, 0x14, 0x6b, 0x9b, 0xe5, 0x26, 0x76, 0x8d, 0xb2, 0xd6, - 0x22, 0x56, 0x78, 0xae, 0x1c, 0xd4, 0x77, 0xad, 0x36, 0xa6, 0xae, 0xd1, 0xee, 0x70, 0x81, 0xcb, - 0x31, 0xd4, 0xfb, 0x3f, 0x03, 0x21, 0xf8, 0x9d, 0x04, 0xce, 0xd4, 0xa9, 0xf9, 0x48, 0xec, 0x57, - 0xb1, 0x8d, 0x4d, 0xc3, 0xc5, 0xf2, 0x35, 0x30, 0x43, 0xb1, 0x83, 0x70, 0x37, 0x27, 0x15, 0xa5, - 0xc5, 0x63, 0x95, 0x85, 0xfd, 0x9e, 0x32, 0xbf, 0x63, 0xb4, 0xed, 0x65, 0x18, 0xec, 0x43, 0x9d, - 0x0b, 0xc8, 0xe7, 0xc0, 0xac, 0x4d, 0x5a, 0x1b, 0x0d, 0x0b, 0xe5, 0x32, 0x45, 0x69, 0x71, 0x5a, - 0x9f, 0x61, 0xcb, 0x1a, 0x92, 0xcf, 0x83, 0xa3, 0x9b, 0x86, 0xdd, 0x30, 0x10, 0xea, 0xe6, 0xb2, - 0xcc, 0x8a, 0x3e, 0xbb, 0x69, 0xd8, 0x2b, 0x08, 0x75, 0x97, 0x8b, 0x2f, 0xff, 0xfe, 0xe9, 0xa3, - 0x98, 0xe8, 0x96, 0x10, 0x27, 0x00, 0x15, 0x70, 0x31, 0x96, 0x99, 0x8e, 0x69, 0x87, 0x38, 0x14, - 0xc3, 0xaf, 0x25, 0x70, 0x6e, 0x40, 0xe2, 0xb1, 0x83, 0x26, 0xc8, 0x7e, 0x19, 0x32, 0x8a, 0x17, - 0x63, 0x28, 0x7a, 0x02, 0x07, 0x5e, 0x02, 0x4a, 0x02, 0x05, 0x41, 0xf3, 0x9b, 0x61, 0x9a, 0x4d, - 0xe2, 0xa0, 0x35, 0xd2, 0xda, 0x98, 0x08, 0xcd, 0xcb, 0x8c, 0x66, 0x21, 0x96, 0x26, 0xc3, 0x29, - 0x31, 0xb1, 0x18, 0x9e, 0x21, 0x07, 0xc1, 0xf3, 0x47, 0x09, 0x5c, 0x49, 0xf0, 0x65, 0xc5, 0x99, - 0x30, 0x69, 0xb9, 0x02, 0xa6, 0x59, 0x2e, 0xfb, 0x59, 0x31, 0x77, 0xf3, 0xbc, 0x1a, 0x24, 0xbb, - 0xca, 0x92, 0x5d, 0xe5, 0xc9, 0xae, 0xae, 0x12, 0xcb, 0xa9, 0x7c, 0xf0, 0xba, 0xa7, 0x4c, 0xed, - 0xf7, 0x94, 0xb9, 0x00, 0x80, 0x29, 0x41, 0xdd, 0xd7, 0x85, 0x9f, 0x82, 0x1b, 0x87, 0xe1, 0x1b, - 0x3a, 0x18, 0x25, 0x23, 0x45, 0xc9, 0xc0, 0x7d, 0x09, 0x5c, 0xa8, 0x53, 0x93, 0x09, 0xaf, 0x38, - 0xe8, 0xfd, 0x6a, 0xc1, 0x00, 0x47, 0x18, 0x39, 0x9a, 0xcb, 0x14, 0xb3, 0xef, 0xf6, 0x6c, 0x89, - 0x79, 0xf6, 0xc3, 0x5b, 0x65, 0xd1, 0xb4, 0xdc, 0x67, 0x5e, 0x53, 0x6d, 0x91, 0xb6, 0xc6, 0x6b, - 0x3e, 0xf8, 0xaf, 0x44, 0xd1, 0x86, 0xe6, 0xee, 0x74, 0x30, 0xf5, 0x15, 0xa8, 0x1e, 0x58, 0x7e, - 0x57, 0x55, 0x5d, 0x63, 0xb9, 0x70, 0x25, 0xcc, 0x05, 0xe6, 0x5e, 0xc9, 0x70, 0x50, 0x29, 0xae, - 0xbc, 0x6e, 0xfb, 0xb7, 0x9d, 0xe8, 0xb3, 0x88, 0xda, 0x09, 0x90, 0xa9, 0x55, 0x79, 0xc0, 0x32, - 0xb5, 0x2a, 0x7c, 0x91, 0x01, 0x5a, 0x9d, 0x9a, 0xab, 0x5d, 0x6c, 0xb8, 0xf8, 0xbe, 0x67, 0xdb, - 0xba, 0xe1, 0x98, 0xf8, 0x21, 0xa1, 0x16, 0x6b, 0x5e, 0xff, 0xef, 0xf8, 0xc9, 0xd7, 0xc1, 0x6c, - 0x87, 0x10, 0x9b, 0xa5, 0xc8, 0x34, 0xf3, 0xb8, 0x22, 0xef, 0xf7, 0x94, 0x13, 0x01, 0x53, 0x7e, - 0x00, 0xf5, 0x19, 0xf6, 0xab, 0x86, 0xe0, 0x73, 0x70, 0x27, 0x65, 0x20, 0x44, 0x50, 0xcf, 0x82, - 0x20, 0xf7, 0xaa, 0x03, 0x99, 0x58, 0x95, 0x0b, 0x00, 0x74, 0xb8, 0x81, 0x5a, 0x95, 0x97, 0x4c, - 0x64, 0x87, 0xb5, 0xeb, 0x5c, 0x9d, 0x9a, 0x8f, 0x9d, 0x87, 0x84, 0xd8, 0x5f, 0x3c, 0xb3, 0x5c, - 0x6c, 0x5b, 0xd4, 0xc5, 0x88, 0x2d, 0xd3, 0x44, 0x39, 0xe2, 0x67, 0x66, 0x94, 0x9f, 0xcb, 0x57, - 0x58, 0x52, 0x29, 0x61, 0x52, 0x79, 0x0e, 0xdb, 0x2e, 0x6d, 0xf5, 0xc1, 0x4b, 0x6c, 0x03, 0x3e, - 0x00, 0xc5, 0x24, 0x66, 0xc2, 0xed, 0xab, 0xe0, 0x24, 0xde, 0xb6, 0x5c, 0x8c, 0x1a, 0xbc, 0x10, - 0x69, 0x4e, 0x2a, 0x66, 0x17, 0xa7, 0xf5, 0xf9, 0x60, 0x7b, 0xcd, 0xaf, 0x47, 0x0a, 0xbf, 0xcd, - 0x82, 0xbb, 0xbe, 0x31, 0x3b, 0x48, 0xcf, 0xba, 0x65, 0x76, 0x0d, 0x17, 0x3f, 0x7a, 0x66, 0x74, - 0x31, 0x5d, 0x27, 0x22, 0xd8, 0xab, 0xc4, 0x69, 0x61, 0xc7, 0x65, 0x67, 0x28, 0x0c, 0x7c, 0xca, - 0x30, 0x44, 0xdb, 0x53, 0x36, 0x1a, 0x06, 0x7e, 0x00, 0x45, 0xcb, 0x32, 0xc1, 0x02, 0xf5, 0x09, - 0x34, 0x5c, 0xd2, 0x68, 0x07, 0x8c, 0x46, 0xf7, 0xaf, 0x22, 0xef, 0x5f, 0x39, 0xce, 0xe0, 0xa0, - 0x05, 0xa8, 0x9f, 0xa4, 0xdc, 0x2d, 0xee, 0xa5, 0xfc, 0x52, 0x02, 0x27, 0x5c, 0xb2, 0x81, 0x9d, - 0x06, 0xf1, 0xdc, 0x46, 0x9b, 0x15, 0xc3, 0xf4, 0xa8, 0x62, 0xa8, 0x71, 0x98, 0x33, 0x01, 0xcc, - 0xa0, 0x3a, 0x4c, 0x55, 0x25, 0xc7, 0x7d, 0xe5, 0xcf, 0x3d, 0xb7, 0xce, 0x54, 0x7f, 0xcd, 0x82, - 0x7b, 0xe3, 0x5e, 0x85, 0xb8, 0xf7, 0x27, 0x60, 0xd6, 0x68, 0x13, 0xcf, 0x71, 0x97, 0xf8, 0x9d, - 0xdc, 0x63, 0x74, 0xff, 0xe8, 0x29, 0x57, 0x0f, 0xc1, 0xaa, 0xe6, 0xb8, 0xfd, 0x5b, 0xe1, 0x66, - 0xa0, 0x1e, 0x1a, 0xec, 0xdb, 0x2e, 0xfb, 0x77, 0xf8, 0xde, 0xb6, 0xcb, 0xc2, 0x76, 0x59, 0xde, - 0x02, 0x0b, 0xb6, 0xf5, 0xdc, 0xb3, 0x90, 0xe5, 0xee, 0x34, 0x5a, 0x7e, 0xa1, 0xa3, 0xa0, 0x65, - 0x54, 0x1e, 0xa4, 0x40, 0xa9, 0xe2, 0x56, 0x3f, 0x03, 0x86, 0x0c, 0x42, 0xfd, 0x94, 0xd8, 0x0b, - 0x9a, 0x09, 0x92, 0x1f, 0x83, 0x63, 0x5f, 0x12, 0xcb, 0x69, 0xb0, 0x99, 0xce, 0xef, 0x44, 0x73, - 0x37, 0xf3, 0x6a, 0x30, 0xf0, 0xa9, 0xe1, 0xc0, 0xa7, 0xae, 0x87, 0x03, 0x5f, 0xe5, 0x02, 0xbf, - 0xfd, 0x53, 0x01, 0x84, 0x50, 0x85, 0xaf, 0xde, 0x2a, 0x92, 0x7e, 0x94, 0xad, 0x99, 0x30, 0xfc, - 0x2d, 0xe8, 0xdd, 0x2b, 0x08, 0xad, 0x93, 0xe8, 0x85, 0xad, 0x85, 0xf8, 0xfd, 0x96, 0x25, 0xca, - 0xe9, 0x0e, 0x98, 0x0b, 0x1b, 0x90, 0x78, 0x39, 0x2b, 0x67, 0xf7, 0x7b, 0x8a, 0x1c, 0xb6, 0x0b, - 0x71, 0x08, 0x23, 0xbd, 0x0a, 0x45, 0xea, 0x30, 0x33, 0xaa, 0x0e, 0x1b, 0x61, 0xc2, 0x23, 0x4c, - 0xad, 0x2e, 0x46, 0x4b, 0xa3, 0xeb, 0xea, 0x62, 0x5c, 0xc2, 0x87, 0xea, 0x50, 0x9f, 0xf7, 0x37, - 0xaa, 0x7c, 0x3d, 0x04, 0x50, 0xe6, 0x41, 0x1d, 0x13, 0xa0, 0x7c, 0x00, 0xa0, 0x0c, 0x7f, 0xc9, - 0xfa, 0x8f, 0x41, 0x9a, 0xc8, 0x8a, 0xea, 0x18, 0x3b, 0xc2, 0x91, 0xb2, 0xca, 0xfc, 0x87, 0x65, - 0x95, 0x9d, 0x74, 0x59, 0x6d, 0x80, 0x79, 0x07, 0x6f, 0x35, 0x44, 0xd6, 0xe7, 0x8e, 0xf8, 0x08, - 0xf7, 0x53, 0x97, 0xd4, 0xe9, 0x00, 0x61, 0xc0, 0x18, 0xd4, 0x8f, 0x3b, 0x78, 0x4b, 0xc4, 0x3d, - 0xda, 0xe3, 0x87, 0x9e, 0xf4, 0x83, 0x3d, 0xfe, 0xe6, 0x3f, 0x00, 0x64, 0xeb, 0xd4, 0x94, 0xbb, - 0x40, 0x8e, 0x1b, 0x63, 0xd4, 0xe1, 0x0f, 0x3e, 0x35, 0xf6, 0x1b, 0x25, 0x5f, 0x3e, 0xb4, 0xa8, - 0x48, 0x83, 0x6d, 0x70, 0x3a, 0xf6, 0x53, 0xe6, 0xfa, 0x48, 0x53, 0x7d, 0xe1, 0xfc, 0xad, 0x14, - 0xc2, 0x49, 0xc8, 0x62, 0xd0, 0x3f, 0x0c, 0x72, 0x28, 0x7c, 0x28, 0xe4, 0xa1, 0x91, 0xfc, 0x7b, - 0x09, 0x5c, 0x1a, 0xfd, 0xc1, 0x71, 0x37, 0x85, 0x53, 0x03, 0x9a, 0xf9, 0x7b, 0xe3, 0x6a, 0x0a, - 0x86, 0x2f, 0x24, 0x70, 0x3e, 0xf9, 0xc3, 0x60, 0x29, 0xc1, 0x7e, 0xa2, 0x46, 0xfe, 0x6e, 0x5a, - 0x0d, 0xc1, 0xe4, 0x67, 0x09, 0xdc, 0x48, 0x35, 0x75, 0xaf, 0x26, 0x40, 0xa5, 0x31, 0x92, 0xff, - 0x6c, 0x02, 0x46, 0x84, 0x0b, 0x5f, 0x81, 0x33, 0xf1, 0xa3, 0xeb, 0x8d, 0x04, 0x94, 0x58, 0xe9, - 0xfc, 0xc7, 0x69, 0xa4, 0x05, 0xf8, 0x9f, 0x12, 0xf8, 0x64, 0xbc, 0x89, 0x72, 0x2d, 0x11, 0x6f, - 0x0c, 0x6b, 0xf9, 0xf5, 0x49, 0x5a, 0x1b, 0xc8, 0x8e, 0x54, 0xef, 0x7a, 0x52, 0x76, 0xa4, 0x31, - 0x92, 0x98, 0x1d, 0xe3, 0xbc, 0x83, 0x95, 0x87, 0xaf, 0x77, 0x0b, 0xd2, 0x9b, 0xdd, 0x82, 0xf4, - 0xd7, 0x6e, 0x41, 0x7a, 0xb5, 0x57, 0x98, 0x7a, 0xb3, 0x57, 0x98, 0xfa, 0x7d, 0xaf, 0x30, 0xf5, - 0xe4, 0x76, 0xe4, 0x45, 0xe0, 0x80, 0x25, 0xdb, 0x68, 0xd2, 0x70, 0xa1, 0x6d, 0x96, 0x6f, 0x6b, - 0xdb, 0x03, 0x7f, 0xa3, 0x63, 0xaf, 0x44, 0x73, 0xc6, 0x9f, 0x95, 0x6e, 0xfd, 0x1b, 0x00, 0x00, - 0xff, 0xff, 0x0e, 0x79, 0xfa, 0xf0, 0xc6, 0x13, 0x00, 0x00, + // 1343 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x58, 0xcf, 0x73, 0xd3, 0xc6, + 0x17, 0x8f, 0xec, 0x90, 0xc0, 0x86, 0x00, 0xd1, 0x97, 0x1f, 0xc6, 0x5f, 0xb0, 0xcc, 0x42, 0x69, + 0xf8, 0x61, 0x29, 0x86, 0x16, 0x98, 0x9c, 0x88, 0xe3, 0xa1, 0x63, 0x1a, 0x4f, 0x19, 0x11, 0xa6, + 0x33, 0x5c, 0x3c, 0xb2, 0x77, 0x23, 0xd4, 0xc8, 0x5a, 0xa3, 0x95, 0x92, 0x30, 0x3d, 0xb5, 0x3d, + 0x74, 0x86, 0x13, 0xc7, 0xde, 0x7a, 0x6e, 0x0f, 0x1d, 0xfe, 0x84, 0x1e, 0x7a, 0x60, 0x7a, 0xe2, + 0xd8, 0x69, 0x67, 0x42, 0x87, 0x1c, 0x7a, 0xcf, 0xb1, 0xa7, 0xce, 0x4a, 0xab, 0xb5, 0x9c, 0x48, + 0x38, 0x32, 0xee, 0xa1, 0x97, 0x44, 0xbb, 0xfb, 0x7e, 0x7c, 0xde, 0xdb, 0xf7, 0x79, 0xbb, 0x6b, + 0xf0, 0x7f, 0x42, 0xbb, 0x84, 0x5a, 0x54, 0xa3, 0x7e, 0x0f, 0xbb, 0x6b, 0xb6, 0x6f, 0x21, 0xcd, + 0xdb, 0x52, 0x7b, 0x2e, 0xf1, 0x88, 0x2c, 0xf3, 0x45, 0xb5, 0xbf, 0x58, 0x3c, 0x69, 0x12, 0x93, + 0x04, 0xcb, 0x1a, 0xfb, 0x0a, 0x25, 0x8b, 0x73, 0x46, 0xd7, 0x72, 0x88, 0x16, 0xfc, 0xe5, 0x53, + 0x25, 0x93, 0x10, 0xd3, 0xc6, 0x5a, 0x30, 0x6a, 0xfb, 0x6b, 0x1a, 0xf2, 0x5d, 0xc3, 0xb3, 0x88, + 0x13, 0xad, 0x77, 0x02, 0xeb, 0x5a, 0xdb, 0xa0, 0x58, 0xdb, 0xa8, 0xb6, 0xb1, 0x67, 0x54, 0xb5, + 0x0e, 0xb1, 0xa2, 0x75, 0x65, 0xaf, 0xbe, 0x67, 0x75, 0x31, 0xf5, 0x8c, 0x6e, 0x8f, 0x0b, 0x5c, + 0x4c, 0x80, 0xde, 0xff, 0x0c, 0x85, 0xe0, 0x77, 0x12, 0x38, 0xd5, 0xa4, 0xe6, 0x43, 0x31, 0x5f, + 0xc7, 0x36, 0x36, 0x0d, 0x0f, 0xcb, 0x57, 0xc0, 0x14, 0xc5, 0x0e, 0xc2, 0x6e, 0x41, 0x2a, 0x4b, + 0xf3, 0x47, 0x6a, 0x73, 0xbb, 0xdb, 0xca, 0xec, 0x33, 0xa3, 0x6b, 0x2f, 0xc2, 0x70, 0x1e, 0xea, + 0x5c, 0x40, 0x3e, 0x03, 0xa6, 0x6d, 0xd2, 0x59, 0x6f, 0x59, 0xa8, 0x90, 0x2b, 0x4b, 0xf3, 0x93, + 0xfa, 0x14, 0x1b, 0x36, 0x90, 0x7c, 0x16, 0x1c, 0xde, 0x30, 0xec, 0x96, 0x81, 0x90, 0x5b, 0xc8, + 0x33, 0x2b, 0xfa, 0xf4, 0x86, 0x61, 0x2f, 0x21, 0xe4, 0x2e, 0x96, 0x9f, 0xff, 0xf5, 0xf2, 0x6a, + 0x42, 0x76, 0x2b, 0x88, 0x03, 0x80, 0x0a, 0x38, 0x9f, 0x88, 0x4c, 0xc7, 0xb4, 0x47, 0x1c, 0x8a, + 0xe1, 0x57, 0x12, 0x38, 0x33, 0x20, 0xf1, 0xc8, 0x41, 0x63, 0x44, 0xbf, 0x08, 0x19, 0xc4, 0xf3, + 0x09, 0x10, 0x7d, 0xe1, 0x07, 0x5e, 0x00, 0x4a, 0x0a, 0x04, 0x01, 0xf3, 0xeb, 0xfd, 0x30, 0xdb, + 0xc4, 0x41, 0x2b, 0xa4, 0xb3, 0x3e, 0x16, 0x98, 0x17, 0x19, 0xcc, 0x52, 0x22, 0x4c, 0xe6, 0xa7, + 0xc2, 0xc4, 0x12, 0x70, 0x46, 0x18, 0x04, 0xce, 0x9f, 0x24, 0x70, 0x29, 0x25, 0x96, 0x25, 0x67, + 0xcc, 0xa0, 0xe5, 0x1a, 0x98, 0x64, 0xb5, 0x1c, 0x54, 0xc5, 0xcc, 0x8d, 0xb3, 0x6a, 0x58, 0xec, + 0x2a, 0x2b, 0x76, 0x95, 0x17, 0xbb, 0xba, 0x4c, 0x2c, 0xa7, 0xf6, 0xbf, 0x57, 0xdb, 0xca, 0xc4, + 0xee, 0xb6, 0x32, 0x13, 0x3a, 0x60, 0x4a, 0x50, 0x0f, 0x74, 0xe1, 0x27, 0xe0, 0xfa, 0x41, 0xf0, + 0x46, 0x01, 0xc6, 0xc1, 0x48, 0x71, 0x30, 0x70, 0x57, 0x02, 0xe7, 0x9a, 0xd4, 0x64, 0xc2, 0x4b, + 0x0e, 0x7a, 0x3f, 0x2e, 0x18, 0xe0, 0x10, 0x03, 0x47, 0x0b, 0xb9, 0x72, 0xfe, 0xdd, 0x91, 0x2d, + 0xb0, 0xc8, 0x7e, 0x7c, 0xa3, 0xcc, 0x9b, 0x96, 0xf7, 0xc4, 0x6f, 0xab, 0x1d, 0xd2, 0xd5, 0x38, + 0xe7, 0xc3, 0x7f, 0x15, 0x8a, 0xd6, 0x35, 0xef, 0x59, 0x0f, 0xd3, 0x40, 0x81, 0xea, 0xa1, 0xe5, + 0x77, 0xb1, 0xea, 0x0a, 0xab, 0x85, 0x4b, 0x51, 0x2d, 0xb0, 0xf0, 0x2a, 0x86, 0x83, 0x2a, 0x49, + 0xf4, 0xba, 0x15, 0xec, 0x76, 0x6a, 0xcc, 0x22, 0x6b, 0xc7, 0x40, 0xae, 0x51, 0xe7, 0x09, 0xcb, + 0x35, 0xea, 0xf0, 0x65, 0x0e, 0x68, 0x4d, 0x6a, 0x2e, 0xbb, 0xd8, 0xf0, 0xf0, 0x3d, 0xdf, 0xb6, + 0x75, 0xc3, 0x31, 0xf1, 0x03, 0x42, 0x2d, 0xd6, 0xbc, 0xfe, 0xdb, 0xf9, 0x93, 0xaf, 0x81, 0xe9, + 0x1e, 0x21, 0x36, 0x2b, 0x91, 0x49, 0x16, 0x71, 0x4d, 0xde, 0xdd, 0x56, 0x8e, 0x85, 0x48, 0xf9, + 0x02, 0xd4, 0xa7, 0xd8, 0x57, 0x03, 0x2d, 0x7e, 0xc8, 0x92, 0x0d, 0xa3, 0x64, 0xaf, 0xf9, 0xb6, + 0x5d, 0x71, 0x59, 0x2e, 0xc2, 0x94, 0xaf, 0xf5, 0x53, 0xfd, 0x14, 0xdc, 0xce, 0x98, 0x31, 0x91, + 0xfd, 0xd3, 0x20, 0x2c, 0xd2, 0xfa, 0x40, 0xc9, 0xd6, 0xe5, 0x12, 0x00, 0x3d, 0x6e, 0xa0, 0x51, + 0xe7, 0xdc, 0x8a, 0xcd, 0xb0, 0xbe, 0x5e, 0x68, 0x52, 0xf3, 0x91, 0xf3, 0x80, 0x10, 0xfb, 0xf3, + 0x27, 0x96, 0x87, 0x6d, 0x8b, 0x7a, 0x18, 0xb1, 0x61, 0x96, 0xed, 0x88, 0x25, 0x24, 0x37, 0x34, + 0x21, 0x97, 0x58, 0x42, 0x94, 0x28, 0x21, 0xbe, 0xc3, 0xa6, 0x2b, 0x9b, 0x7d, 0xe7, 0x15, 0x36, + 0x01, 0xef, 0x83, 0x72, 0x1a, 0x32, 0x11, 0xf6, 0x65, 0x70, 0x1c, 0x6f, 0x59, 0x1e, 0x46, 0x2d, + 0xce, 0x58, 0x5a, 0x90, 0xca, 0xf9, 0xf9, 0x49, 0x7d, 0x36, 0x9c, 0x5e, 0x09, 0x88, 0x4b, 0xe1, + 0x0f, 0x79, 0x70, 0x27, 0x30, 0x66, 0x87, 0x75, 0xdc, 0xb4, 0x4c, 0xd7, 0xf0, 0xf0, 0xc3, 0x27, + 0x86, 0x8b, 0xe9, 0x2a, 0x11, 0xc9, 0x5e, 0x26, 0x4e, 0x07, 0x3b, 0x1e, 0x5b, 0x43, 0x51, 0xe2, + 0x33, 0xa6, 0x21, 0xde, 0xc7, 0xf2, 0xf1, 0x34, 0xf0, 0x05, 0x28, 0x7a, 0x9b, 0x09, 0xe6, 0x68, + 0x00, 0xa0, 0xe5, 0x91, 0x56, 0x37, 0x44, 0x34, 0xbc, 0xd1, 0x95, 0x79, 0xa3, 0x2b, 0x70, 0x04, + 0x7b, 0x2d, 0x40, 0xfd, 0x38, 0xe5, 0x61, 0xf1, 0x28, 0xe5, 0xe7, 0x12, 0x38, 0xe6, 0x91, 0x75, + 0xec, 0xb4, 0x88, 0xef, 0xb5, 0xba, 0x8c, 0x35, 0x93, 0xc3, 0x58, 0xd3, 0xe0, 0x6e, 0x4e, 0x85, + 0x6e, 0x06, 0xd5, 0x61, 0x26, 0x3a, 0x1d, 0x0d, 0x94, 0x3f, 0xf3, 0xbd, 0xa6, 0xe5, 0xd0, 0x45, + 0x85, 0x6d, 0x7e, 0xb1, 0xbf, 0xf9, 0xa2, 0xf9, 0x44, 0xf8, 0x7f, 0xcd, 0x83, 0xbb, 0xa3, 0xee, + 0x95, 0x28, 0x8c, 0xc7, 0x60, 0xda, 0xe8, 0x12, 0xdf, 0xf1, 0x16, 0xf8, 0xa6, 0xdd, 0x65, 0xf1, + 0xfc, 0xbe, 0xad, 0x5c, 0x3e, 0x00, 0xec, 0x86, 0xe3, 0xf5, 0xb7, 0x8d, 0x9b, 0x81, 0x7a, 0x64, + 0xb0, 0x6f, 0xbb, 0x1a, 0x6c, 0xf2, 0x7b, 0xdb, 0xae, 0x0a, 0xdb, 0x55, 0x79, 0x13, 0xcc, 0xd9, + 0xd6, 0x53, 0xdf, 0x42, 0x96, 0xf7, 0xac, 0xd5, 0x09, 0x3a, 0x01, 0x0a, 0x9b, 0x4f, 0xed, 0x7e, + 0x06, 0x2f, 0x75, 0xdc, 0xe9, 0x97, 0xc8, 0x3e, 0x83, 0x50, 0x3f, 0x21, 0xe6, 0xc2, 0x6e, 0x83, + 0xe4, 0x47, 0xe0, 0xc8, 0x17, 0xc4, 0x72, 0x5a, 0xec, 0x76, 0x18, 0xf4, 0xb4, 0x99, 0x1b, 0x45, + 0x35, 0xbc, 0x3a, 0xaa, 0xd1, 0xd5, 0x51, 0x5d, 0x8d, 0xae, 0x8e, 0xb5, 0x73, 0xbc, 0x3c, 0x4e, + 0x84, 0x2e, 0x84, 0x2a, 0x7c, 0xf1, 0x46, 0x91, 0xf4, 0xc3, 0x6c, 0xcc, 0x84, 0xe1, 0x37, 0xf9, + 0xe0, 0x14, 0x58, 0x42, 0x68, 0x95, 0xc4, 0x37, 0x6c, 0x25, 0xf2, 0xdf, 0xef, 0x69, 0x82, 0x6f, + 0xb7, 0xc1, 0x4c, 0xd4, 0xa1, 0xc4, 0x19, 0x5c, 0x3b, 0xbd, 0xbb, 0xad, 0xc8, 0x51, 0x3f, 0x11, + 0x8b, 0x30, 0xd6, 0xcc, 0x50, 0x8c, 0xa8, 0xb9, 0x61, 0x44, 0x6d, 0x45, 0x8c, 0x40, 0x98, 0x5a, + 0x2e, 0x46, 0x0b, 0xc3, 0x89, 0x77, 0x3e, 0x89, 0x11, 0x91, 0x3a, 0xd4, 0x67, 0x83, 0x89, 0x3a, + 0x1f, 0xef, 0x73, 0x50, 0xe5, 0x49, 0x1d, 0xd1, 0x41, 0x75, 0x8f, 0x83, 0xea, 0xe2, 0x55, 0xc6, + 0xa3, 0x0f, 0x22, 0x1e, 0x19, 0x08, 0x55, 0x3c, 0x52, 0xe9, 0xd8, 0xf1, 0x33, 0x3c, 0x4a, 0x0d, + 0xfc, 0x25, 0x1f, 0x9c, 0x2c, 0x59, 0x76, 0x41, 0x30, 0x69, 0xe4, 0xdd, 0x88, 0x51, 0x30, 0xf7, + 0x2f, 0x52, 0x30, 0x3f, 0x6e, 0x0a, 0xae, 0x83, 0x59, 0x07, 0x6f, 0xb6, 0x04, 0x43, 0x0a, 0x87, + 0x02, 0x0f, 0xf7, 0x32, 0xd3, 0xef, 0x64, 0xe8, 0x61, 0xc0, 0x18, 0xd4, 0x8f, 0x3a, 0x78, 0x53, + 0xe4, 0x3d, 0x7e, 0x60, 0xec, 0xbb, 0x48, 0xec, 0x3d, 0x30, 0x6e, 0xfc, 0x0d, 0x40, 0xbe, 0x49, + 0x4d, 0xd9, 0x05, 0x72, 0xd2, 0xe5, 0x49, 0xdd, 0xff, 0xcc, 0x54, 0x13, 0x5f, 0x46, 0xc5, 0xea, + 0x81, 0x45, 0x45, 0x19, 0x6c, 0x81, 0x93, 0x89, 0x0f, 0xa8, 0x6b, 0x43, 0x4d, 0xf5, 0x85, 0x8b, + 0x37, 0x33, 0x08, 0xa7, 0x79, 0x16, 0xcf, 0x8b, 0x83, 0x78, 0x8e, 0x84, 0x0f, 0xe4, 0x79, 0xdf, + 0x43, 0xe0, 0x7b, 0x09, 0x5c, 0x18, 0xfe, 0xcc, 0xb9, 0x93, 0x21, 0xa8, 0x01, 0xcd, 0xe2, 0xdd, + 0x51, 0x35, 0x05, 0xc2, 0x6f, 0x25, 0x70, 0x36, 0xfd, 0x39, 0xb2, 0x90, 0x62, 0x3f, 0x55, 0xa3, + 0x78, 0x27, 0xab, 0x86, 0x40, 0xf2, 0xb3, 0x04, 0xae, 0x67, 0xba, 0xeb, 0x2f, 0xa7, 0xb8, 0xca, + 0x62, 0xa4, 0xf8, 0xe9, 0x18, 0x8c, 0x88, 0x10, 0xbe, 0x04, 0xa7, 0x92, 0xef, 0xc1, 0xd7, 0x53, + 0xbc, 0x24, 0x4a, 0x17, 0x3f, 0xca, 0x22, 0x2d, 0x9c, 0xff, 0x21, 0x81, 0x8f, 0x47, 0xbb, 0x9e, + 0xae, 0xa4, 0xfa, 0x1b, 0xc1, 0x5a, 0x71, 0x75, 0x9c, 0xd6, 0x06, 0xaa, 0x23, 0xd3, 0x1d, 0x20, + 0xad, 0x3a, 0xb2, 0x18, 0x49, 0xad, 0x8e, 0x51, 0xce, 0xc1, 0xda, 0x83, 0x57, 0x6f, 0x4b, 0xd2, + 0xeb, 0xb7, 0x25, 0xe9, 0xcf, 0xb7, 0x25, 0xe9, 0xc5, 0x4e, 0x69, 0xe2, 0xf5, 0x4e, 0x69, 0xe2, + 0xb7, 0x9d, 0xd2, 0xc4, 0xe3, 0x5b, 0xb1, 0x13, 0x81, 0x3b, 0xac, 0xd8, 0x46, 0x9b, 0x46, 0x03, + 0x6d, 0xa3, 0x7a, 0x4b, 0xdb, 0x1a, 0xf8, 0x65, 0x90, 0x9d, 0x12, 0xed, 0xa9, 0xe0, 0x5e, 0x75, + 0xf3, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xce, 0x7c, 0x80, 0xa0, 0x3c, 0x14, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/tokenfactory/types/tx.pb.go b/x/tokenfactory/types/tx.pb.go index 4eda152540d..99e46717789 100644 --- a/x/tokenfactory/types/tx.pb.go +++ b/x/tokenfactory/types/tx.pb.go @@ -651,57 +651,58 @@ func init() { } var fileDescriptor_283b6c9a90a846b4 = []byte{ - // 790 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0xcf, 0x4f, 0xdb, 0x48, - 0x14, 0x8e, 0xf9, 0xb5, 0x30, 0x6c, 0x36, 0x89, 0x61, 0xd9, 0xe0, 0x05, 0x9b, 0xb5, 0x04, 0xda, - 0x5d, 0x6d, 0x6c, 0x85, 0x5d, 0xa1, 0x2d, 0xa7, 0x12, 0x2a, 0xd4, 0x43, 0x73, 0x71, 0x39, 0x55, - 0x48, 0x91, 0x93, 0x0c, 0xc6, 0x02, 0xcf, 0x50, 0xcf, 0x84, 0xc0, 0xad, 0xe7, 0x9e, 0x7a, 0xe0, - 0x3f, 0xe8, 0xa9, 0xb7, 0xfe, 0x05, 0x3d, 0x73, 0xe4, 0xd8, 0x93, 0x85, 0x40, 0x6a, 0xef, 0xfe, - 0x0b, 0xaa, 0xf9, 0x61, 0xe7, 0xa7, 0x48, 0x72, 0xe2, 0x82, 0xf0, 0xbc, 0xef, 0xfb, 0xe6, 0x7d, - 0x6f, 0xde, 0x7b, 0x00, 0x36, 0x31, 0x09, 0x30, 0xf1, 0x89, 0x4d, 0xf1, 0x29, 0x44, 0xc7, 0x6e, - 0x83, 0xe2, 0xf0, 0xca, 0xbe, 0x28, 0xd7, 0x21, 0x75, 0xcb, 0x36, 0xbd, 0xb4, 0xce, 0x43, 0x4c, - 0xb1, 0xba, 0x26, 0x61, 0x56, 0x37, 0xcc, 0x92, 0x30, 0x6d, 0xd9, 0xc3, 0x1e, 0xe6, 0x40, 0x9b, - 0xfd, 0x26, 0x38, 0x5a, 0xc1, 0x0d, 0x7c, 0x84, 0x6d, 0xfe, 0x53, 0x1e, 0xe9, 0x0d, 0xae, 0x63, - 0xd7, 0x5d, 0x02, 0xd3, 0x4b, 0x1a, 0xd8, 0x47, 0x03, 0x71, 0x74, 0x9a, 0xc6, 0xd9, 0x87, 0x88, - 0x9b, 0xd7, 0x0a, 0xf8, 0xa5, 0x4a, 0xbc, 0xfd, 0x10, 0xba, 0x14, 0xbe, 0x80, 0x08, 0x07, 0xea, - 0x5f, 0x60, 0x8e, 0x40, 0xd4, 0x84, 0x61, 0x51, 0xd9, 0x50, 0xfe, 0x5c, 0xa8, 0x14, 0xe2, 0xc8, - 0xc8, 0x5e, 0xb9, 0xc1, 0xd9, 0xae, 0x29, 0xce, 0x4d, 0x47, 0x02, 0x54, 0x1b, 0xcc, 0x93, 0x56, - 0xbd, 0xc9, 0x68, 0xc5, 0x29, 0x0e, 0x5e, 0x8a, 0x23, 0x23, 0x27, 0xc1, 0x32, 0x62, 0x3a, 0x29, - 0x68, 0x77, 0xeb, 0xfd, 0xf7, 0xcf, 0x7f, 0xff, 0x31, 0xb4, 0x42, 0x0d, 0x9e, 0x42, 0x49, 0x50, - 0x8e, 0xc0, 0x4a, 0x6f, 0x56, 0x0e, 0x24, 0xe7, 0x18, 0x11, 0xa8, 0x56, 0x40, 0x0e, 0xc1, 0x76, - 0x8d, 0x53, 0x6b, 0xe2, 0x66, 0x91, 0xa6, 0x16, 0x47, 0xc6, 0x8a, 0xb8, 0xb9, 0x0f, 0x60, 0x3a, - 0x59, 0x04, 0xdb, 0x87, 0xec, 0x80, 0x6b, 0x99, 0x77, 0x0a, 0xf8, 0xa9, 0x4a, 0xbc, 0xaa, 0x8f, - 0xe8, 0x24, 0x6e, 0x5f, 0x82, 0x39, 0x37, 0xc0, 0x2d, 0x44, 0xb9, 0xd7, 0xc5, 0xed, 0x55, 0x4b, - 0x14, 0xd7, 0x62, 0xc5, 0x4f, 0x9e, 0xce, 0xda, 0xc7, 0x3e, 0xaa, 0xfc, 0x7a, 0x13, 0x19, 0x99, - 0x8e, 0x92, 0xa0, 0x99, 0x8e, 0xe4, 0xab, 0xcf, 0x41, 0x36, 0xf0, 0x11, 0x3d, 0xc4, 0x7b, 0xcd, - 0x66, 0x08, 0x09, 0x29, 0x4e, 0xf7, 0x5b, 0x60, 0xe1, 0x1a, 0xc5, 0x35, 0x57, 0x00, 0x4c, 0xa7, - 0x97, 0xb0, 0xab, 0xb3, 0x42, 0xae, 0x0e, 0x2d, 0x24, 0x03, 0x9a, 0x05, 0x90, 0x93, 0x0e, 0x93, - 0xca, 0x99, 0xdf, 0x84, 0xeb, 0x4a, 0x2b, 0x44, 0x4f, 0xe3, 0xfa, 0x00, 0xe4, 0xea, 0xad, 0x10, - 0x1d, 0x84, 0x38, 0xe8, 0xf5, 0xbd, 0x16, 0x47, 0x46, 0x51, 0x70, 0x18, 0xa0, 0x76, 0x1c, 0xe2, - 0xa0, 0xe3, 0xbc, 0x9f, 0xf4, 0x98, 0x77, 0x06, 0x95, 0xde, 0x99, 0xcf, 0xd4, 0xfb, 0x17, 0xd9, - 0xe6, 0x27, 0x2e, 0xf2, 0xe0, 0x5e, 0x33, 0xf0, 0x27, 0x2a, 0xc1, 0x16, 0x98, 0xed, 0xee, 0xf1, - 0x7c, 0x1c, 0x19, 0x3f, 0x0b, 0xa4, 0xec, 0x2f, 0x11, 0x56, 0xcb, 0x60, 0x81, 0xb5, 0x9e, 0xcb, - 0xf4, 0xa5, 0xb5, 0xe5, 0x38, 0x32, 0xf2, 0x9d, 0xae, 0xe4, 0x21, 0xd3, 0x99, 0x47, 0xb0, 0xcd, - 0xb3, 0x78, 0x74, 0x20, 0x78, 0xb2, 0x25, 0x41, 0x29, 0x8a, 0x81, 0xe8, 0xe4, 0x9f, 0x5a, 0xbb, - 0x56, 0xc0, 0x52, 0x95, 0x78, 0xaf, 0x21, 0xe5, 0xcd, 0x5d, 0x85, 0xd4, 0x6d, 0xba, 0xd4, 0x9d, - 0xc4, 0x9f, 0x03, 0xe6, 0x03, 0x49, 0x93, 0x8f, 0xbc, 0xde, 0x79, 0x64, 0x74, 0x9a, 0x3e, 0x72, - 0xa2, 0x5d, 0xf9, 0x4d, 0x3e, 0xb4, 0x9c, 0xf4, 0x84, 0x6c, 0x3a, 0xa9, 0x8e, 0xb9, 0x0e, 0x7e, - 0x1f, 0x92, 0x55, 0x9a, 0xf5, 0xa7, 0x29, 0x90, 0xaf, 0x12, 0xef, 0x00, 0x87, 0x0d, 0x78, 0x18, - 0xba, 0x88, 0x1c, 0xc3, 0xf0, 0x69, 0xba, 0xd2, 0x01, 0x4b, 0x54, 0x26, 0x30, 0xd8, 0x99, 0x1b, - 0x71, 0x64, 0xac, 0x09, 0x5e, 0x02, 0xea, 0xeb, 0xce, 0x61, 0x64, 0xf5, 0x15, 0x28, 0x24, 0xc7, - 0x9d, 0x19, 0x9f, 0xe1, 0x8a, 0x7a, 0x1c, 0x19, 0x5a, 0x9f, 0x62, 0xf7, 0x9c, 0x0f, 0x12, 0x4d, - 0x0d, 0x14, 0xfb, 0x4b, 0x95, 0xd4, 0x71, 0xfb, 0xe3, 0x2c, 0x98, 0xae, 0x12, 0x4f, 0x7d, 0x0b, - 0x16, 0xbb, 0x77, 0xf8, 0x3f, 0xd6, 0x63, 0x7f, 0x5e, 0xac, 0xde, 0xdd, 0xaa, 0xfd, 0x37, 0x09, - 0x3a, 0xdd, 0xc4, 0x47, 0x60, 0x86, 0x6f, 0xd0, 0xcd, 0x91, 0x6c, 0x06, 0xd3, 0x4a, 0x63, 0xc1, - 0xba, 0xd5, 0xf9, 0xa6, 0x1a, 0xad, 0xce, 0x60, 0x63, 0xa8, 0x77, 0xef, 0x03, 0x5e, 0xae, 0xae, - 0x5d, 0x30, 0x46, 0xb9, 0x3a, 0xe8, 0x71, 0xca, 0x35, 0x38, 0xa7, 0xea, 0x3b, 0x05, 0xe4, 0x07, - 0x86, 0xb4, 0x3c, 0x52, 0xaa, 0x9f, 0xa2, 0x3d, 0x9b, 0x98, 0x92, 0xa6, 0xd0, 0x06, 0xd9, 0xde, - 0x81, 0xb3, 0x46, 0x6a, 0xf5, 0xe0, 0xb5, 0x9d, 0xc9, 0xf0, 0xc9, 0xc5, 0x15, 0xe7, 0xe6, 0x5e, - 0x57, 0x6e, 0xef, 0x75, 0xe5, 0xee, 0x5e, 0x57, 0x3e, 0x3c, 0xe8, 0x99, 0xdb, 0x07, 0x3d, 0xf3, - 0xf5, 0x41, 0xcf, 0xbc, 0xf9, 0xdf, 0xf3, 0xe9, 0x49, 0xab, 0x6e, 0x35, 0x70, 0x60, 0x4b, 0xed, - 0xd2, 0x99, 0x5b, 0x27, 0xc9, 0x87, 0x7d, 0x51, 0xde, 0xb1, 0x2f, 0x7b, 0x17, 0x23, 0xbd, 0x3a, - 0x87, 0xa4, 0x3e, 0xc7, 0xff, 0x81, 0xf9, 0xf7, 0x47, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb9, 0x3e, - 0x9e, 0xa1, 0x70, 0x09, 0x00, 0x00, + // 803 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0xcd, 0x4e, 0xeb, 0x46, + 0x14, 0x8e, 0xf9, 0x2b, 0x0c, 0x4d, 0x93, 0x18, 0x4a, 0x83, 0x0b, 0x36, 0x75, 0x05, 0xa2, 0x55, + 0x63, 0x2b, 0xb4, 0x42, 0x6d, 0x56, 0x25, 0x54, 0xa8, 0x8b, 0x66, 0xe3, 0xb2, 0xaa, 0x90, 0x22, + 0x27, 0x99, 0x18, 0x0b, 0x3c, 0x43, 0x3d, 0x13, 0x02, 0xbb, 0xae, 0xbb, 0xea, 0x82, 0x37, 0xe8, + 0x0b, 0xdc, 0x27, 0xb8, 0x6b, 0x96, 0x48, 0x77, 0x73, 0x57, 0x16, 0x02, 0xe9, 0xde, 0xbd, 0x9f, + 0xe0, 0x6a, 0x7e, 0xec, 0xfc, 0x8a, 0x24, 0x2b, 0x36, 0x08, 0xcf, 0xf9, 0xbe, 0x6f, 0xce, 0x77, + 0xe6, 0x9c, 0x03, 0x60, 0x17, 0x93, 0x00, 0x13, 0x9f, 0xd8, 0x14, 0x5f, 0x40, 0xd4, 0x76, 0x9b, + 0x14, 0x87, 0xb7, 0xf6, 0x75, 0xb9, 0x01, 0xa9, 0x5b, 0xb6, 0xe9, 0x8d, 0x75, 0x15, 0x62, 0x8a, + 0xd5, 0x2d, 0x09, 0xb3, 0xfa, 0x61, 0x96, 0x84, 0x69, 0xeb, 0x1e, 0xf6, 0x30, 0x07, 0xda, 0xec, + 0x37, 0xc1, 0xd1, 0x0a, 0x6e, 0xe0, 0x23, 0x6c, 0xf3, 0x9f, 0xf2, 0x48, 0x6f, 0x72, 0x1d, 0xbb, + 0xe1, 0x12, 0x98, 0x5e, 0xd2, 0xc4, 0x3e, 0x1a, 0x89, 0xa3, 0x8b, 0x34, 0xce, 0x3e, 0x44, 0xdc, + 0xbc, 0x53, 0xc0, 0x17, 0x35, 0xe2, 0x1d, 0x87, 0xd0, 0xa5, 0xf0, 0x37, 0x88, 0x70, 0xa0, 0x7e, + 0x07, 0x96, 0x08, 0x44, 0x2d, 0x18, 0x16, 0x95, 0x1d, 0x65, 0x7f, 0xa5, 0x5a, 0x88, 0x23, 0x23, + 0x7b, 0xeb, 0x06, 0x97, 0x15, 0x53, 0x9c, 0x9b, 0x8e, 0x04, 0xa8, 0x36, 0x58, 0x26, 0x9d, 0x46, + 0x8b, 0xd1, 0x8a, 0x73, 0x1c, 0xbc, 0x16, 0x47, 0x46, 0x4e, 0x82, 0x65, 0xc4, 0x74, 0x52, 0x50, + 0x65, 0xef, 0xdf, 0x8f, 0x6f, 0xbe, 0xff, 0x66, 0x6c, 0x85, 0x9a, 0x3c, 0x85, 0x92, 0xa0, 0x9c, + 0x81, 0x8d, 0xc1, 0xac, 0x1c, 0x48, 0xae, 0x30, 0x22, 0x50, 0xad, 0x82, 0x1c, 0x82, 0xdd, 0x3a, + 0xa7, 0xd6, 0xc5, 0xcd, 0x22, 0x4d, 0x2d, 0x8e, 0x8c, 0x0d, 0x71, 0xf3, 0x10, 0xc0, 0x74, 0xb2, + 0x08, 0x76, 0x4f, 0xd9, 0x01, 0xd7, 0x32, 0x1f, 0x15, 0xf0, 0x59, 0x8d, 0x78, 0x35, 0x1f, 0xd1, + 0x59, 0xdc, 0xfe, 0x0e, 0x96, 0xdc, 0x00, 0x77, 0x10, 0xe5, 0x5e, 0x57, 0x0f, 0x36, 0x2d, 0x51, + 0x5c, 0x8b, 0x15, 0x3f, 0x79, 0x3a, 0xeb, 0x18, 0xfb, 0xa8, 0xfa, 0xe5, 0x7d, 0x64, 0x64, 0x7a, + 0x4a, 0x82, 0x66, 0x3a, 0x92, 0xaf, 0xfe, 0x0a, 0xb2, 0x81, 0x8f, 0xe8, 0x29, 0x3e, 0x6a, 0xb5, + 0x42, 0x48, 0x48, 0x71, 0x7e, 0xd8, 0x02, 0x0b, 0xd7, 0x29, 0xae, 0xbb, 0x02, 0x60, 0x3a, 0x83, + 0x84, 0x8a, 0xce, 0x0a, 0xb9, 0x39, 0xb6, 0x90, 0x0c, 0x68, 0x16, 0x40, 0x4e, 0x3a, 0x4c, 0x2a, + 0x67, 0x7e, 0x10, 0xae, 0xab, 0x9d, 0x10, 0xbd, 0x8e, 0xeb, 0x13, 0x90, 0x6b, 0x74, 0x42, 0x74, + 0x12, 0xe2, 0x60, 0xd0, 0xf7, 0x56, 0x1c, 0x19, 0x45, 0xc1, 0x61, 0x80, 0x7a, 0x3b, 0xc4, 0x41, + 0xcf, 0xf9, 0x30, 0xe9, 0x25, 0xef, 0x0c, 0x2a, 0xbd, 0x33, 0x9f, 0xa9, 0xf7, 0xb7, 0xb2, 0xcd, + 0xcf, 0x5d, 0xe4, 0xc1, 0xa3, 0x56, 0xe0, 0xcf, 0x54, 0x82, 0x3d, 0xb0, 0xd8, 0xdf, 0xe3, 0xf9, + 0x38, 0x32, 0x3e, 0x17, 0x48, 0xd9, 0x5f, 0x22, 0xac, 0x96, 0xc1, 0x0a, 0x6b, 0x3d, 0x97, 0xe9, + 0x4b, 0x6b, 0xeb, 0x71, 0x64, 0xe4, 0x7b, 0x5d, 0xc9, 0x43, 0xa6, 0xb3, 0x8c, 0x60, 0x97, 0x67, + 0xf1, 0xe2, 0x40, 0xf0, 0x64, 0x4b, 0x82, 0x52, 0x14, 0x03, 0xd1, 0xcb, 0x3f, 0xb5, 0x76, 0xa7, + 0x80, 0xb5, 0x1a, 0xf1, 0xfe, 0x84, 0x94, 0x37, 0x77, 0x0d, 0x52, 0xb7, 0xe5, 0x52, 0x77, 0x16, + 0x7f, 0x0e, 0x58, 0x0e, 0x24, 0x4d, 0x3e, 0xf2, 0x76, 0xef, 0x91, 0xd1, 0x45, 0xfa, 0xc8, 0x89, + 0x76, 0xf5, 0x2b, 0xf9, 0xd0, 0x72, 0xd2, 0x13, 0xb2, 0xe9, 0xa4, 0x3a, 0xe6, 0x36, 0xf8, 0x7a, + 0x4c, 0x56, 0x69, 0xd6, 0xef, 0xe6, 0x40, 0xbe, 0x46, 0xbc, 0x13, 0x1c, 0x36, 0xe1, 0x69, 0xe8, + 0x22, 0xd2, 0x86, 0xe1, 0xeb, 0x74, 0xa5, 0x03, 0xd6, 0xa8, 0x4c, 0x60, 0xb4, 0x33, 0x77, 0xe2, + 0xc8, 0xd8, 0x12, 0xbc, 0x04, 0x34, 0xd4, 0x9d, 0xe3, 0xc8, 0xea, 0x1f, 0xa0, 0x90, 0x1c, 0xf7, + 0x66, 0x7c, 0x81, 0x2b, 0xea, 0x71, 0x64, 0x68, 0x43, 0x8a, 0xfd, 0x73, 0x3e, 0x4a, 0xac, 0xec, + 0xb3, 0x1e, 0xf9, 0x76, 0x6c, 0x8f, 0xb4, 0x59, 0xfd, 0x4a, 0x09, 0xc5, 0xd4, 0x40, 0x71, 0xb8, + 0xa8, 0x49, 0xc5, 0x0f, 0xfe, 0x5f, 0x04, 0xf3, 0x35, 0xe2, 0xa9, 0x7f, 0x83, 0xd5, 0xfe, 0x6d, + 0xff, 0x83, 0xf5, 0xd2, 0x1f, 0x22, 0x6b, 0x70, 0x0b, 0x6b, 0x3f, 0xcd, 0x82, 0x4e, 0x77, 0xf6, + 0x19, 0x58, 0xe0, 0xbb, 0x76, 0x77, 0x22, 0x9b, 0xc1, 0xb4, 0xd2, 0x54, 0xb0, 0x7e, 0x75, 0xbe, + 0xd3, 0x26, 0xab, 0x33, 0xd8, 0x14, 0xea, 0xfd, 0x9b, 0x83, 0x97, 0xab, 0x6f, 0x6b, 0x4c, 0x51, + 0xae, 0x1e, 0x7a, 0x9a, 0x72, 0x8d, 0x4e, 0xb4, 0xfa, 0x8f, 0x02, 0xf2, 0x23, 0xe3, 0x5c, 0x9e, + 0x28, 0x35, 0x4c, 0xd1, 0x7e, 0x99, 0x99, 0x92, 0xa6, 0xd0, 0x05, 0xd9, 0xc1, 0xd1, 0xb4, 0x26, + 0x6a, 0x0d, 0xe0, 0xb5, 0xc3, 0xd9, 0xf0, 0xc9, 0xc5, 0x55, 0xe7, 0xfe, 0x49, 0x57, 0x1e, 0x9e, + 0x74, 0xe5, 0xf1, 0x49, 0x57, 0xfe, 0x7b, 0xd6, 0x33, 0x0f, 0xcf, 0x7a, 0xe6, 0xfd, 0xb3, 0x9e, + 0xf9, 0xeb, 0x67, 0xcf, 0xa7, 0xe7, 0x9d, 0x86, 0xd5, 0xc4, 0x81, 0x2d, 0xb5, 0x4b, 0x97, 0x6e, + 0x83, 0x24, 0x1f, 0xf6, 0x75, 0xf9, 0xd0, 0xbe, 0x19, 0x1c, 0x0f, 0x7a, 0x7b, 0x05, 0x49, 0x63, + 0x89, 0xff, 0xab, 0xf3, 0xe3, 0xa7, 0x00, 0x00, 0x00, 0xff, 0xff, 0x54, 0x69, 0xf5, 0x29, 0x9a, + 0x09, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.