diff --git a/proto/cosmos/quarantine/v1beta1/events.proto b/proto/cosmos/quarantine/v1beta1/events.proto index a6423e95ce..a5d1ae6ba6 100644 --- a/proto/cosmos/quarantine/v1beta1/events.proto +++ b/proto/cosmos/quarantine/v1beta1/events.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package cosmos.quarantine.v1beta1; +import "amino/amino.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; @@ -20,13 +21,21 @@ message EventOptOut { // EventFundsQuarantined is an event emitted when funds are quarantined. message EventFundsQuarantined { string to_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; - repeated cosmos.base.v1beta1.Coin coins = 2 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin coins = 2 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; } // EventFundsReleased is an event emitted when quarantined funds are accepted and released. message EventFundsReleased { string to_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; - repeated cosmos.base.v1beta1.Coin coins = 2 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin coins = 2 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; } diff --git a/proto/cosmos/quarantine/v1beta1/quarantine.proto b/proto/cosmos/quarantine/v1beta1/quarantine.proto index 65d0b80adc..30ed457c00 100644 --- a/proto/cosmos/quarantine/v1beta1/quarantine.proto +++ b/proto/cosmos/quarantine/v1beta1/quarantine.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package cosmos.quarantine.v1beta1; +import "amino/amino.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; @@ -14,8 +15,12 @@ message QuarantinedFunds { // unaccepted_from_addresses are the senders that have not been part of an accept yet for these coins. repeated string unaccepted_from_addresses = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // coins is the amount currently in quarantined for the two addresses. - repeated cosmos.base.v1beta1.Coin coins = 3 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin coins = 3 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // declined is true if these funds were previously declined. bool declined = 4; } @@ -61,8 +66,12 @@ message QuarantineRecord { // accepted_from_addresses are the senders that have already been part of an accept for these coins. repeated bytes accepted_from_addresses = 2 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; // coins is the amount that has been quarantined. - repeated cosmos.base.v1beta1.Coin coins = 3 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin coins = 3 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // declined is whether these funds have been declined. bool declined = 4; } diff --git a/proto/cosmos/quarantine/v1beta1/tx.proto b/proto/cosmos/quarantine/v1beta1/tx.proto index 167867791c..0d59225e86 100644 --- a/proto/cosmos/quarantine/v1beta1/tx.proto +++ b/proto/cosmos/quarantine/v1beta1/tx.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package cosmos.quarantine.v1beta1; +import "amino/amino.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos/msg/v1/msg.proto"; @@ -69,8 +70,12 @@ message MsgAccept { // MsgAcceptResponse defines the Msg/Accept response type. message MsgAcceptResponse { // funds_released is the amount that was quarantined but has now been released and sent to the requester. - repeated cosmos.base.v1beta1.Coin funds_released = 1 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin funds_released = 1 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; } // MsgDecline represents a message for declining quarantined funds. diff --git a/proto/cosmos/sanction/v1beta1/sanction.proto b/proto/cosmos/sanction/v1beta1/sanction.proto index 35cb0720e9..b24febba67 100644 --- a/proto/cosmos/sanction/v1beta1/sanction.proto +++ b/proto/cosmos/sanction/v1beta1/sanction.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package cosmos.sanction.v1beta1; +import "amino/amino.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; @@ -13,15 +14,23 @@ message Params { // If this is zero, immediate sanctioning is not available. // Otherwise, if a sanction governance proposal is issued with a deposit at least this large, a temporary sanction // will be immediately issued that will expire when voting ends on the governance proposal. - repeated cosmos.base.v1beta1.Coin immediate_sanction_min_deposit = 1 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin immediate_sanction_min_deposit = 1 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // immediate_unsanction_min_deposit is the minimum deposit for an unsanction to happen immediately. // If this is zero, immediate unsanctioning is not available. // Otherwise, if an unsanction governance proposal is issued with a deposit at least this large, a temporary // unsanction will be immediately issued that will expire when voting ends on the governance proposal. - repeated cosmos.base.v1beta1.Coin immediate_unsanction_min_deposit = 2 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin immediate_unsanction_min_deposit = 2 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; } // TemporaryEntry defines the information involved in a temporary sanction or unsanction. diff --git a/proto/provenance/exchange/v1/commitments.proto b/proto/provenance/exchange/v1/commitments.proto index 7899c2d9db..01d475cd6b 100644 --- a/proto/provenance/exchange/v1/commitments.proto +++ b/proto/provenance/exchange/v1/commitments.proto @@ -6,6 +6,7 @@ option go_package = "github.com/provenance-io/provenance/x/exchange"; option java_package = "io.provenance.exchange.v1"; option java_multiple_files = true; +import "amino/amino.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; @@ -17,8 +18,12 @@ message Commitment { // market_id is the numeric identifier of the market the funds are committed to. uint32 market_id = 2; // amount is the funds that have been committed by the account to the market. - repeated cosmos.base.v1beta1.Coin amount = 3 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin amount = 3 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; } // AccountAmount associates an account with a coins amount. @@ -27,8 +32,12 @@ message AccountAmount { // account is the bech32 address string of the account associated with the amount. string account = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // amount is the funds associated with the address. - repeated cosmos.base.v1beta1.Coin amount = 2 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin amount = 2 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; } // MarketAmount associates a market with a coins amount. @@ -37,8 +46,12 @@ message MarketAmount { // market_id is the numeric identifier the amount has been committed to. uint32 market_id = 1; // amount is the funds associated with the address. - repeated cosmos.base.v1beta1.Coin amount = 2 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin amount = 2 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; } // NetAssetPrice is an association of assets and price used to record the value of things. diff --git a/proto/provenance/exchange/v1/orders.proto b/proto/provenance/exchange/v1/orders.proto index b488663842..c258ba74ab 100644 --- a/proto/provenance/exchange/v1/orders.proto +++ b/proto/provenance/exchange/v1/orders.proto @@ -6,6 +6,7 @@ option go_package = "github.com/provenance-io/provenance/x/exchange"; option java_package = "io.provenance.exchange.v1"; option java_multiple_files = true; +import "amino/amino.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; @@ -70,8 +71,12 @@ message BidOrder { cosmos.base.v1beta1.Coin price = 4 [(gogoproto.nullable) = false]; // buyer_settlement_fees are the fees (both flat and proportional) that the buyer will pay (in addition to the price) // when the order is settled. A hold is placed on this until the order is filled or cancelled. - repeated cosmos.base.v1beta1.Coin buyer_settlement_fees = 5 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin buyer_settlement_fees = 5 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // allow_partial should be true if partial fulfillment of this order should be allowed, and should be false if the // order must be either filled in full or not filled at all. bool allow_partial = 6; diff --git a/proto/provenance/exchange/v1/params.proto b/proto/provenance/exchange/v1/params.proto index 2ed72b68c5..a2ab15047e 100644 --- a/proto/provenance/exchange/v1/params.proto +++ b/proto/provenance/exchange/v1/params.proto @@ -6,6 +6,7 @@ option go_package = "github.com/provenance-io/provenance/x/exchange"; option java_package = "io.provenance.exchange.v1"; option java_multiple_files = true; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; @@ -16,15 +17,17 @@ message Params { // E.g. 100 = 1%. Min = 0, Max = 10000. uint32 default_split = 1; // denom_splits are the denom-specific amounts the exchange receives. - repeated DenomSplit denom_splits = 2 [(gogoproto.nullable) = false]; + repeated DenomSplit denom_splits = 2 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; // fee_create_payment_flat is the flat fee options for creating a payment. // If the source amount is not zero then one of these fee entries is required to create the payment. // This field is currently limited to zero or one entries. - repeated cosmos.base.v1beta1.Coin fee_create_payment_flat = 3 [(gogoproto.nullable) = false]; + repeated cosmos.base.v1beta1.Coin fee_create_payment_flat = 3 + [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; // fee_accept_payment_flat is the flat fee options for accepting a payment. // If the target amount is not zero then one of these fee entries is required to accept the payment. // This field is currently limited to zero or one entries. - repeated cosmos.base.v1beta1.Coin fee_accept_payment_flat = 4 [(gogoproto.nullable) = false]; + repeated cosmos.base.v1beta1.Coin fee_accept_payment_flat = 4 + [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; } // DenomSplit associates a coin denomination with an amount the exchange receives for that denom. diff --git a/proto/provenance/exchange/v1/payments.proto b/proto/provenance/exchange/v1/payments.proto index 4dcf790088..63ccdfe65c 100644 --- a/proto/provenance/exchange/v1/payments.proto +++ b/proto/provenance/exchange/v1/payments.proto @@ -6,6 +6,7 @@ option go_package = "github.com/provenance-io/provenance/x/exchange"; option java_package = "io.provenance.exchange.v1"; option java_multiple_files = true; +import "amino/amino.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; @@ -19,16 +20,24 @@ message Payment { // source_amount is the funds that the source is will pay the target in exchange for the target_amount. // A hold will be placed on this amount in the source account until this Payment is accepted, rejected or cancelled. // If the source_amount is zero, this Payment can be considered a "payment request." - repeated cosmos.base.v1beta1.Coin source_amount = 2 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin source_amount = 2 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // target is the account that can accept this Payment. // The target is the only thing allowed to change in a payment. // I.e. it can be empty initially and updated later as needed. string target = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // target_amount is the funds that the target will pay the source in exchange for the source_amount. // If the target_amount is zero, this Payment can be considered a "peer-to-peer (P2P) payment." - repeated cosmos.base.v1beta1.Coin target_amount = 4 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin target_amount = 4 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // external_id is used along with the source to uniquely identify this Payment. // // A source can only have one Payment with any given external id. diff --git a/proto/provenance/exchange/v1/query.proto b/proto/provenance/exchange/v1/query.proto index 0935aafb01..896505097a 100644 --- a/proto/provenance/exchange/v1/query.proto +++ b/proto/provenance/exchange/v1/query.proto @@ -6,6 +6,7 @@ option go_package = "github.com/provenance-io/provenance/x/exchange"; option java_package = "io.provenance.exchange.v1"; option java_multiple_files = true; +import "amino/amino.proto"; import "cosmos_proto/cosmos.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; import "cosmos/base/v1beta1/coin.proto"; @@ -301,8 +302,12 @@ message QueryGetCommitmentRequest { // QueryGetCommitmentResponse is a response message for the GetCommitment query. message QueryGetCommitmentResponse { // amount is the total funds committed to the market by the account. - repeated cosmos.base.v1beta1.Coin amount = 1 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin amount = 1 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; } // QueryGetAccountCommitmentsRequest is a request message for the GetAccountCommitments query. @@ -403,14 +408,26 @@ message QueryCommitmentSettlementFeeCalcRequest { // QueryCommitmentSettlementFeeCalcResponse is a response message for the CommitmentSettlementFeeCalc query. message QueryCommitmentSettlementFeeCalcResponse { // exchange_fees is the total that the exchange would currently pay for the provided settlement. - repeated cosmos.base.v1beta1.Coin exchange_fees = 1 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin exchange_fees = 1 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // input_total is the sum of all the inputs in the provided settlement. - repeated cosmos.base.v1beta1.Coin input_total = 2 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin input_total = 2 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // converted_total is the input_total converted to a single intermediary denom or left as the fee denom. - repeated cosmos.base.v1beta1.Coin converted_total = 3 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin converted_total = 3 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // conversion_navs are the NAVs used to convert the input_total to the converted_total. repeated NetAssetPrice conversion_navs = 4 [(gogoproto.nullable) = false]; // to_fee_nav is the NAV used to convert the converted_total into the fee denom. @@ -539,9 +556,17 @@ message QueryPaymentFeeCalcRequest { // QueryPaymentFeeCalcResponse is a response message for the PaymentFeeCalc query. message QueryPaymentFeeCalcResponse { // fee_create is the fee required to create the provided payment. - repeated cosmos.base.v1beta1.Coin fee_create = 1 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin fee_create = 1 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // fee_accept is the fee required to accept the provided payment. - repeated cosmos.base.v1beta1.Coin fee_accept = 2 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin fee_accept = 2 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; } diff --git a/proto/provenance/exchange/v1/tx.proto b/proto/provenance/exchange/v1/tx.proto index 615e986fa0..f2cef3c123 100644 --- a/proto/provenance/exchange/v1/tx.proto +++ b/proto/provenance/exchange/v1/tx.proto @@ -6,6 +6,7 @@ option go_package = "github.com/provenance-io/provenance/x/exchange"; option java_package = "io.provenance.exchange.v1"; option java_multiple_files = true; +import "amino/amino.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; @@ -154,8 +155,12 @@ message MsgCommitFundsRequest { // market_id is the numerical identifier of the market the funds will be committed to. uint32 market_id = 2; // amount is the funds being committed to the market. - repeated cosmos.base.v1beta1.Coin amount = 3 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin amount = 3 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // creation_fee is the fee that is being paid to create this commitment. cosmos.base.v1beta1.Coin creation_fee = 4; // event_tag is a string that is included in the funds-committed event. Max length is 100 characters. @@ -191,8 +196,12 @@ message MsgFillBidsRequest { uint32 market_id = 2; // total_assets are the things that the seller wishes to sell. // It must be the sum of all bid order assets. - repeated cosmos.base.v1beta1.Coin total_assets = 3 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin total_assets = 3 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // bid_order_ids are the ids of the bid orders that you are trying to fill. // All ids must be for bid orders, and must be in the same market as the market_id. repeated uint64 bid_order_ids = 4; @@ -222,8 +231,12 @@ message MsgFillAsksRequest { repeated uint64 ask_order_ids = 4; // buyer_settlement_fees are the fees (both flat and proportional) that the buyer will pay (in addition to the price) // for this settlement. - repeated cosmos.base.v1beta1.Coin buyer_settlement_fees = 5 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin buyer_settlement_fees = 5 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // bid_order_creation_fee is the fee that is being paid to create this order (which is immediately then settled). cosmos.base.v1beta1.Coin bid_order_creation_fee = 6; } @@ -327,8 +340,12 @@ message MsgMarketWithdrawRequest { // to_address is the address that will receive the funds. string to_address = 3; // amount is the funds to withdraw. - repeated cosmos.base.v1beta1.Coin amount = 4 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin amount = 4 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; } // MsgMarketWithdrawResponse is a response message for the MarketWithdraw endpoint. diff --git a/proto/provenance/hold/v1/hold.proto b/proto/provenance/hold/v1/hold.proto index 1522d0401e..fc864c8444 100644 --- a/proto/provenance/hold/v1/hold.proto +++ b/proto/provenance/hold/v1/hold.proto @@ -1,11 +1,11 @@ syntax = "proto3"; package provenance.hold.v1; -option go_package = "github.com/provenance-io/provenance/x/hold"; - +option go_package = "github.com/provenance-io/provenance/x/hold"; option java_package = "io.provenance.hold.v1"; option java_multiple_files = true; +import "amino/amino.proto"; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; @@ -14,6 +14,10 @@ message AccountHold { // address is the account address that holds the funds on hold. string address = 1; // amount is the balances that are on hold for the address. - repeated cosmos.base.v1beta1.Coin amount = 2 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin amount = 2 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; } \ No newline at end of file diff --git a/proto/provenance/hold/v1/query.proto b/proto/provenance/hold/v1/query.proto index af07a538ec..6ad155dcfd 100644 --- a/proto/provenance/hold/v1/query.proto +++ b/proto/provenance/hold/v1/query.proto @@ -1,11 +1,11 @@ syntax = "proto3"; package provenance.hold.v1; -option go_package = "github.com/provenance-io/provenance/x/hold"; - +option go_package = "github.com/provenance-io/provenance/x/hold"; option java_package = "io.provenance.hold.v1"; option java_multiple_files = true; +import "amino/amino.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; @@ -40,8 +40,12 @@ message GetHoldsResponse { option (gogoproto.goproto_getters) = false; // amount is the total on hold for the requested address. - repeated cosmos.base.v1beta1.Coin amount = 1 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin amount = 1 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; } // GetAllHoldsRequest is the request type for the Query/GetAllHolds query. diff --git a/proto/provenance/marker/v1/authz.proto b/proto/provenance/marker/v1/authz.proto index a96d9f3580..b86cbd3253 100644 --- a/proto/provenance/marker/v1/authz.proto +++ b/proto/provenance/marker/v1/authz.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package provenance.marker.v1; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; import "cosmos/base/v1beta1/coin.proto"; @@ -15,8 +16,12 @@ message MarkerTransferAuthorization { option (cosmos_proto.implements_interface) = "Authorization"; // transfer_limit is the total amount the grantee can transfer - repeated cosmos.base.v1beta1.Coin transfer_limit = 1 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin transfer_limit = 1 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // allow_list specifies an optional list of addresses to whom the grantee can send restricted coins on behalf of the // granter. If omitted, any recipient is allowed. diff --git a/proto/provenance/marker/v1/proposals.proto b/proto/provenance/marker/v1/proposals.proto index e50d5b42d4..6f5254c417 100644 --- a/proto/provenance/marker/v1/proposals.proto +++ b/proto/provenance/marker/v1/proposals.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package provenance.marker.v1; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "cosmos/bank/v1beta1/bank.proto"; import "cosmos/base/v1beta1/coin.proto"; @@ -23,14 +24,13 @@ message AddMarkerProposal { string title = 1; string description = 2; - cosmos.base.v1beta1.Coin amount = 3 - [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Coin"]; - string manager = 4; - MarkerStatus status = 5; - MarkerType marker_type = 6; - repeated AccessGrant access_list = 7 [(gogoproto.nullable) = false]; - bool supply_fixed = 8; - bool allow_governance_control = 9; + cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false]; + string manager = 4; + MarkerStatus status = 5; + MarkerType marker_type = 6; + repeated AccessGrant access_list = 7 [(gogoproto.nullable) = false]; + bool supply_fixed = 8; + bool allow_governance_control = 9; } // SupplyIncreaseProposal defines a governance proposal to administer a marker and increase total supply of the marker @@ -39,11 +39,10 @@ message SupplyIncreaseProposal { option (gogoproto.equal) = true; option (gogoproto.goproto_stringer) = false; - string title = 1; - string description = 2; - cosmos.base.v1beta1.Coin amount = 3 - [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Coin"]; - string target_address = 4; // an optional target address for the minted coin from this request + string title = 1; + string description = 2; + cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false]; + string target_address = 4; // an optional target address for the minted coin from this request } // SupplyDecreaseProposal defines a governance proposal to administer a marker and decrease the total supply through @@ -54,8 +53,7 @@ message SupplyDecreaseProposal { string title = 1; string description = 2; - cosmos.base.v1beta1.Coin amount = 3 - [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Coin"]; + cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false]; } // SetAdministratorProposal defines a governance proposal to administer a marker and set administrators with specific @@ -101,8 +99,12 @@ message WithdrawEscrowProposal { string title = 1; string description = 2; string denom = 3; - repeated cosmos.base.v1beta1.Coin amount = 4 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin amount = 4 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; string target_address = 5; } diff --git a/proto/provenance/marker/v1/query.proto b/proto/provenance/marker/v1/query.proto index 0e425c43e0..391af8d431 100644 --- a/proto/provenance/marker/v1/query.proto +++ b/proto/provenance/marker/v1/query.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package provenance.marker.v1; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; @@ -133,8 +134,12 @@ message QueryEscrowRequest { } // QueryEscrowResponse is the response type for the Query/MarkerEscrow method. message QueryEscrowResponse { - repeated cosmos.base.v1beta1.Coin escrow = 1 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin escrow = 1 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; } // QueryAccessRequest is the request type for the Query/MarkerAccess method. @@ -176,8 +181,12 @@ message Balance { string address = 1; // coins defines the different coins this balance holds. - repeated cosmos.base.v1beta1.Coin coins = 2 - [(gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", (gogoproto.nullable) = false]; + repeated cosmos.base.v1beta1.Coin coins = 2 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; } // QueryNetAssetValuesRequest is the request type for the Query/NetAssetValues method. diff --git a/proto/provenance/marker/v1/tx.proto b/proto/provenance/marker/v1/tx.proto index 760116ce9a..e069437656 100644 --- a/proto/provenance/marker/v1/tx.proto +++ b/proto/provenance/marker/v1/tx.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package provenance.marker.v1; +import "amino/amino.proto"; import "google/protobuf/any.proto"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; @@ -87,20 +88,19 @@ message MsgGrantAllowanceResponse {} message MsgAddMarkerRequest { option (cosmos.msg.v1.signer) = "from_address"; - cosmos.base.v1beta1.Coin amount = 1 - [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Coin"]; - string manager = 3; - string from_address = 4; - MarkerStatus status = 5; - MarkerType marker_type = 6; - repeated AccessGrant access_list = 7 [(gogoproto.nullable) = false]; - bool supply_fixed = 8; - bool allow_governance_control = 9; - bool allow_forced_transfer = 10; - repeated string required_attributes = 11; - uint64 usd_cents = 12 [deprecated = true]; - uint64 volume = 13; - uint64 usd_mills = 14; + cosmos.base.v1beta1.Coin amount = 1 [(gogoproto.nullable) = false]; + string manager = 3; + string from_address = 4; + MarkerStatus status = 5; + MarkerType marker_type = 6; + repeated AccessGrant access_list = 7 [(gogoproto.nullable) = false]; + bool supply_fixed = 8; + bool allow_governance_control = 9; + bool allow_forced_transfer = 10; + repeated string required_attributes = 11; + uint64 usd_cents = 12 [deprecated = true]; + uint64 volume = 13; + uint64 usd_mills = 14; } // MsgAddMarkerResponse defines the Msg/AddMarker response type @@ -173,9 +173,8 @@ message MsgDeleteResponse {} message MsgMintRequest { option (cosmos.msg.v1.signer) = "administrator"; - cosmos.base.v1beta1.Coin amount = 1 - [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Coin"]; - string administrator = 2; + cosmos.base.v1beta1.Coin amount = 1 [(gogoproto.nullable) = false]; + string administrator = 2; } // MsgMintResponse defines the Msg/Mint response type message MsgMintResponse {} @@ -184,9 +183,8 @@ message MsgMintResponse {} message MsgBurnRequest { option (cosmos.msg.v1.signer) = "administrator"; - cosmos.base.v1beta1.Coin amount = 1 - [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Coin"]; - string administrator = 2; + cosmos.base.v1beta1.Coin amount = 1 [(gogoproto.nullable) = false]; + string administrator = 2; } // MsgBurnResponse defines the Msg/Burn response type message MsgBurnResponse {} @@ -198,8 +196,12 @@ message MsgWithdrawRequest { string denom = 1; string administrator = 2; string to_address = 3; - repeated cosmos.base.v1beta1.Coin amount = 4 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin amount = 4 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; } // MsgWithdrawResponse defines the Msg/Withdraw response type message MsgWithdrawResponse {} @@ -208,11 +210,10 @@ message MsgWithdrawResponse {} message MsgTransferRequest { option (cosmos.msg.v1.signer) = "administrator"; - cosmos.base.v1beta1.Coin amount = 1 - [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Coin"]; - string administrator = 3; - string from_address = 4; - string to_address = 5; + cosmos.base.v1beta1.Coin amount = 1 [(gogoproto.nullable) = false]; + string administrator = 3; + string from_address = 4; + string to_address = 5; } // MsgTransferResponse defines the Msg/Transfer response type @@ -248,19 +249,18 @@ message MsgSetDenomMetadataResponse {} message MsgAddFinalizeActivateMarkerRequest { option (cosmos.msg.v1.signer) = "from_address"; - cosmos.base.v1beta1.Coin amount = 1 - [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Coin"]; - string manager = 3; - string from_address = 4; - MarkerType marker_type = 5; - repeated AccessGrant access_list = 6 [(gogoproto.nullable) = false]; - bool supply_fixed = 7; - bool allow_governance_control = 8; - bool allow_forced_transfer = 9; - repeated string required_attributes = 10; - uint64 usd_cents = 11 [deprecated = true]; - uint64 volume = 12; - uint64 usd_mills = 13; + cosmos.base.v1beta1.Coin amount = 1 [(gogoproto.nullable) = false]; + string manager = 3; + string from_address = 4; + MarkerType marker_type = 5; + repeated AccessGrant access_list = 6 [(gogoproto.nullable) = false]; + bool supply_fixed = 7; + bool allow_governance_control = 8; + bool allow_forced_transfer = 9; + repeated string required_attributes = 10; + uint64 usd_cents = 11 [deprecated = true]; + uint64 volume = 12; + uint64 usd_mills = 13; } // MsgAddFinalizeActivateMarkerResponse defines the Msg/AddFinalizeActivateMarker response type @@ -272,10 +272,9 @@ message MsgSupplyIncreaseProposalRequest { option (gogoproto.equal) = true; option (cosmos.msg.v1.signer) = "authority"; - cosmos.base.v1beta1.Coin amount = 1 - [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Coin"]; - string target_address = 2; // an optional target address for the minted coin from this request - string authority = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // signer of the proposal + cosmos.base.v1beta1.Coin amount = 1 [(gogoproto.nullable) = false]; + string target_address = 2; // an optional target address for the minted coin from this request + string authority = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // signer of the proposal } // MsgSupplyIncreaseProposalResponse defines the Msg/SupplyIncreaseProposal response type diff --git a/proto/provenance/msgfees/v1/proposals.proto b/proto/provenance/msgfees/v1/proposals.proto index f2e4e57a0d..d34615dc25 100644 --- a/proto/provenance/msgfees/v1/proposals.proto +++ b/proto/provenance/msgfees/v1/proposals.proto @@ -23,8 +23,7 @@ message AddMsgFeeProposal { string msg_type_url = 3; // additional fee for msg type - cosmos.base.v1beta1.Coin additional_fee = 4 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + cosmos.base.v1beta1.Coin additional_fee = 4 [(gogoproto.nullable) = false]; // optional recipient to recieve basis points string recipient = 5; @@ -44,8 +43,7 @@ message UpdateMsgFeeProposal { string msg_type_url = 3; // additional fee for msg type - cosmos.base.v1beta1.Coin additional_fee = 4 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + cosmos.base.v1beta1.Coin additional_fee = 4 [(gogoproto.nullable) = false]; // optional recipient to recieve basis points string recipient = 5; // basis points to use when recipient is present (1 - 10,000) diff --git a/proto/provenance/msgfees/v1/query.proto b/proto/provenance/msgfees/v1/query.proto index da47bc5320..639f8afa3c 100644 --- a/proto/provenance/msgfees/v1/query.proto +++ b/proto/provenance/msgfees/v1/query.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package provenance.msgfees.v1; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "provenance/msgfees/v1/msgfees.proto"; @@ -68,12 +69,20 @@ message CalculateTxFeesRequest { // CalculateTxFeesResponse is the response type for the Query RPC method. message CalculateTxFeesResponse { // additional_fees are the amount of coins to be for addition msg fees - repeated cosmos.base.v1beta1.Coin additional_fees = 1 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin additional_fees = 1 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // total_fees are the total amount of fees needed for the transactions (msg fees + gas fee) // note: the gas fee is calculated with the floor gas price module param. - repeated cosmos.base.v1beta1.Coin total_fees = 2 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin total_fees = 2 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // estimated_gas is the amount of gas needed for the transaction uint64 estimated_gas = 3; } diff --git a/proto/provenance/msgfees/v1/tx.proto b/proto/provenance/msgfees/v1/tx.proto index 64b4d5b261..b27f8fd32d 100644 --- a/proto/provenance/msgfees/v1/tx.proto +++ b/proto/provenance/msgfees/v1/tx.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package provenance.msgfees.v1; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; import "cosmos/base/v1beta1/coin.proto"; @@ -61,8 +62,12 @@ message MsgAddMsgFeeProposalRequest { string msg_type_url = 1; // additional fee for msg type - cosmos.base.v1beta1.Coin additional_fee = 2 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + cosmos.base.v1beta1.Coin additional_fee = 2 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; // optional recipient to receive basis points string recipient = 3; @@ -83,9 +88,13 @@ message MsgUpdateMsgFeeProposalRequest { string msg_type_url = 1; // additional fee for msg type - cosmos.base.v1beta1.Coin additional_fee = 2 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; - // optional recipient to recieve basis points + cosmos.base.v1beta1.Coin additional_fee = 2 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (amino.dont_omitempty) = true, + (amino.encoding) = "legacy_coins" + ]; + // optional recipient to receive basis points string recipient = 3; // basis points to use when recipient is present (1 - 10,000) string recipient_basis_points = 4; diff --git a/x/exchange/commitments.pb.go b/x/exchange/commitments.pb.go index b1f684a803..122b74cbc1 100644 --- a/x/exchange/commitments.pb.go +++ b/x/exchange/commitments.pb.go @@ -8,6 +8,7 @@ import ( _ "github.com/cosmos/cosmos-proto" 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/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" @@ -265,34 +266,36 @@ func init() { } var fileDescriptor_5607ea444303a1f8 = []byte{ - // 420 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0xb1, 0xae, 0xd3, 0x30, - 0x14, 0x86, 0xe3, 0x7b, 0x2f, 0x85, 0x6b, 0xe8, 0x12, 0x55, 0x28, 0x2d, 0x52, 0x5a, 0x75, 0xca, - 0x52, 0x87, 0x16, 0x21, 0x24, 0xb6, 0xb4, 0x13, 0x03, 0xa8, 0x0a, 0x1b, 0x4b, 0xe5, 0x38, 0x56, - 0x6a, 0x55, 0xb1, 0xa3, 0xd8, 0xad, 0xca, 0x03, 0xb0, 0x33, 0x21, 0x46, 0x46, 0xc4, 0xc0, 0xc4, - 0x43, 0x74, 0xac, 0x98, 0x98, 0x00, 0xb5, 0x2f, 0x82, 0x62, 0xbb, 0x4d, 0x41, 0x80, 0xee, 0xd2, - 0x29, 0x39, 0xc7, 0xff, 0xef, 0xff, 0xb3, 0x75, 0x0c, 0x83, 0xa2, 0x14, 0x2b, 0xca, 0x31, 0x27, - 0x34, 0xa4, 0x6b, 0x32, 0xc7, 0x3c, 0xa3, 0xe1, 0x6a, 0x18, 0x12, 0x91, 0xe7, 0x4c, 0xe5, 0x94, - 0x2b, 0x89, 0x8a, 0x52, 0x28, 0xe1, 0xde, 0xaf, 0x95, 0xe8, 0xa0, 0x44, 0xab, 0x61, 0xc7, 0x27, - 0x42, 0xe6, 0x42, 0x86, 0x09, 0x96, 0x95, 0x33, 0xa1, 0x0a, 0x57, 0x76, 0xc6, 0x8d, 0xaf, 0xd3, - 0x36, 0xeb, 0x33, 0x5d, 0x85, 0xa6, 0xb0, 0x4b, 0xad, 0x4c, 0x64, 0xc2, 0xf4, 0xab, 0x3f, 0xd3, - 0xed, 0x7f, 0x04, 0x10, 0x4e, 0x8e, 0xf1, 0xae, 0x07, 0x6f, 0x63, 0x42, 0xc4, 0x92, 0x2b, 0x0f, - 0xf4, 0x40, 0x70, 0x1d, 0x1f, 0x4a, 0xf7, 0x01, 0xbc, 0xce, 0x71, 0xb9, 0xa0, 0x6a, 0xc6, 0x52, - 0xef, 0xa2, 0x07, 0x82, 0x66, 0x7c, 0xc7, 0x34, 0x9e, 0xa5, 0x2e, 0x81, 0x0d, 0x9c, 0x6b, 0xd7, - 0x65, 0xef, 0x32, 0xb8, 0x3b, 0x6a, 0x23, 0x1b, 0x5d, 0x71, 0x22, 0xcb, 0x89, 0x26, 0x82, 0xf1, - 0xf1, 0xc3, 0xcd, 0xf7, 0xae, 0xf3, 0xe9, 0x47, 0x37, 0xc8, 0x98, 0x9a, 0x2f, 0x13, 0x44, 0x44, - 0x6e, 0x39, 0xed, 0x67, 0x20, 0xd3, 0x45, 0xa8, 0x5e, 0x17, 0x54, 0x6a, 0x83, 0x8c, 0xed, 0xd6, - 0xfd, 0xcf, 0x00, 0x36, 0x23, 0x43, 0x13, 0xe9, 0x8e, 0x3b, 0xfa, 0x83, 0x76, 0xec, 0x7d, 0xfd, - 0x32, 0x68, 0xd9, 0xe8, 0x28, 0x4d, 0x4b, 0x2a, 0xe5, 0x4b, 0x55, 0x32, 0x9e, 0xd5, 0xe7, 0xa8, - 0x51, 0x2f, 0xce, 0x86, 0xfa, 0xf4, 0xea, 0xfd, 0x87, 0xae, 0xd3, 0x7f, 0x07, 0xe0, 0xbd, 0xe7, - 0xfa, 0x8a, 0x2c, 0xef, 0x6f, 0x77, 0x08, 0xfe, 0x79, 0x87, 0x67, 0x07, 0x7b, 0x03, 0x60, 0xf3, - 0x05, 0x55, 0x91, 0x94, 0x54, 0x4d, 0x4b, 0x46, 0xa8, 0xfb, 0x04, 0x36, 0x70, 0x55, 0x49, 0x8d, - 0xf5, 0xdf, 0xf0, 0xab, 0x2a, 0x3c, 0xb6, 0x72, 0xf7, 0x31, 0xbc, 0x55, 0x54, 0x3b, 0xe8, 0x91, - 0xb8, 0x81, 0xcf, 0xa8, 0x0d, 0xc7, 0x98, 0x6e, 0x76, 0x3e, 0xd8, 0xee, 0x7c, 0xf0, 0x73, 0xe7, - 0x83, 0xb7, 0x7b, 0xdf, 0xd9, 0xee, 0x7d, 0xe7, 0xdb, 0xde, 0x77, 0x60, 0x9b, 0xe9, 0x01, 0xfd, - 0xcb, 0x13, 0x98, 0x82, 0x57, 0xe8, 0xe4, 0xd8, 0xb5, 0x68, 0xc0, 0xc4, 0x49, 0x15, 0xae, 0x8f, - 0x2f, 0x2c, 0x69, 0xe8, 0x51, 0x7f, 0xf4, 0x2b, 0x00, 0x00, 0xff, 0xff, 0x25, 0x00, 0x86, 0xf8, - 0x7f, 0x03, 0x00, 0x00, + // 457 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x93, 0xbf, 0x6f, 0x13, 0x31, + 0x14, 0xc7, 0xcf, 0x6d, 0x09, 0xd4, 0x34, 0x03, 0xa7, 0x0a, 0x25, 0x45, 0xba, 0x44, 0x99, 0x4e, + 0x95, 0x62, 0xab, 0x45, 0x08, 0x89, 0x2d, 0xa9, 0x84, 0xc4, 0x00, 0xaa, 0x8e, 0x8d, 0x25, 0xf2, + 0xf9, 0xac, 0xab, 0x55, 0x6c, 0x9f, 0xce, 0x6e, 0xd4, 0xfc, 0x01, 0xec, 0x8c, 0x88, 0x89, 0x11, + 0x21, 0x86, 0x0e, 0xcc, 0x4c, 0x0c, 0x1d, 0x2b, 0x26, 0x26, 0x40, 0xc9, 0xd0, 0x7f, 0x03, 0xf9, + 0x47, 0x7b, 0x01, 0x01, 0x62, 0xa2, 0x4b, 0x72, 0xef, 0xf9, 0xfb, 0x9e, 0x3f, 0xdf, 0x27, 0x3f, + 0x98, 0x56, 0xb5, 0x9a, 0x32, 0x49, 0x24, 0x65, 0x98, 0x1d, 0xd3, 0x03, 0x22, 0x4b, 0x86, 0xa7, + 0x3b, 0x98, 0x2a, 0x21, 0xb8, 0x11, 0x4c, 0x1a, 0x8d, 0xaa, 0x5a, 0x19, 0x15, 0xdf, 0x6e, 0x94, + 0xe8, 0x42, 0x89, 0xa6, 0x3b, 0x5b, 0xb7, 0x88, 0xe0, 0x52, 0x61, 0xf7, 0xeb, 0xa5, 0x5b, 0x09, + 0x55, 0x5a, 0x28, 0x8d, 0x73, 0xa2, 0x6d, 0xb3, 0x9c, 0x19, 0x62, 0x3b, 0x72, 0x19, 0xce, 0xbb, + 0xfe, 0x7c, 0xe2, 0x22, 0xec, 0x83, 0x70, 0xb4, 0x59, 0xaa, 0x52, 0xf9, 0xbc, 0xfd, 0xf2, 0xd9, + 0xc1, 0x47, 0x00, 0xe1, 0xde, 0x25, 0x51, 0xdc, 0x81, 0xd7, 0x09, 0xa5, 0xea, 0x48, 0x9a, 0x0e, + 0xe8, 0x83, 0x74, 0x3d, 0xbb, 0x08, 0xe3, 0x3b, 0x70, 0x5d, 0x90, 0xfa, 0x90, 0x99, 0x09, 0x2f, + 0x3a, 0x2b, 0x7d, 0x90, 0xb6, 0xb3, 0x1b, 0x3e, 0xf1, 0xa8, 0x88, 0x67, 0xb0, 0x45, 0x84, 0xab, + 0x5a, 0xed, 0xaf, 0xa6, 0x37, 0x77, 0xbb, 0x28, 0x5c, 0x6d, 0x39, 0x51, 0xe0, 0x44, 0x7b, 0x8a, + 0xcb, 0xf1, 0xc3, 0xd3, 0xaf, 0xbd, 0xe8, 0xdd, 0xb7, 0x5e, 0x5a, 0x72, 0x73, 0x70, 0x94, 0x23, + 0xaa, 0x44, 0xe0, 0x0c, 0x7f, 0x43, 0x5d, 0x1c, 0x62, 0x33, 0xab, 0x98, 0x76, 0x05, 0xfa, 0xf5, + 0xf9, 0xc9, 0xf6, 0xc6, 0x73, 0x56, 0x12, 0x3a, 0x9b, 0x58, 0xa7, 0xfa, 0xed, 0xf9, 0xc9, 0x36, + 0xc8, 0xc2, 0x85, 0x83, 0x4f, 0x00, 0xb6, 0x47, 0x9e, 0x71, 0xe4, 0x32, 0xf1, 0xee, 0x2f, 0x1e, + 0xc6, 0x9d, 0xcf, 0x1f, 0x86, 0x9b, 0x01, 0x68, 0x54, 0x14, 0x35, 0xd3, 0xfa, 0xa9, 0xa9, 0xb9, + 0x2c, 0x1b, 0x77, 0x8d, 0x81, 0x95, 0xff, 0x6c, 0xe0, 0xc1, 0xda, 0xab, 0x37, 0xbd, 0x68, 0xf0, + 0x1e, 0xc0, 0x8d, 0xc7, 0x6e, 0x9c, 0xc1, 0xc5, 0x4f, 0xf3, 0x06, 0x7f, 0x9c, 0xf7, 0x15, 0xe1, + 0xbe, 0x00, 0xb0, 0xfd, 0x84, 0x99, 0x91, 0xd6, 0xcc, 0xec, 0xd7, 0x9c, 0xb2, 0xf8, 0x3e, 0x6c, + 0x11, 0x1b, 0x69, 0x07, 0xfb, 0x57, 0xa4, 0x35, 0x8b, 0x94, 0x05, 0x79, 0x7c, 0x0f, 0x5e, 0xab, + 0x6c, 0x07, 0xf7, 0xa8, 0xfe, 0xa1, 0xce, 0xab, 0x3d, 0xc7, 0x98, 0x9d, 0xce, 0x13, 0x70, 0x36, + 0x4f, 0xc0, 0xf7, 0x79, 0x02, 0x5e, 0x2e, 0x92, 0xe8, 0x6c, 0x91, 0x44, 0x5f, 0x16, 0x49, 0x04, + 0xbb, 0xdc, 0x3d, 0xf1, 0xdf, 0xec, 0xd5, 0x3e, 0x78, 0x86, 0x96, 0x86, 0xd1, 0x88, 0x86, 0x5c, + 0x2d, 0x45, 0xf8, 0xf8, 0x72, 0x6d, 0xf3, 0x96, 0x5b, 0x96, 0xbb, 0x3f, 0x02, 0x00, 0x00, 0xff, + 0xff, 0x85, 0x93, 0x37, 0x22, 0xd4, 0x03, 0x00, 0x00, } func (m *Commitment) Marshal() (dAtA []byte, err error) { diff --git a/x/exchange/orders.pb.go b/x/exchange/orders.pb.go index 7684b31522..bd4876be8c 100644 --- a/x/exchange/orders.pb.go +++ b/x/exchange/orders.pb.go @@ -9,6 +9,7 @@ import ( 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/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" @@ -241,43 +242,45 @@ func init() { } var fileDescriptor_dab7cbe63f582471 = []byte{ - // 576 bytes of a gzipped FileDescriptorProto + // 606 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x54, 0xb1, 0x6f, 0xd3, 0x4e, - 0x14, 0xb6, 0xdb, 0x38, 0x71, 0xae, 0xbf, 0xfe, 0x90, 0x4c, 0xa1, 0x4e, 0x90, 0x9c, 0x28, 0x5d, - 0x22, 0xa4, 0xd8, 0x0d, 0x08, 0x21, 0x75, 0x41, 0x0d, 0x52, 0x45, 0x26, 0x2a, 0x57, 0x62, 0x60, - 0xb1, 0xce, 0xf6, 0xab, 0x6b, 0xc5, 0xf6, 0x45, 0xbe, 0x6b, 0x48, 0x27, 0x24, 0x26, 0x46, 0xfe, - 0x02, 0xc4, 0xcc, 0x84, 0x04, 0x7f, 0x44, 0xc7, 0x8a, 0x89, 0x09, 0x50, 0x32, 0xf0, 0x2f, 0x30, - 0x22, 0xdf, 0x9d, 0xd3, 0x20, 0x41, 0xe8, 0x80, 0x98, 0x7c, 0xef, 0xbd, 0xef, 0x7d, 0xef, 0xf9, - 0xfb, 0x74, 0x87, 0x76, 0xc6, 0x39, 0x99, 0x40, 0x86, 0xb3, 0x00, 0x1c, 0x98, 0x06, 0x27, 0x38, - 0x8b, 0xc0, 0x99, 0xf4, 0x1d, 0x92, 0x87, 0x90, 0x53, 0x7b, 0x9c, 0x13, 0x46, 0x8c, 0x9b, 0x97, - 0x20, 0xbb, 0x04, 0xd9, 0x93, 0x7e, 0xd3, 0x0a, 0x08, 0x4d, 0x09, 0x75, 0x7c, 0x4c, 0x8b, 0x26, - 0x1f, 0x18, 0xee, 0x3b, 0x01, 0x89, 0x33, 0xd1, 0xd7, 0xdc, 0x96, 0xf5, 0x94, 0x46, 0x05, 0x67, - 0x4a, 0x23, 0x59, 0x68, 0x88, 0x82, 0xc7, 0x23, 0x47, 0x04, 0xb2, 0xb4, 0x15, 0x91, 0x88, 0x88, - 0x7c, 0x71, 0x12, 0xd9, 0xce, 0x7b, 0x15, 0x69, 0x8f, 0x8b, 0x95, 0x8c, 0x06, 0xd2, 0xf9, 0x6e, - 0x5e, 0x1c, 0x9a, 0x6a, 0x5b, 0xed, 0x56, 0xdc, 0x1a, 0x8f, 0x87, 0xa1, 0xf1, 0x00, 0xd5, 0x31, - 0x1d, 0x79, 0x3c, 0x34, 0xd7, 0xda, 0x6a, 0x77, 0xe3, 0x4e, 0xdb, 0xfe, 0xf5, 0xea, 0xf6, 0x3e, - 0x1d, 0x71, 0xbe, 0x47, 0x8a, 0xab, 0x63, 0x79, 0x2e, 0x08, 0xfc, 0x38, 0x94, 0x04, 0xeb, 0xab, - 0x09, 0x06, 0x71, 0xb8, 0x20, 0xf0, 0xe5, 0x79, 0xaf, 0xf2, 0xf2, 0x4d, 0x4b, 0x19, 0xd4, 0x90, - 0xc6, 0x29, 0x3a, 0xdf, 0xd7, 0x90, 0x5e, 0x0e, 0x32, 0x6e, 0xa1, 0x7a, 0x8a, 0xf3, 0x11, 0xb0, - 0x72, 0xf3, 0x4d, 0x57, 0x17, 0x89, 0x61, 0x68, 0xec, 0xa2, 0x2a, 0x85, 0x24, 0x91, 0x7b, 0xd7, - 0x07, 0xe6, 0xc7, 0x0f, 0xbd, 0x2d, 0xa9, 0xcb, 0x7e, 0x18, 0xe6, 0x40, 0xe9, 0x11, 0xcb, 0xe3, - 0x2c, 0x72, 0x25, 0xce, 0xb8, 0x8f, 0xaa, 0x98, 0x52, 0x60, 0x54, 0x2e, 0xda, 0xb0, 0x25, 0xbc, - 0x30, 0xc3, 0x96, 0x66, 0xd8, 0x0f, 0x49, 0x9c, 0x0d, 0x2a, 0xe7, 0x9f, 0x5b, 0x8a, 0x2b, 0xe1, - 0xc6, 0x3d, 0xa4, 0x8d, 0xf3, 0x38, 0x00, 0xb3, 0x72, 0xb5, 0x3e, 0x81, 0x36, 0x9e, 0xa0, 0xa6, - 0x98, 0xec, 0x51, 0x60, 0x2c, 0x81, 0x14, 0x32, 0xe6, 0x1d, 0x27, 0x98, 0x79, 0xc7, 0x00, 0xa6, - 0xf6, 0x07, 0x2e, 0x77, 0x5b, 0x34, 0x1f, 0x2d, 0x7a, 0x0f, 0x12, 0xcc, 0x0e, 0x00, 0x8c, 0x1d, - 0xb4, 0x89, 0x93, 0x84, 0x3c, 0xf3, 0xc6, 0x38, 0x67, 0x31, 0x4e, 0xcc, 0x6a, 0x5b, 0xed, 0xea, - 0xee, 0x7f, 0x3c, 0x79, 0x28, 0x72, 0x46, 0x0b, 0x6d, 0xc0, 0x94, 0x41, 0x9e, 0xe1, 0xa4, 0x50, - 0xaf, 0x56, 0x68, 0xe4, 0xa2, 0x32, 0x35, 0x0c, 0xf7, 0xae, 0x15, 0xc2, 0xbf, 0xf8, 0xf6, 0xee, - 0xb6, 0x94, 0xa7, 0xf3, 0x7a, 0x1d, 0xe9, 0xa5, 0x45, 0xab, 0xa5, 0xb7, 0x91, 0xe6, 0x9f, 0x9e, - 0x5d, 0x41, 0x79, 0x01, 0xfb, 0xe7, 0xc2, 0x3f, 0x47, 0x37, 0xf8, 0xe0, 0x9f, 0x74, 0x07, 0xa0, - 0xa6, 0xd6, 0x5e, 0x5f, 0x4d, 0xb3, 0x5b, 0xd0, 0xbc, 0xfd, 0xd2, 0xea, 0x46, 0x31, 0x3b, 0x39, - 0xf5, 0xed, 0x80, 0xa4, 0xf2, 0xae, 0xc9, 0x4f, 0x8f, 0x86, 0x23, 0x87, 0x9d, 0x8d, 0x81, 0xf2, - 0x06, 0xea, 0x5e, 0xe7, 0x93, 0x96, 0x4c, 0x02, 0xa0, 0x7f, 0xc9, 0xa1, 0xff, 0x4b, 0x87, 0x84, - 0x8c, 0x03, 0x38, 0x9f, 0x59, 0xea, 0xc5, 0xcc, 0x52, 0xbf, 0xce, 0x2c, 0xf5, 0xd5, 0xdc, 0x52, - 0x2e, 0xe6, 0x96, 0xf2, 0x69, 0x6e, 0x29, 0xa8, 0x11, 0x93, 0xdf, 0x5c, 0xba, 0x43, 0xf5, 0xa9, - 0xbd, 0xf4, 0x2f, 0x97, 0xa0, 0x5e, 0x4c, 0x96, 0x22, 0x67, 0xba, 0x78, 0xca, 0xfc, 0x2a, 0x7f, - 0x3f, 0xee, 0xfe, 0x08, 0x00, 0x00, 0xff, 0xff, 0xeb, 0x31, 0x83, 0xab, 0xe8, 0x04, 0x00, 0x00, + 0x14, 0xb6, 0xdb, 0x38, 0x75, 0xaf, 0xed, 0xef, 0x27, 0x4c, 0xa1, 0x4e, 0x91, 0x9c, 0xa8, 0x5d, + 0xa2, 0x4a, 0xb5, 0x29, 0x08, 0x21, 0x75, 0x41, 0x0d, 0x52, 0x45, 0x27, 0x2a, 0x57, 0x62, 0x60, + 0xb1, 0xce, 0xf6, 0xab, 0x7b, 0x8a, 0xed, 0x8b, 0x7c, 0xd7, 0xd2, 0xae, 0x4c, 0x8c, 0x2c, 0x2c, + 0x4c, 0x8c, 0x88, 0x29, 0x12, 0xf0, 0x3f, 0x74, 0xac, 0x98, 0x98, 0x00, 0x25, 0x43, 0xfe, 0x05, + 0x46, 0xe4, 0xbb, 0x73, 0x1a, 0x24, 0x08, 0x1d, 0x10, 0x8b, 0x7d, 0xef, 0xbd, 0xef, 0x7d, 0xef, + 0xdd, 0xf7, 0xf4, 0x0e, 0xad, 0xf7, 0x0a, 0x7a, 0x02, 0x39, 0xce, 0x23, 0xf0, 0xe0, 0x34, 0x3a, + 0xc2, 0x79, 0x02, 0xde, 0xc9, 0x96, 0x47, 0x8b, 0x18, 0x0a, 0xe6, 0xf6, 0x0a, 0xca, 0xa9, 0x75, + 0xf3, 0x12, 0xe4, 0x56, 0x20, 0xf7, 0x64, 0x6b, 0xf5, 0x1a, 0xce, 0x48, 0x4e, 0x3d, 0xf1, 0x95, + 0xd0, 0x55, 0x27, 0xa2, 0x2c, 0xa3, 0xcc, 0x0b, 0x31, 0x2b, 0x79, 0x42, 0xe0, 0x78, 0xcb, 0x8b, + 0x28, 0xc9, 0x55, 0x7c, 0x45, 0xc5, 0x33, 0x96, 0x94, 0x65, 0x32, 0x96, 0xa8, 0x40, 0x43, 0x06, + 0x02, 0x61, 0x79, 0xd2, 0x50, 0xa1, 0xe5, 0x84, 0x26, 0x54, 0xfa, 0xcb, 0x93, 0xf4, 0xae, 0xbd, + 0xd7, 0x91, 0xf1, 0xb8, 0xec, 0xd2, 0x6a, 0x20, 0x53, 0xb4, 0x1b, 0x90, 0xd8, 0xd6, 0x5b, 0x7a, + 0xbb, 0xe6, 0xcf, 0x09, 0x7b, 0x2f, 0xb6, 0x1e, 0xa0, 0x79, 0xcc, 0xba, 0x81, 0x30, 0xed, 0x99, + 0x96, 0xde, 0x5e, 0xb8, 0xd3, 0x72, 0x7f, 0x7d, 0x1b, 0x77, 0x87, 0x75, 0x05, 0xdf, 0x23, 0xcd, + 0x37, 0xb1, 0x3a, 0x97, 0x04, 0x21, 0x89, 0x15, 0xc1, 0xec, 0x74, 0x82, 0x0e, 0x89, 0xc7, 0x04, + 0xa1, 0x3a, 0x6f, 0xd7, 0x5e, 0xbc, 0x69, 0x6a, 0x9d, 0x39, 0x64, 0x08, 0x8a, 0xb5, 0xef, 0x33, + 0xc8, 0xac, 0x0a, 0x59, 0xb7, 0xd0, 0x7c, 0x86, 0x8b, 0x2e, 0xf0, 0xaa, 0xf3, 0x25, 0xdf, 0x94, + 0x8e, 0xbd, 0xd8, 0xba, 0x8d, 0xea, 0x0c, 0xd2, 0x54, 0xf5, 0x3d, 0xdf, 0xb1, 0x3f, 0x7d, 0xd8, + 0x5c, 0x56, 0xba, 0xec, 0xc4, 0x71, 0x01, 0x8c, 0x1d, 0xf0, 0x82, 0xe4, 0x89, 0xaf, 0x70, 0xd6, + 0x7d, 0x54, 0xc7, 0x8c, 0x01, 0x67, 0xaa, 0xd1, 0x86, 0xab, 0xe0, 0xe5, 0x30, 0x5c, 0x35, 0x0c, + 0xf7, 0x21, 0x25, 0x79, 0xa7, 0x76, 0xfe, 0xa5, 0xa9, 0xf9, 0x0a, 0x6e, 0xdd, 0x43, 0x46, 0xaf, + 0x20, 0x11, 0xd8, 0xb5, 0xab, 0xe5, 0x49, 0xb4, 0xf5, 0x04, 0xad, 0xca, 0xca, 0x01, 0x03, 0xce, + 0x53, 0xc8, 0x20, 0xe7, 0xc1, 0x61, 0x8a, 0x79, 0x70, 0x08, 0x60, 0x1b, 0x7f, 0xe0, 0xf2, 0x57, + 0x64, 0xf2, 0xc1, 0x38, 0x77, 0x37, 0xc5, 0x7c, 0x17, 0xc0, 0x5a, 0x47, 0x4b, 0x38, 0x4d, 0xe9, + 0xb3, 0xa0, 0x87, 0x0b, 0x4e, 0x70, 0x6a, 0xd7, 0x5b, 0x7a, 0xdb, 0xf4, 0x17, 0x85, 0x73, 0x5f, + 0xfa, 0xac, 0x26, 0x5a, 0x80, 0x53, 0x0e, 0x45, 0x8e, 0xd3, 0x52, 0xbd, 0xb9, 0x52, 0x23, 0x1f, + 0x55, 0xae, 0xbd, 0x78, 0xfb, 0xff, 0x52, 0xf8, 0xe7, 0xa3, 0xfe, 0x86, 0x92, 0x67, 0xed, 0xe3, + 0x2c, 0x32, 0xab, 0x11, 0x4d, 0x97, 0xde, 0x45, 0x46, 0x78, 0x7c, 0x76, 0x05, 0xe5, 0x25, 0xec, + 0x9f, 0x0b, 0xff, 0x4a, 0x47, 0x37, 0x44, 0xe5, 0x9f, 0x84, 0x07, 0x60, 0xb6, 0xd1, 0x9a, 0x9d, + 0xce, 0xb3, 0x5b, 0xf2, 0xbc, 0xfb, 0xda, 0x6c, 0x27, 0x84, 0x1f, 0x1d, 0x87, 0x6e, 0x44, 0x33, + 0xb5, 0x6c, 0xea, 0xb7, 0xc9, 0xe2, 0xae, 0xc7, 0xcf, 0x7a, 0xc0, 0x44, 0x02, 0x7b, 0x3d, 0xea, + 0x6f, 0x2c, 0xa6, 0x90, 0xe0, 0xe8, 0x2c, 0x28, 0xf7, 0x98, 0xbd, 0x1d, 0xf5, 0x37, 0x74, 0xff, + 0xba, 0xa8, 0x3f, 0x31, 0x3b, 0x00, 0xf6, 0x97, 0x06, 0xf7, 0x5f, 0x35, 0x38, 0xa9, 0x6e, 0x07, + 0xce, 0x07, 0x8e, 0x7e, 0x31, 0x70, 0xf4, 0x6f, 0x03, 0x47, 0x7f, 0x39, 0x74, 0xb4, 0x8b, 0xa1, + 0xa3, 0x7d, 0x1e, 0x3a, 0x1a, 0x6a, 0x10, 0xfa, 0x9b, 0x5d, 0xdc, 0xd7, 0x9f, 0xba, 0x13, 0x37, + 0xbc, 0x04, 0x6d, 0x12, 0x3a, 0x61, 0x79, 0xa7, 0xe3, 0x47, 0x2f, 0xac, 0x8b, 0x67, 0xe5, 0xee, + 0x8f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x71, 0x15, 0x76, 0x98, 0x12, 0x05, 0x00, 0x00, } func (m *Order) Marshal() (dAtA []byte, err error) { diff --git a/x/exchange/params.pb.go b/x/exchange/params.pb.go index a69b62a658..2638b33c8c 100644 --- a/x/exchange/params.pb.go +++ b/x/exchange/params.pb.go @@ -6,6 +6,7 @@ package exchange import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" @@ -169,30 +170,31 @@ func init() { } var fileDescriptor_5d689cfc7a7422f1 = []byte{ - // 357 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0xbf, 0x6e, 0xea, 0x30, - 0x14, 0xc6, 0x13, 0xe0, 0x22, 0x5d, 0x03, 0x4b, 0x84, 0xee, 0x05, 0x06, 0x5f, 0x04, 0x0b, 0xcb, - 0xb5, 0x45, 0xbb, 0x74, 0x2d, 0x54, 0x5d, 0xba, 0x20, 0x2a, 0x75, 0xe8, 0x12, 0x39, 0xe6, 0x24, - 0x44, 0x4a, 0xec, 0x28, 0x36, 0x88, 0xbe, 0x45, 0x9f, 0xa3, 0x4f, 0xc2, 0xc8, 0xd8, 0xa9, 0xaa, - 0xe0, 0x45, 0xaa, 0xd8, 0xfc, 0xab, 0xd4, 0x4a, 0xdd, 0x72, 0x4e, 0xbe, 0xef, 0xa7, 0xef, 0x7c, - 0x09, 0xea, 0x67, 0xb9, 0x5c, 0x82, 0x60, 0x82, 0x03, 0x85, 0x15, 0x9f, 0x33, 0x11, 0x01, 0x5d, - 0x0e, 0x69, 0xc6, 0x72, 0x96, 0x2a, 0x92, 0xe5, 0x52, 0x4b, 0xef, 0xcf, 0x49, 0x44, 0x0e, 0x22, - 0xb2, 0x1c, 0x76, 0x9a, 0x91, 0x8c, 0xa4, 0x91, 0xd0, 0xe2, 0xc9, 0xaa, 0x3b, 0x98, 0x4b, 0x95, - 0x4a, 0x45, 0x03, 0xa6, 0x0a, 0x54, 0x00, 0x9a, 0x0d, 0x29, 0x97, 0xb1, 0xb0, 0xef, 0x7b, 0x2f, - 0x25, 0x54, 0x9d, 0x18, 0xbc, 0xd7, 0x47, 0x8d, 0x19, 0x84, 0x6c, 0x91, 0x68, 0x5f, 0x65, 0x49, - 0xac, 0x5b, 0x6e, 0xd7, 0x1d, 0x34, 0xa6, 0xf5, 0xfd, 0xf2, 0xbe, 0xd8, 0x79, 0x77, 0xa8, 0x3e, - 0x03, 0x21, 0x53, 0x2b, 0x51, 0xad, 0x52, 0xb7, 0x3c, 0xa8, 0x5d, 0xf4, 0xc8, 0xd7, 0xa1, 0xc8, - 0x4d, 0xa1, 0x35, 0xce, 0x51, 0x65, 0xfd, 0xf6, 0xcf, 0x99, 0xd6, 0x66, 0xc7, 0x8d, 0xf2, 0x1e, - 0xd0, 0xdf, 0x10, 0xc0, 0xe7, 0x39, 0x30, 0x0d, 0x7e, 0xc6, 0x9e, 0x52, 0x10, 0xda, 0x0f, 0x13, - 0xa6, 0x5b, 0x65, 0xc3, 0x6d, 0x13, 0x1b, 0x9f, 0x14, 0xf1, 0xc9, 0x3e, 0x3e, 0x19, 0xcb, 0x58, - 0xec, 0x71, 0xcd, 0x10, 0x60, 0x6c, 0xec, 0x13, 0xeb, 0xbe, 0x4d, 0x98, 0x3e, 0x70, 0x19, 0xe7, - 0x90, 0xe9, 0xcf, 0xdc, 0xca, 0xcf, 0xb9, 0xd7, 0xc6, 0x7e, 0xc6, 0xed, 0x5d, 0x21, 0x74, 0x3a, - 0xc8, 0x6b, 0xa2, 0x5f, 0xe6, 0x18, 0xd3, 0xd3, 0xef, 0xa9, 0x1d, 0x8a, 0xad, 0x6d, 0xaf, 0x64, - 0xda, 0xb3, 0xc3, 0x08, 0xd6, 0x5b, 0xec, 0x6e, 0xb6, 0xd8, 0x7d, 0xdf, 0x62, 0xf7, 0x79, 0x87, - 0x9d, 0xcd, 0x0e, 0x3b, 0xaf, 0x3b, 0xec, 0xa0, 0x76, 0x2c, 0xbf, 0x29, 0x6f, 0xe2, 0x3e, 0x92, - 0x28, 0xd6, 0xf3, 0x45, 0x40, 0xb8, 0x4c, 0xe9, 0x49, 0xf4, 0x3f, 0x96, 0x67, 0x13, 0x5d, 0x1d, - 0xff, 0x95, 0xa0, 0x6a, 0x3e, 0xea, 0xe5, 0x47, 0x00, 0x00, 0x00, 0xff, 0xff, 0x55, 0x5f, 0x8e, - 0x59, 0x49, 0x02, 0x00, 0x00, + // 372 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x3f, 0x4f, 0xfa, 0x40, + 0x1c, 0xc6, 0x5b, 0xf8, 0xfd, 0x48, 0x38, 0x60, 0xb0, 0x21, 0x0a, 0x0c, 0x95, 0xc0, 0x42, 0x4c, + 0xbc, 0x0b, 0xba, 0xb8, 0x0a, 0xc6, 0xb9, 0xc1, 0x4d, 0x87, 0xe6, 0x7a, 0x7c, 0x5b, 0x9a, 0xb4, + 0x77, 0x4d, 0x7b, 0x10, 0x7c, 0x17, 0xbe, 0x0c, 0x47, 0x57, 0xdf, 0x01, 0x23, 0xa3, 0x93, 0x31, + 0x30, 0xf8, 0x36, 0x4c, 0xef, 0xf8, 0x67, 0xa2, 0x83, 0x4b, 0xf3, 0xfd, 0x3e, 0x7d, 0xfa, 0x69, + 0x9f, 0xa7, 0x87, 0xba, 0x49, 0x2a, 0x66, 0xc0, 0x29, 0x67, 0x40, 0x60, 0xce, 0x26, 0x94, 0x07, + 0x40, 0x66, 0x7d, 0x92, 0xd0, 0x94, 0xc6, 0x19, 0x4e, 0x52, 0x21, 0x85, 0x75, 0xbc, 0x37, 0xe1, + 0xad, 0x09, 0xcf, 0xfa, 0xad, 0x23, 0x1a, 0x87, 0x5c, 0x10, 0x75, 0xd5, 0xd6, 0x56, 0x3d, 0x10, + 0x81, 0x50, 0x23, 0xc9, 0xa7, 0x8d, 0x6a, 0x33, 0x91, 0xc5, 0x22, 0x23, 0x1e, 0xcd, 0x72, 0xba, + 0x07, 0x92, 0xf6, 0x09, 0x13, 0x21, 0xd7, 0xf7, 0x3b, 0xaf, 0x05, 0x54, 0x72, 0xd4, 0x1b, 0xad, + 0x2e, 0xaa, 0x8d, 0xc1, 0xa7, 0xd3, 0x48, 0xba, 0x59, 0x12, 0x85, 0xb2, 0x61, 0xb6, 0xcd, 0x5e, + 0x6d, 0x54, 0xdd, 0x88, 0x77, 0xb9, 0x66, 0x39, 0xa8, 0x3a, 0x06, 0x2e, 0x62, 0x6d, 0xc9, 0x1a, + 0x85, 0x76, 0xb1, 0x57, 0xb9, 0xe8, 0xe0, 0x9f, 0xbf, 0x13, 0xdf, 0xe4, 0x5e, 0xf5, 0xe4, 0xa0, + 0xbc, 0x78, 0x3f, 0x35, 0x9e, 0x3f, 0x5f, 0xce, 0xcc, 0x51, 0x65, 0xbc, 0x93, 0x33, 0xeb, 0x01, + 0x9d, 0xf8, 0x00, 0x2e, 0x4b, 0x81, 0x4a, 0x70, 0x13, 0xfa, 0x18, 0x03, 0x97, 0xae, 0x1f, 0x51, + 0xd9, 0x28, 0x2a, 0x78, 0x13, 0xeb, 0x0c, 0x38, 0xcf, 0x80, 0x37, 0x19, 0xf0, 0x50, 0x84, 0xfc, + 0x90, 0x59, 0xf7, 0x01, 0x86, 0x8a, 0xe1, 0x68, 0xc4, 0x6d, 0x44, 0xe5, 0x16, 0x4e, 0x19, 0x83, + 0x44, 0x7e, 0x87, 0xff, 0xfb, 0x23, 0xfc, 0x5a, 0x31, 0x0e, 0xe0, 0x9d, 0x2b, 0x84, 0xf6, 0xf9, + 0xac, 0x3a, 0xfa, 0xaf, 0x62, 0xa9, 0xda, 0xca, 0x23, 0xbd, 0xe4, 0xaa, 0x2e, 0xb3, 0xa0, 0xca, + 0xd4, 0xcb, 0x00, 0x16, 0x2b, 0xdb, 0x5c, 0xae, 0x6c, 0xf3, 0x63, 0x65, 0x9b, 0x4f, 0x6b, 0xdb, + 0x58, 0xae, 0x6d, 0xe3, 0x6d, 0x6d, 0x1b, 0xa8, 0x19, 0x8a, 0x5f, 0xba, 0x74, 0xcc, 0x7b, 0x1c, + 0x84, 0x72, 0x32, 0xf5, 0x30, 0x13, 0x31, 0xd9, 0x9b, 0xce, 0x43, 0x71, 0xb0, 0x91, 0xf9, 0xee, + 0x34, 0x79, 0x25, 0xf5, 0x8f, 0x2f, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x9c, 0x9c, 0x91, 0x75, + 0x6b, 0x02, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/exchange/payments.pb.go b/x/exchange/payments.pb.go index 187c604556..2f8bff69a5 100644 --- a/x/exchange/payments.pb.go +++ b/x/exchange/payments.pb.go @@ -8,6 +8,7 @@ import ( _ "github.com/cosmos/cosmos-proto" 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/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" @@ -130,30 +131,32 @@ func init() { } var fileDescriptor_d21a428fd9374bb6 = []byte{ - // 361 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0x31, 0x4f, 0xfa, 0x40, - 0x18, 0xc6, 0x5b, 0xe0, 0xcf, 0x3f, 0x1e, 0xba, 0x10, 0x62, 0x0a, 0xc3, 0x95, 0x98, 0x98, 0xb0, - 0x70, 0x07, 0xba, 0xb9, 0x81, 0x93, 0x1b, 0xc1, 0xcd, 0x85, 0x5c, 0xdb, 0x4b, 0xb9, 0x68, 0xef, - 0x9a, 0xbb, 0x83, 0xc0, 0xb7, 0x70, 0x74, 0x74, 0x76, 0xf6, 0x43, 0x30, 0x12, 0x27, 0x27, 0x35, - 0xf0, 0x25, 0x1c, 0x4d, 0x7b, 0x57, 0x61, 0x30, 0x71, 0x72, 0xea, 0xfb, 0xbe, 0xf7, 0x3c, 0x7d, - 0x7e, 0xc9, 0xfb, 0x82, 0xd3, 0x54, 0x8a, 0x39, 0xe5, 0x84, 0x87, 0x14, 0xd3, 0x45, 0x38, 0x25, - 0x3c, 0xa6, 0x78, 0xde, 0xc7, 0x29, 0x59, 0x26, 0x94, 0x6b, 0x85, 0x52, 0x29, 0xb4, 0xa8, 0x1f, - 0xef, 0x64, 0xa8, 0x90, 0xa1, 0x79, 0xbf, 0x05, 0x43, 0xa1, 0x12, 0xa1, 0x70, 0x40, 0x54, 0x66, - 0x0b, 0xa8, 0x26, 0x7d, 0x1c, 0x0a, 0xc6, 0x8d, 0xaf, 0xd5, 0x34, 0xef, 0x93, 0xbc, 0xc3, 0xa6, - 0xb1, 0x4f, 0x8d, 0x58, 0xc4, 0xc2, 0xcc, 0xb3, 0xca, 0x4c, 0x4f, 0x3e, 0x4b, 0xe0, 0xff, 0xc8, - 0x64, 0xd7, 0x7b, 0xa0, 0xaa, 0xc4, 0x4c, 0x86, 0xd4, 0x73, 0xdb, 0x6e, 0xe7, 0x60, 0xe8, 0xbd, - 0x3c, 0x77, 0x1b, 0xf6, 0x1f, 0x83, 0x28, 0x92, 0x54, 0xa9, 0x6b, 0x2d, 0x19, 0x8f, 0xc7, 0x56, - 0x57, 0x4f, 0xc1, 0x91, 0xa9, 0x26, 0x24, 0x11, 0x33, 0xae, 0xbd, 0x52, 0xbb, 0xdc, 0xa9, 0x9d, - 0x35, 0x91, 0x75, 0x65, 0x98, 0xc8, 0x62, 0xa2, 0x4b, 0xc1, 0xf8, 0xb0, 0xb7, 0x7a, 0xf3, 0x9d, - 0xa7, 0x77, 0xbf, 0x13, 0x33, 0x3d, 0x9d, 0x05, 0x28, 0x14, 0x89, 0xc5, 0xb4, 0x9f, 0xae, 0x8a, - 0x6e, 0xb1, 0x5e, 0xa6, 0x54, 0xe5, 0x06, 0x35, 0x3e, 0x34, 0x09, 0x83, 0x3c, 0x20, 0x63, 0xd4, - 0x44, 0xc6, 0x54, 0x7b, 0xe5, 0xdf, 0x18, 0x8d, 0x2e, 0x63, 0x34, 0x55, 0xc1, 0x58, 0xf9, 0x03, - 0x46, 0x93, 0x60, 0x19, 0x7d, 0x50, 0xa3, 0x0b, 0x4d, 0x25, 0x27, 0x77, 0x13, 0x16, 0x79, 0xff, - 0x32, 0xd0, 0x31, 0x28, 0x46, 0x57, 0xd1, 0x45, 0xe5, 0xe1, 0xd1, 0x77, 0x86, 0x74, 0xb5, 0x81, - 0xee, 0x7a, 0x03, 0xdd, 0x8f, 0x0d, 0x74, 0xef, 0xb7, 0xd0, 0x59, 0x6f, 0xa1, 0xf3, 0xba, 0x85, - 0x0e, 0x68, 0xb2, 0x7c, 0x3d, 0x3f, 0x1c, 0xc0, 0xc8, 0xbd, 0x41, 0x7b, 0x54, 0x3b, 0x51, 0x97, - 0x89, 0xbd, 0x0e, 0x2f, 0xbe, 0x8f, 0x2b, 0xa8, 0xe6, 0x8b, 0x3e, 0xff, 0x0a, 0x00, 0x00, 0xff, - 0xff, 0x82, 0xff, 0x1d, 0x1b, 0x7a, 0x02, 0x00, 0x00, + // 398 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x92, 0xbf, 0x6b, 0x22, 0x41, + 0x14, 0xc7, 0x77, 0x4e, 0xcf, 0xe3, 0x56, 0xaf, 0x38, 0x91, 0x63, 0xb5, 0xd8, 0x95, 0x83, 0x80, + 0x08, 0xce, 0xc4, 0xa4, 0x4b, 0xa7, 0x81, 0x40, 0x3a, 0x31, 0x5d, 0x9a, 0x65, 0x76, 0x77, 0x58, + 0x87, 0xb8, 0x33, 0xcb, 0xce, 0x28, 0xfa, 0x0f, 0xa4, 0x4e, 0x19, 0x52, 0xa5, 0x0a, 0x21, 0x95, + 0x45, 0xfe, 0x08, 0x4b, 0x49, 0x95, 0x2a, 0x09, 0x5a, 0xf8, 0x6f, 0x84, 0xdd, 0x19, 0xa3, 0x45, + 0x20, 0x5d, 0x9a, 0x99, 0xf7, 0xe3, 0xfb, 0xde, 0xfb, 0x0c, 0xf3, 0xcc, 0xbd, 0x38, 0xe1, 0x63, + 0xc2, 0x30, 0xf3, 0x09, 0x22, 0x13, 0x7f, 0x80, 0x59, 0x48, 0xd0, 0xb8, 0x8d, 0x62, 0x3c, 0x8d, + 0x08, 0x93, 0x02, 0xc6, 0x09, 0x97, 0xbc, 0xfc, 0x6f, 0x2b, 0x83, 0x1b, 0x19, 0x1c, 0xb7, 0x6b, + 0x7f, 0x71, 0x44, 0x19, 0x47, 0xd9, 0xa9, 0xa4, 0x35, 0xdb, 0xe7, 0x22, 0xe2, 0x02, 0x79, 0x58, + 0xa4, 0x9d, 0x3c, 0x22, 0x71, 0x1b, 0xf9, 0x9c, 0x32, 0x9d, 0xaf, 0xaa, 0xbc, 0x9b, 0x79, 0x48, + 0x39, 0x3a, 0x55, 0x09, 0x79, 0xc8, 0x55, 0x3c, 0xb5, 0x54, 0xf4, 0xff, 0x5d, 0xce, 0xfc, 0xd5, + 0x53, 0x38, 0xe5, 0x7d, 0xb3, 0x20, 0xf8, 0x28, 0xf1, 0x89, 0x05, 0xea, 0xa0, 0xf1, 0xbb, 0x6b, + 0x3d, 0x3d, 0xb6, 0x2a, 0xba, 0x47, 0x27, 0x08, 0x12, 0x22, 0xc4, 0x99, 0x4c, 0x28, 0x0b, 0xfb, + 0x5a, 0x57, 0xbe, 0x04, 0xe6, 0x1f, 0x65, 0xba, 0x38, 0xe2, 0x23, 0x26, 0xad, 0x1f, 0xf5, 0x5c, + 0xa3, 0x78, 0x50, 0x85, 0xba, 0x2c, 0xe5, 0x84, 0x9a, 0x13, 0x1e, 0x73, 0xca, 0xba, 0x27, 0xf3, + 0x17, 0xc7, 0x78, 0x78, 0x75, 0x1a, 0x21, 0x95, 0x83, 0x91, 0x07, 0x7d, 0x1e, 0x69, 0x4e, 0x7d, + 0xb5, 0x44, 0x70, 0x81, 0xe4, 0x34, 0x26, 0x22, 0x2b, 0x10, 0x37, 0xeb, 0x59, 0xb3, 0x34, 0x24, + 0x21, 0xf6, 0xa7, 0x6e, 0xfa, 0x52, 0x71, 0xbf, 0x9e, 0x35, 0x41, 0xbf, 0xa4, 0xe6, 0x76, 0xb2, + 0xb1, 0x29, 0xba, 0xc4, 0x49, 0x48, 0xa4, 0x95, 0xfb, 0x0a, 0x5d, 0xe9, 0x32, 0x74, 0x65, 0x6e, + 0xd0, 0xf3, 0xdf, 0x86, 0xae, 0xe6, 0x6a, 0x74, 0xc7, 0x2c, 0x92, 0x89, 0x24, 0x09, 0xc3, 0x43, + 0x97, 0x06, 0xd6, 0xcf, 0x94, 0xbf, 0x6f, 0x6e, 0x42, 0xa7, 0xc1, 0x51, 0xfe, 0xfa, 0xd6, 0x31, + 0xba, 0x64, 0xbe, 0xb4, 0xc1, 0x62, 0x69, 0x83, 0xb7, 0xa5, 0x0d, 0xae, 0x56, 0xb6, 0xb1, 0x58, + 0xd9, 0xc6, 0xf3, 0xca, 0x36, 0xcc, 0x2a, 0xcd, 0x3e, 0xf3, 0x93, 0x0d, 0xea, 0x81, 0x73, 0xb8, + 0xc3, 0xba, 0x15, 0xb5, 0x28, 0xdf, 0xf1, 0xd0, 0xe4, 0x63, 0x3b, 0xbd, 0x42, 0xb6, 0x16, 0x87, + 0xef, 0x01, 0x00, 0x00, 0xff, 0xff, 0x91, 0xa5, 0x2f, 0xe7, 0xbb, 0x02, 0x00, 0x00, } func (m *Payment) Marshal() (dAtA []byte, err error) { diff --git a/x/exchange/query.pb.go b/x/exchange/query.pb.go index 0aa97cd012..39a34333c4 100644 --- a/x/exchange/query.pb.go +++ b/x/exchange/query.pb.go @@ -10,6 +10,7 @@ import ( github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" @@ -2555,156 +2556,159 @@ func init() { } var fileDescriptor_00949b75b1c10bfe = []byte{ - // 2379 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4d, 0x6c, 0xdc, 0x58, - 0x1d, 0xaf, 0xd3, 0x26, 0x4d, 0xfe, 0x69, 0xb3, 0xda, 0xd7, 0xb4, 0x4c, 0xa6, 0xed, 0x24, 0x75, - 0xbf, 0xa2, 0xb4, 0x19, 0xe7, 0xa3, 0xcd, 0xa6, 0x8b, 0x4a, 0x37, 0xc9, 0x92, 0xa8, 0x12, 0xdb, - 0x66, 0xa7, 0x11, 0x5d, 0x45, 0x82, 0x59, 0xc7, 0xf3, 0x32, 0x35, 0xf1, 0xd8, 0xb3, 0xb6, 0x33, - 0x4d, 0x14, 0xe5, 0xc0, 0x97, 0x56, 0xcb, 0x01, 0x21, 0x71, 0x59, 0x54, 0xb1, 0x1c, 0x16, 0x81, - 0xb4, 0x97, 0xe5, 0x00, 0x27, 0x84, 0xf6, 0xc0, 0x81, 0x5e, 0x90, 0x56, 0x70, 0x01, 0x09, 0x01, - 0x6a, 0x39, 0xc2, 0x91, 0x2b, 0x42, 0x7e, 0xef, 0xef, 0xb1, 0x3d, 0x63, 0xfb, 0x79, 0xb2, 0x13, - 0x29, 0xa7, 0x89, 0xed, 0xff, 0xc7, 0xef, 0xff, 0x7b, 0xdf, 0xbf, 0x17, 0x90, 0xeb, 0xb6, 0xd5, - 0xa0, 0xa6, 0x6a, 0x6a, 0x54, 0xa1, 0x3b, 0xda, 0x13, 0xd5, 0xac, 0x52, 0xa5, 0x31, 0xad, 0xbc, - 0xb7, 0x4d, 0xed, 0xdd, 0x62, 0xdd, 0xb6, 0x5c, 0x8b, 0x9c, 0x0b, 0x6c, 0x8a, 0xbe, 0x4d, 0xb1, - 0x31, 0x9d, 0x1f, 0xd1, 0x2c, 0xa7, 0x66, 0x39, 0x65, 0x66, 0xa5, 0xf0, 0x07, 0xee, 0x92, 0x9f, - 0xe0, 0x4f, 0xca, 0x86, 0xea, 0x50, 0x1e, 0x4b, 0x69, 0x4c, 0x6f, 0x50, 0x57, 0x9d, 0x56, 0xea, - 0x6a, 0x55, 0x37, 0x55, 0x57, 0xb7, 0x4c, 0xb4, 0x2d, 0x84, 0x6d, 0x7d, 0x2b, 0xcd, 0xd2, 0xfd, - 0xef, 0x17, 0xaa, 0x96, 0x55, 0x35, 0xa8, 0xa2, 0xd6, 0x75, 0x45, 0x35, 0x4d, 0xcb, 0x65, 0xce, - 0x7e, 0xa6, 0xe1, 0xaa, 0x55, 0xb5, 0x38, 0x02, 0xef, 0x2f, 0x7c, 0x3b, 0x9e, 0x50, 0x96, 0x66, - 0xd5, 0x6a, 0xba, 0x5b, 0xa3, 0xa6, 0xeb, 0xfb, 0x5f, 0x4e, 0xb0, 0xac, 0xa9, 0xf6, 0x16, 0x75, - 0x05, 0x46, 0x96, 0x5d, 0xa1, 0xb6, 0x28, 0x52, 0x5d, 0xb5, 0xd5, 0x9a, 0x6f, 0x74, 0x35, 0xd1, - 0x68, 0x37, 0x8c, 0x6a, 0x34, 0xc1, 0xcc, 0xdd, 0xe1, 0x06, 0xf2, 0x87, 0x12, 0xe4, 0xde, 0xf6, - 0x78, 0x7d, 0xe8, 0x41, 0x58, 0xa6, 0x74, 0x49, 0x35, 0xb4, 0x12, 0x7d, 0x6f, 0x9b, 0x3a, 0x2e, - 0xb9, 0x0b, 0x03, 0xaa, 0xb3, 0x55, 0x66, 0xe8, 0x72, 0x3d, 0x63, 0xd2, 0xf8, 0xe0, 0xcc, 0x58, - 0x31, 0xbe, 0x11, 0x8b, 0x0b, 0xce, 0x16, 0x0b, 0x51, 0xea, 0x57, 0xf1, 0x2f, 0xcf, 0x7d, 0x43, - 0xaf, 0xa0, 0xfb, 0xf1, 0x74, 0xf7, 0x45, 0xbd, 0x82, 0xee, 0x1b, 0xf8, 0x97, 0xfc, 0xab, 0x1e, - 0x18, 0x89, 0x81, 0xe6, 0xd4, 0x2d, 0xd3, 0xa1, 0xe4, 0x6d, 0x18, 0xd6, 0x6c, 0xca, 0x9a, 0xb0, - 0xbc, 0x49, 0x69, 0xd9, 0xaa, 0xb3, 0xd6, 0xcc, 0x49, 0x63, 0xc7, 0xc7, 0x07, 0x67, 0x46, 0x8a, - 0xd8, 0x8d, 0xbc, 0xce, 0x50, 0xc4, 0xce, 0x50, 0x5c, 0xb2, 0x74, 0x73, 0xf1, 0xc4, 0xf3, 0xbf, - 0x8f, 0x1e, 0x2b, 0x11, 0xdf, 0x79, 0x99, 0xd2, 0x87, 0xdc, 0x95, 0x7c, 0x13, 0xce, 0x3b, 0xd4, - 0x75, 0x0d, 0xea, 0x31, 0x58, 0xde, 0x34, 0x54, 0x37, 0x12, 0xb9, 0x27, 0x5b, 0xe4, 0x5c, 0x10, - 0x63, 0xd9, 0x50, 0xdd, 0x50, 0xfc, 0x77, 0xe1, 0x42, 0x28, 0xbe, 0xed, 0xa5, 0x8f, 0x24, 0x38, - 0x9e, 0x2d, 0xc1, 0x48, 0x10, 0xa4, 0xe4, 0xc5, 0x08, 0x32, 0xc8, 0xd3, 0x30, 0xcc, 0x18, 0x5b, - 0xa1, 0x2e, 0x67, 0x13, 0x1b, 0x72, 0x04, 0xfa, 0x59, 0x2b, 0x94, 0xf5, 0x4a, 0x4e, 0x1a, 0x93, - 0xc6, 0x4f, 0x94, 0x4e, 0xb2, 0xe7, 0xfb, 0x15, 0xf9, 0x6b, 0x70, 0xb6, 0xc5, 0x05, 0x09, 0x9e, - 0x85, 0x5e, 0xde, 0x72, 0x12, 0x6b, 0xb9, 0x8b, 0x49, 0x2d, 0xc7, 0xbd, 0xb8, 0xad, 0xfc, 0x2e, - 0x8c, 0x45, 0xa2, 0x2d, 0xee, 0x7e, 0x75, 0xc7, 0xa5, 0xb6, 0xa9, 0x1a, 0xf7, 0xdf, 0xf4, 0xc1, - 0x9c, 0x87, 0x01, 0x3e, 0x28, 0x7c, 0x34, 0xa7, 0x4b, 0xfd, 0xfc, 0xc5, 0xfd, 0x0a, 0x19, 0x85, - 0x41, 0x8a, 0x1e, 0xde, 0x67, 0xaf, 0xd3, 0x0d, 0x94, 0xc0, 0x7f, 0x75, 0xbf, 0x22, 0xbf, 0x03, - 0x97, 0x52, 0x32, 0x7c, 0x11, 0xec, 0x7f, 0x90, 0xe0, 0xbc, 0x1f, 0xfa, 0x2d, 0x86, 0x87, 0x7d, - 0x76, 0x32, 0xe1, 0xbe, 0x08, 0xc0, 0x19, 0x76, 0x77, 0xeb, 0x14, 0x61, 0x0f, 0xb0, 0x37, 0x6b, - 0xbb, 0x75, 0x4a, 0xae, 0xc0, 0x90, 0xba, 0xe9, 0x52, 0xbb, 0xdc, 0x6c, 0x86, 0xe3, 0xac, 0x19, - 0x4e, 0xb1, 0xb7, 0x0f, 0x79, 0x5b, 0x90, 0x65, 0x80, 0x60, 0x56, 0xcb, 0x69, 0x0c, 0xfb, 0xb5, - 0x48, 0x77, 0xe0, 0xd3, 0xa9, 0xdf, 0x29, 0x56, 0xd5, 0x2a, 0x45, 0x74, 0xa5, 0x90, 0xa7, 0xfc, - 0x91, 0x04, 0x17, 0xe2, 0x2b, 0x41, 0x7e, 0x6e, 0x43, 0x1f, 0x9f, 0x72, 0x70, 0xb8, 0x08, 0x08, - 0x42, 0x63, 0xb2, 0x12, 0x83, 0xef, 0xba, 0x10, 0x1f, 0xcf, 0x19, 0x01, 0xf8, 0x57, 0x09, 0xf2, - 0xcd, 0x56, 0x7c, 0x6a, 0x22, 0x03, 0x4d, 0xa6, 0x8b, 0xd0, 0x6b, 0x79, 0x6f, 0x19, 0xcb, 0x03, - 0x8b, 0xb9, 0x3f, 0xfd, 0x7a, 0x72, 0x18, 0xb3, 0x2c, 0x54, 0x2a, 0x36, 0x75, 0x9c, 0x47, 0xae, - 0xad, 0x9b, 0xd5, 0x12, 0x37, 0x3b, 0x5a, 0xe4, 0xff, 0x34, 0xd4, 0x8d, 0x22, 0xb5, 0x1d, 0x11, - 0xee, 0x3f, 0x0b, 0x71, 0xbf, 0xe0, 0x38, 0xad, 0xbd, 0x7c, 0x18, 0x7a, 0x55, 0xef, 0x2d, 0xe7, - 0xbe, 0xc4, 0x1f, 0x8e, 0x2e, 0xc3, 0x91, 0x0a, 0x8e, 0x08, 0xc3, 0x1b, 0xb8, 0xa4, 0x7a, 0xf0, - 0x0c, 0x23, 0x4a, 0x6f, 0xb7, 0x38, 0x78, 0x26, 0xe1, 0xe2, 0x18, 0x4d, 0x72, 0x44, 0x18, 0x30, - 0x02, 0x70, 0x4b, 0xcd, 0x9d, 0x92, 0x4f, 0xc1, 0x0c, 0x9c, 0x54, 0x35, 0xcd, 0xda, 0x36, 0x5d, - 0xe1, 0xf8, 0xf6, 0x0d, 0xa3, 0x73, 0x6f, 0x4f, 0x74, 0xee, 0x95, 0xbf, 0x1d, 0xea, 0xd1, 0xe1, - 0x74, 0x48, 0x86, 0x06, 0x7d, 0x6a, 0x0d, 0xd3, 0x09, 0x16, 0xd8, 0x29, 0x6f, 0x81, 0xfd, 0xe4, - 0x1f, 0xa3, 0xe3, 0x55, 0xdd, 0x7d, 0xb2, 0xbd, 0x51, 0xd4, 0xac, 0x1a, 0xee, 0x47, 0xf1, 0x67, - 0xd2, 0xa9, 0x6c, 0x29, 0xde, 0x18, 0x70, 0x98, 0x83, 0x53, 0xc2, 0xd0, 0xf2, 0xe3, 0x60, 0x59, - 0x5a, 0xe0, 0x98, 0x03, 0x24, 0xce, 0x17, 0xa8, 0x5c, 0x36, 0x40, 0x4e, 0x0b, 0x8c, 0x35, 0x2e, - 0xc3, 0x60, 0x68, 0x4b, 0x8a, 0x85, 0x5e, 0x49, 0x6a, 0x75, 0xbe, 0x26, 0x2c, 0x30, 0xe4, 0xa5, - 0xb0, 0xa3, 0xfc, 0xbe, 0x14, 0x2c, 0xe0, 0xdc, 0x2a, 0xa6, 0x8c, 0xd4, 0x85, 0xb0, 0x5b, 0x1d, - 0xfc, 0x37, 0x52, 0xc0, 0x68, 0x0c, 0x12, 0xac, 0x7b, 0x25, 0xae, 0xee, 0xab, 0x89, 0x7b, 0x54, - 0x4e, 0x60, 0x4c, 0xe1, 0xdd, 0xeb, 0xfa, 0x55, 0xb8, 0x18, 0x1a, 0x97, 0x31, 0xec, 0x75, 0x8b, - 0xa0, 0x4f, 0x25, 0x28, 0x24, 0x65, 0x42, 0x76, 0xde, 0x8c, 0x63, 0x47, 0x4e, 0x62, 0x27, 0x34, - 0x74, 0x0e, 0x87, 0x9a, 0x5b, 0xc1, 0x56, 0x93, 0xb7, 0x68, 0x96, 0x0e, 0x25, 0x7f, 0x4f, 0x82, - 0x73, 0xad, 0x6e, 0x58, 0x9f, 0x37, 0x9e, 0xf8, 0xa8, 0xc9, 0x30, 0x9e, 0xf8, 0x23, 0x99, 0x83, - 0x3e, 0x1e, 0x1a, 0x0f, 0x34, 0x85, 0xf4, 0x41, 0x52, 0x42, 0x6b, 0x59, 0x8b, 0xcc, 0xb7, 0xfc, - 0x63, 0xd7, 0xdb, 0xf4, 0xe7, 0xe1, 0xb5, 0x39, 0x94, 0x05, 0xeb, 0xbd, 0x0b, 0x27, 0x39, 0x1a, - 0xbf, 0x2d, 0x2f, 0xa7, 0x83, 0x5f, 0xb4, 0x75, 0xba, 0x59, 0xf2, 0x7d, 0xba, 0xd7, 0x90, 0xc3, - 0x40, 0x18, 0xca, 0x55, 0x76, 0x22, 0xc5, 0x42, 0xe4, 0xb7, 0xe0, 0x4c, 0xe4, 0x2d, 0x82, 0x9e, - 0x83, 0x3e, 0x7e, 0x72, 0xc5, 0xcd, 0x78, 0x22, 0xe1, 0xe8, 0x87, 0xd6, 0xf2, 0xef, 0x24, 0xb8, - 0xce, 0xe2, 0x05, 0xfd, 0xf2, 0x51, 0x70, 0xb2, 0x8a, 0x1e, 0x54, 0xdf, 0x01, 0x08, 0x0e, 0x45, - 0x98, 0x67, 0x3e, 0x91, 0x1b, 0xa7, 0xda, 0x3a, 0xa1, 0xf0, 0xc0, 0xcd, 0x16, 0x09, 0x62, 0x91, - 0x79, 0xc8, 0xe9, 0xa6, 0x66, 0x6c, 0x57, 0x68, 0x79, 0xc3, 0xa6, 0xea, 0x56, 0xc5, 0x7a, 0x6a, - 0x96, 0x37, 0x75, 0x6a, 0x54, 0x1c, 0xd6, 0x81, 0xfa, 0x4b, 0xe7, 0xf0, 0xfb, 0xa2, 0xff, 0x79, - 0x99, 0x7d, 0x95, 0x9f, 0x9d, 0x80, 0x71, 0x31, 0x7e, 0x24, 0xa9, 0x0e, 0xa7, 0x7d, 0x88, 0xde, - 0x91, 0xd0, 0x39, 0x8c, 0xa5, 0xea, 0x94, 0x9f, 0x61, 0x99, 0x52, 0x87, 0x18, 0x30, 0xa8, 0x9b, - 0xf5, 0x6d, 0xb7, 0xec, 0x5a, 0xae, 0x6a, 0x88, 0x0f, 0xb7, 0x9d, 0xe7, 0x03, 0x16, 0x7f, 0xcd, - 0x0b, 0x4f, 0x5c, 0x78, 0x45, 0xb3, 0xcc, 0x06, 0xb5, 0x5d, 0x5a, 0xc1, 0x8c, 0xc7, 0xbb, 0x9f, - 0x71, 0xa8, 0x99, 0x83, 0x67, 0x5d, 0xf3, 0xb3, 0x3a, 0xba, 0x65, 0x96, 0x4d, 0xb5, 0xe1, 0xe4, - 0x4e, 0xa4, 0xaf, 0x10, 0x0f, 0x70, 0x47, 0xb9, 0x6a, 0xeb, 0x1a, 0xc5, 0xf3, 0xf6, 0x50, 0x10, - 0xe3, 0x81, 0xda, 0x70, 0xc8, 0x12, 0x80, 0xcb, 0x0f, 0xee, 0xa6, 0xda, 0xc8, 0xf5, 0xb2, 0xce, - 0x96, 0x2d, 0x60, 0xa9, 0xdf, 0xf5, 0x4e, 0xeb, 0x0f, 0xd4, 0x86, 0xfc, 0x81, 0xbf, 0xd0, 0x7e, - 0x5d, 0x35, 0xf4, 0x8a, 0xea, 0xd2, 0x25, 0x9b, 0xaa, 0x2e, 0x8d, 0xce, 0x8b, 0x14, 0xce, 0x32, - 0x99, 0x82, 0x96, 0x71, 0x7a, 0xb4, 0xf9, 0x07, 0xec, 0xe1, 0xd3, 0x29, 0x3d, 0x7c, 0xc5, 0x6a, - 0xc4, 0x44, 0x2c, 0x9d, 0xd1, 0xda, 0x5f, 0xca, 0x9b, 0xb8, 0xd2, 0xc6, 0x43, 0xc1, 0x1e, 0x3a, - 0x0c, 0xbd, 0xd4, 0xb6, 0x2d, 0xdb, 0x3f, 0x17, 0xb0, 0x07, 0x72, 0x03, 0x48, 0xd5, 0x6a, 0x94, - 0xeb, 0xb6, 0x55, 0x2f, 0x3f, 0xd5, 0x0d, 0xa3, 0x5c, 0x57, 0x1d, 0x7f, 0x60, 0xbc, 0x52, 0xb5, - 0x1a, 0xab, 0xb6, 0x55, 0x7f, 0xac, 0x1b, 0xc6, 0xaa, 0xea, 0x38, 0xf2, 0x1d, 0x9c, 0xdc, 0xfc, - 0x3c, 0x1d, 0x2c, 0x02, 0xb3, 0xb8, 0xe3, 0x6f, 0x75, 0x4d, 0x03, 0xe7, 0xed, 0x0b, 0x0b, 0x2d, - 0x5e, 0xa6, 0xca, 0xbb, 0xbf, 0x9f, 0xb4, 0x0c, 0x67, 0x6a, 0xec, 0x25, 0x1b, 0x75, 0x2d, 0xfc, - 0x2a, 0xe9, 0xfc, 0xb6, 0x45, 0x2b, 0xbd, 0x5a, 0x6b, 0x7d, 0x25, 0x57, 0x60, 0x34, 0x11, 0x42, - 0xf7, 0x98, 0xdd, 0x0a, 0x96, 0xc8, 0x55, 0x2e, 0x00, 0xfa, 0x05, 0x4e, 0x41, 0x9f, 0x63, 0x6d, - 0xdb, 0x1a, 0x15, 0xae, 0x90, 0x68, 0x27, 0x56, 0x60, 0xd6, 0xe0, 0x4b, 0x6d, 0xc9, 0xb0, 0x94, - 0x3b, 0x70, 0x12, 0x05, 0x48, 0xa4, 0x70, 0x34, 0x79, 0xb2, 0xe7, 0x9e, 0xbe, 0xbd, 0x77, 0xa8, - 0xbb, 0xd4, 0x12, 0xd6, 0x79, 0xac, 0xbb, 0x4f, 0x1e, 0x31, 0x54, 0x07, 0x2f, 0xa7, 0x5b, 0x4b, - 0xf3, 0x27, 0x52, 0xb0, 0x11, 0x8f, 0xc3, 0x87, 0x0c, 0x7c, 0x19, 0xfa, 0x7d, 0x09, 0x16, 0xe7, - 0x70, 0x21, 0x05, 0x4d, 0x87, 0xee, 0x2d, 0xd0, 0x49, 0x64, 0xae, 0xa9, 0x76, 0x95, 0x86, 0xfb, - 0x86, 0xcb, 0x5e, 0x88, 0xc9, 0xe4, 0x76, 0x87, 0x4e, 0xa6, 0x8f, 0xef, 0x48, 0x91, 0x59, 0x89, - 0xec, 0xc9, 0x7c, 0xb8, 0xdd, 0xde, 0xfa, 0x7d, 0x1c, 0x16, 0x35, 0xc2, 0x69, 0x8e, 0x14, 0x17, - 0xdf, 0x40, 0x2e, 0x30, 0x45, 0xcb, 0x36, 0xec, 0x5e, 0xa7, 0xc3, 0x1f, 0x57, 0xd8, 0xe6, 0x24, - 0xf0, 0x5f, 0x9f, 0x84, 0xd6, 0xf8, 0x48, 0xc2, 0xb7, 0x00, 0xbc, 0x75, 0x97, 0x2f, 0x62, 0x87, - 0xb1, 0x47, 0x1a, 0xd8, 0xa4, 0xb8, 0xfc, 0xf9, 0xb9, 0x54, 0x4d, 0xa3, 0x75, 0xf7, 0x30, 0xf6, - 0x47, 0x5e, 0xae, 0x05, 0x16, 0x7d, 0xe6, 0x17, 0x97, 0xa1, 0x97, 0xd5, 0x4d, 0x7e, 0x26, 0xc1, - 0xa9, 0xf0, 0x7d, 0x07, 0x99, 0x4a, 0xa2, 0x30, 0xe9, 0xd6, 0x26, 0x3f, 0xdd, 0x81, 0x07, 0xe7, - 0x55, 0x9e, 0xf8, 0xce, 0x9f, 0xff, 0xf5, 0xe3, 0x9e, 0x2b, 0x44, 0x56, 0x12, 0xee, 0x8b, 0xbc, - 0xd5, 0x91, 0xdf, 0x52, 0x91, 0x9f, 0x48, 0xd0, 0xef, 0x8b, 0xef, 0xe4, 0x66, 0x6a, 0xae, 0x96, - 0x6b, 0x88, 0xfc, 0x64, 0x46, 0x6b, 0x44, 0x35, 0xc5, 0x50, 0x4d, 0x90, 0x71, 0x25, 0xed, 0xda, - 0x4c, 0xd9, 0xf3, 0x45, 0xc7, 0x7d, 0xf2, 0x61, 0x0f, 0x0c, 0xc7, 0x5d, 0x0c, 0x90, 0xf9, 0x4c, - 0x99, 0x63, 0x6e, 0x2b, 0xf2, 0x77, 0x0e, 0xe0, 0x89, 0xf8, 0x7f, 0x20, 0xb1, 0x02, 0xbe, 0x2b, - 0xad, 0xbf, 0x41, 0xbe, 0xa2, 0xa4, 0xde, 0x0f, 0x2a, 0x7b, 0xcd, 0xbd, 0xcf, 0xbe, 0x5f, 0x56, - 0x68, 0x15, 0xde, 0x27, 0xf7, 0x52, 0x39, 0x70, 0xe2, 0xc2, 0x44, 0x03, 0xfc, 0x5b, 0x82, 0x57, - 0x5a, 0xae, 0x03, 0xc8, 0xac, 0xa8, 0xb6, 0x98, 0x6b, 0x90, 0xfc, 0xad, 0xce, 0x9c, 0x90, 0x0b, - 0x93, 0x51, 0xf1, 0x64, 0x7d, 0x96, 0x4c, 0x77, 0xca, 0x84, 0x93, 0xec, 0x92, 0x58, 0x3c, 0xf9, - 0x54, 0x82, 0xa1, 0xa8, 0x00, 0x4f, 0x66, 0x84, 0x2d, 0xd9, 0x76, 0x13, 0x91, 0x9f, 0xed, 0xc8, - 0x07, 0x6b, 0xbd, 0xc5, 0x6a, 0x2d, 0x92, 0x9b, 0x02, 0xd8, 0xec, 0xf2, 0x42, 0xd9, 0x63, 0x3f, - 0x4d, 0xc4, 0x21, 0x41, 0x5b, 0x8c, 0xb8, 0x5d, 0xbf, 0x17, 0x23, 0x8e, 0x51, 0xcc, 0x33, 0x23, - 0x66, 0x97, 0x01, 0xca, 0x1e, 0xfb, 0xd9, 0x27, 0xcf, 0x24, 0x38, 0x15, 0x96, 0x9f, 0x05, 0x73, - 0x55, 0x8c, 0x1c, 0x2e, 0x98, 0xab, 0xe2, 0xb4, 0x6d, 0xf9, 0x1a, 0xc3, 0x3a, 0x46, 0x0a, 0xe9, - 0x58, 0xc9, 0x67, 0x12, 0x9c, 0x8e, 0x08, 0xc2, 0x44, 0x98, 0xac, 0x4d, 0xab, 0xce, 0xcf, 0x74, - 0xe2, 0x82, 0x00, 0x57, 0x18, 0xc0, 0x85, 0xe4, 0x21, 0x1b, 0xd3, 0xd1, 0x03, 0xbd, 0x4d, 0xd9, - 0x43, 0xe5, 0x77, 0x9f, 0xfc, 0x51, 0x82, 0xb3, 0xb1, 0xb2, 0x2f, 0x11, 0x4e, 0x4a, 0x89, 0x1a, - 0x74, 0xfe, 0xf5, 0x83, 0xb8, 0x62, 0x65, 0x77, 0x59, 0x65, 0xaf, 0x91, 0xdb, 0x8a, 0xf8, 0xdf, - 0x22, 0x14, 0x2c, 0x23, 0x54, 0xcf, 0xf7, 0xf9, 0xec, 0xdc, 0xa6, 0xe6, 0x8a, 0x67, 0xe7, 0x24, - 0x29, 0x5a, 0x3c, 0x3b, 0x27, 0x4a, 0xc7, 0xf2, 0x0e, 0x2b, 0xc6, 0x5e, 0x9f, 0x27, 0x73, 0x07, - 0x6a, 0x28, 0x27, 0xd9, 0x2f, 0x4c, 0x43, 0xfc, 0xdc, 0xf4, 0x6a, 0x9b, 0x68, 0x4b, 0x6e, 0x67, - 0x18, 0x0a, 0x31, 0x0c, 0xcc, 0x75, 0xea, 0x86, 0xe5, 0xdf, 0x60, 0xe5, 0x5f, 0x25, 0x97, 0x33, - 0x14, 0x41, 0x3e, 0x92, 0x60, 0xa0, 0x49, 0x26, 0x99, 0xcc, 0x46, 0xba, 0x8f, 0xb0, 0x98, 0xd5, - 0x1c, 0x91, 0xcd, 0x30, 0x64, 0x37, 0xc9, 0x44, 0xf6, 0x66, 0xf1, 0xb6, 0x4d, 0xa7, 0x23, 0x9a, - 0x29, 0xc9, 0x32, 0xb3, 0x44, 0x55, 0x5c, 0xf1, 0x60, 0x6f, 0x97, 0x64, 0xe5, 0xeb, 0x0c, 0xec, - 0x25, 0x32, 0x9a, 0x0e, 0xd6, 0x21, 0x1f, 0x48, 0xd0, 0xc7, 0x15, 0x4e, 0x32, 0x91, 0x9a, 0x27, - 0x22, 0xaa, 0xe6, 0x6f, 0x64, 0xb2, 0xcd, 0x3a, 0x35, 0x72, 0x69, 0x95, 0xfc, 0x4d, 0x82, 0xf3, - 0x29, 0xaa, 0x24, 0xb9, 0x97, 0x9a, 0x54, 0xac, 0xc7, 0xe6, 0xdf, 0x38, 0x78, 0x00, 0x2c, 0xe5, - 0x75, 0x56, 0xca, 0x2d, 0x32, 0x93, 0xba, 0x23, 0x0d, 0xfa, 0x68, 0x39, 0xa4, 0xd9, 0xfe, 0x5e, - 0x82, 0xe1, 0x38, 0x2d, 0x4b, 0x30, 0xcf, 0xa4, 0x28, 0x71, 0x82, 0x79, 0x26, 0x4d, 0x38, 0x93, - 0xe7, 0x58, 0x25, 0x53, 0xa4, 0x98, 0x54, 0x49, 0x03, 0xbd, 0x95, 0x88, 0xd6, 0x47, 0xfe, 0x23, - 0xc1, 0x50, 0x54, 0xee, 0x12, 0xec, 0x07, 0x62, 0x65, 0x35, 0xc1, 0x7e, 0x20, 0x5e, 0x4f, 0x93, - 0x6d, 0x86, 0xd9, 0x58, 0xbf, 0x4d, 0x66, 0x3b, 0x98, 0x1b, 0xfd, 0x42, 0x92, 0x9d, 0x9a, 0xa5, - 0xc6, 0x0c, 0xe1, 0xdf, 0x4a, 0x40, 0xda, 0x55, 0x32, 0x32, 0x97, 0x11, 0x7f, 0x8b, 0xf0, 0x96, - 0x7f, 0xad, 0x63, 0xbf, 0xac, 0x7b, 0xa1, 0x50, 0x11, 0x4d, 0xe5, 0x90, 0xfc, 0x4f, 0x02, 0x08, - 0xc4, 0x0c, 0x22, 0x9c, 0xf3, 0xa2, 0x32, 0x5d, 0x5e, 0xc9, 0x6c, 0x8f, 0x28, 0x7f, 0xc8, 0xcf, - 0x16, 0xef, 0x4b, 0xeb, 0x29, 0xe7, 0x23, 0x3c, 0x56, 0x2b, 0x7b, 0x5c, 0x0b, 0xdb, 0x4f, 0x5b, - 0xeb, 0x5a, 0x6d, 0x5b, 0x8e, 0x0f, 0xa3, 0x02, 0x3f, 0xf2, 0x9c, 0x6f, 0x56, 0xda, 0xa5, 0x31, - 0xf1, 0x66, 0x25, 0x51, 0xee, 0x13, 0x6f, 0x56, 0x92, 0x95, 0x38, 0x79, 0x9e, 0x11, 0x34, 0x43, - 0xa6, 0x04, 0xc8, 0x1d, 0x85, 0x57, 0xdc, 0xac, 0x3c, 0xae, 0x14, 0x2e, 0x4c, 0x75, 0x56, 0x4a, - 0x44, 0x6c, 0xeb, 0xac, 0x94, 0xa8, 0x0e, 0xd6, 0x41, 0x29, 0x5c, 0xa7, 0x53, 0xf6, 0xf8, 0xef, - 0x3e, 0xf9, 0x18, 0x0f, 0x15, 0x81, 0xa0, 0x44, 0xb2, 0xac, 0x72, 0x2d, 0x22, 0x57, 0x86, 0x43, - 0x45, 0xbb, 0x62, 0x25, 0x8f, 0x33, 0xd4, 0x32, 0x19, 0x13, 0xa1, 0x26, 0xbf, 0x94, 0x60, 0x28, - 0xaa, 0xf8, 0x08, 0x50, 0xc6, 0xca, 0x4f, 0x02, 0x94, 0xf1, 0x92, 0x92, 0x7c, 0x93, 0xa1, 0xbc, - 0x46, 0xae, 0xa4, 0x2e, 0x34, 0x08, 0x75, 0x91, 0x3e, 0x7f, 0x51, 0x90, 0x3e, 0x7f, 0x51, 0x90, - 0xfe, 0xf9, 0xa2, 0x20, 0xfd, 0xe8, 0x65, 0xe1, 0xd8, 0xe7, 0x2f, 0x0b, 0xc7, 0xfe, 0xf2, 0xb2, - 0x70, 0x0c, 0x46, 0x74, 0x2b, 0x21, 0xfd, 0xaa, 0xb4, 0x5e, 0x0c, 0x89, 0x42, 0x81, 0xd1, 0xa4, - 0x6e, 0x85, 0x93, 0xee, 0x34, 0xd3, 0x6e, 0xf4, 0xb1, 0x7f, 0xce, 0x9d, 0xfd, 0x7f, 0x00, 0x00, - 0x00, 0xff, 0xff, 0x57, 0x99, 0x04, 0xa4, 0x56, 0x2d, 0x00, 0x00, + // 2424 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0xcb, 0x6f, 0xdc, 0xd6, + 0xf5, 0xf6, 0x95, 0x2d, 0x59, 0x3a, 0xb6, 0x65, 0xf8, 0x5a, 0xf6, 0x6f, 0x34, 0xb6, 0x47, 0x32, + 0xfd, 0x12, 0x64, 0x7b, 0x68, 0x49, 0xb6, 0x22, 0xe7, 0x07, 0xd7, 0x91, 0x94, 0x4a, 0x30, 0xd0, + 0xd8, 0xca, 0x58, 0xa8, 0x03, 0x01, 0xed, 0x84, 0xe2, 0x5c, 0x8d, 0x09, 0x71, 0xc8, 0x09, 0x49, + 0x8d, 0x25, 0x08, 0x02, 0xda, 0xf4, 0x11, 0x24, 0x8b, 0xa2, 0x40, 0x17, 0x4d, 0x1b, 0x34, 0x5d, + 0xb8, 0x68, 0x8b, 0x6c, 0xe2, 0x45, 0xbb, 0x2a, 0x8a, 0x2c, 0xba, 0xa8, 0x37, 0x05, 0x82, 0x76, + 0xd3, 0x02, 0x45, 0x1b, 0xd8, 0x05, 0xb2, 0x69, 0xff, 0x85, 0xa2, 0xe0, 0xbd, 0x87, 0x43, 0x72, + 0x86, 0xaf, 0x51, 0x26, 0x86, 0x36, 0x1e, 0x91, 0x3c, 0xe7, 0x9e, 0xef, 0x7c, 0xf7, 0x71, 0xee, + 0xfd, 0xae, 0x41, 0xaa, 0x5b, 0x66, 0x83, 0x19, 0x8a, 0xa1, 0x32, 0x99, 0x6d, 0xaa, 0x0f, 0x15, + 0xa3, 0xca, 0xe4, 0xc6, 0x84, 0xfc, 0xd6, 0x06, 0xb3, 0xb6, 0x8a, 0x75, 0xcb, 0x74, 0x4c, 0x7a, + 0xd2, 0xb7, 0x29, 0x7a, 0x36, 0xc5, 0xc6, 0x44, 0xfe, 0x98, 0x52, 0xd3, 0x0c, 0x53, 0xe6, 0xff, + 0x0a, 0xd3, 0xfc, 0xb0, 0x6a, 0xda, 0x35, 0xd3, 0x2e, 0xf3, 0x27, 0x59, 0x3c, 0xe0, 0xa7, 0x71, + 0xf1, 0x24, 0xaf, 0x2a, 0x36, 0x13, 0xcd, 0xcb, 0x8d, 0x89, 0x55, 0xe6, 0x28, 0x13, 0x72, 0x5d, + 0xa9, 0x6a, 0x86, 0xe2, 0x68, 0xa6, 0x81, 0xb6, 0x85, 0xa0, 0xad, 0x67, 0xa5, 0x9a, 0x9a, 0xf7, + 0xfd, 0x74, 0xd5, 0x34, 0xab, 0x3a, 0x93, 0x95, 0xba, 0x26, 0x2b, 0x86, 0x61, 0x3a, 0xdc, 0xd9, + 0x8b, 0x34, 0x54, 0x35, 0xab, 0xa6, 0x40, 0xe0, 0xfe, 0x85, 0x6f, 0xc7, 0x62, 0x32, 0x55, 0xcd, + 0x5a, 0x4d, 0x73, 0x6a, 0xcc, 0x70, 0x3c, 0xff, 0x73, 0x31, 0x96, 0x35, 0xc5, 0x5a, 0x67, 0x4e, + 0x8a, 0x91, 0x69, 0x55, 0x98, 0x95, 0xd6, 0x52, 0x5d, 0xb1, 0x94, 0x9a, 0x67, 0x74, 0x21, 0xd6, + 0x68, 0x2b, 0x88, 0x6a, 0x24, 0xc6, 0xcc, 0xd9, 0x14, 0x06, 0xd2, 0xfb, 0x04, 0x72, 0xaf, 0xbb, + 0xbc, 0xde, 0x73, 0x21, 0x2c, 0x30, 0x36, 0xaf, 0xe8, 0x6a, 0x89, 0xbd, 0xb5, 0xc1, 0x6c, 0x87, + 0xde, 0x82, 0x01, 0xc5, 0x5e, 0x2f, 0x73, 0x74, 0xb9, 0x9e, 0x51, 0x32, 0x76, 0x68, 0x72, 0xb4, + 0x18, 0xdd, 0xaf, 0xc5, 0x59, 0x7b, 0x9d, 0x37, 0x51, 0xea, 0x57, 0xf0, 0x2f, 0xd7, 0x7d, 0x55, + 0xab, 0xa0, 0xfb, 0xfe, 0x64, 0xf7, 0x39, 0xad, 0x82, 0xee, 0xab, 0xf8, 0x97, 0xf4, 0xa4, 0x07, + 0x86, 0x23, 0xa0, 0xd9, 0x75, 0xd3, 0xb0, 0x19, 0x7d, 0x1d, 0x86, 0x54, 0x8b, 0xf1, 0x2e, 0x2c, + 0xaf, 0x31, 0x56, 0x36, 0xeb, 0xbc, 0x37, 0x73, 0x64, 0x74, 0xff, 0xd8, 0xa1, 0xc9, 0xe1, 0x22, + 0x0e, 0x23, 0x77, 0x30, 0x14, 0x71, 0x30, 0x14, 0xe7, 0x4d, 0xcd, 0x98, 0x3b, 0xf0, 0xf4, 0x1f, + 0x23, 0xfb, 0x4a, 0xd4, 0x73, 0x5e, 0x60, 0xec, 0x9e, 0x70, 0xa5, 0xdf, 0x84, 0x53, 0x36, 0x73, + 0x1c, 0x9d, 0xb9, 0x0c, 0x96, 0xd7, 0x74, 0xc5, 0x09, 0xb5, 0xdc, 0x93, 0xad, 0xe5, 0x9c, 0xdf, + 0xc6, 0x82, 0xae, 0x38, 0x81, 0xf6, 0xdf, 0x84, 0xd3, 0x81, 0xf6, 0x2d, 0x37, 0x7c, 0x28, 0xc0, + 0xfe, 0x6c, 0x01, 0x86, 0xfd, 0x46, 0x4a, 0x6e, 0x1b, 0x7e, 0x04, 0x69, 0x02, 0x86, 0x38, 0x63, + 0x8b, 0xcc, 0x11, 0x6c, 0x62, 0x47, 0x0e, 0x43, 0x3f, 0xef, 0x85, 0xb2, 0x56, 0xc9, 0x91, 0x51, + 0x32, 0x76, 0xa0, 0x74, 0x90, 0x3f, 0xdf, 0xa9, 0x48, 0x5f, 0x83, 0x13, 0x2d, 0x2e, 0x48, 0xf0, + 0x14, 0xf4, 0x8a, 0x9e, 0x23, 0xbc, 0xe7, 0xce, 0xc4, 0xf5, 0x9c, 0xf0, 0x12, 0xb6, 0xd2, 0x9b, + 0x30, 0x1a, 0x6a, 0x6d, 0x6e, 0xeb, 0xab, 0x9b, 0x0e, 0xb3, 0x0c, 0x45, 0xbf, 0xf3, 0xaa, 0x07, + 0xe6, 0x14, 0x0c, 0x88, 0x49, 0xe1, 0xa1, 0x39, 0x52, 0xea, 0x17, 0x2f, 0xee, 0x54, 0xe8, 0x08, + 0x1c, 0x62, 0xe8, 0xe1, 0x7e, 0x76, 0x07, 0xdd, 0x40, 0x09, 0xbc, 0x57, 0x77, 0x2a, 0xd2, 0x1b, + 0x70, 0x36, 0x21, 0xc2, 0x17, 0xc1, 0xfe, 0x47, 0x02, 0xa7, 0xbc, 0xa6, 0x5f, 0xe3, 0x78, 0xf8, + 0x67, 0x3b, 0x13, 0xee, 0x33, 0x00, 0x82, 0x61, 0x67, 0xab, 0xce, 0x10, 0xf6, 0x00, 0x7f, 0xb3, + 0xbc, 0x55, 0x67, 0xf4, 0x3c, 0x0c, 0x2a, 0x6b, 0x0e, 0xb3, 0xca, 0xcd, 0x6e, 0xd8, 0xcf, 0xbb, + 0xe1, 0x30, 0x7f, 0x7b, 0x4f, 0xf4, 0x05, 0x5d, 0x00, 0xf0, 0x57, 0xb5, 0x9c, 0xca, 0xb1, 0x5f, + 0x0c, 0x0d, 0x07, 0xb1, 0xc2, 0x7a, 0x83, 0x62, 0x49, 0xa9, 0x32, 0x44, 0x57, 0x0a, 0x78, 0x4a, + 0x1f, 0x12, 0x38, 0x1d, 0x9d, 0x09, 0xf2, 0x73, 0x03, 0xfa, 0xc4, 0x92, 0x83, 0xd3, 0x25, 0x85, + 0x20, 0x34, 0xa6, 0x8b, 0x11, 0xf8, 0x2e, 0xa5, 0xe2, 0x13, 0x31, 0x43, 0x00, 0xff, 0x46, 0x20, + 0xdf, 0xec, 0xc5, 0x47, 0x06, 0x32, 0xd0, 0x64, 0xba, 0x08, 0xbd, 0xa6, 0xfb, 0x96, 0xb3, 0x3c, + 0x30, 0x97, 0xfb, 0xf3, 0x6f, 0xae, 0x0e, 0x61, 0x94, 0xd9, 0x4a, 0xc5, 0x62, 0xb6, 0x7d, 0xdf, + 0xb1, 0x34, 0xa3, 0x5a, 0x12, 0x66, 0x7b, 0x8b, 0xfc, 0x9f, 0x05, 0x86, 0x51, 0x28, 0xb7, 0x3d, + 0xc2, 0xfd, 0x27, 0x01, 0xee, 0x67, 0x6d, 0xbb, 0x75, 0x94, 0x0f, 0x41, 0xaf, 0xe2, 0xbe, 0x15, + 0xdc, 0x97, 0xc4, 0xc3, 0xde, 0x65, 0x38, 0x94, 0xc1, 0x1e, 0x61, 0x78, 0x15, 0x4b, 0xaa, 0x0b, + 0x4f, 0xd7, 0xc3, 0xf4, 0x76, 0x8b, 0x83, 0x0f, 0x08, 0x16, 0xc7, 0x70, 0x90, 0x3d, 0xc2, 0x80, + 0xee, 0x83, 0x9b, 0x6f, 0xee, 0x94, 0x3c, 0x0a, 0x26, 0xe1, 0xa0, 0xa2, 0xaa, 0xe6, 0x86, 0xe1, + 0xa4, 0xce, 0x6f, 0xcf, 0x30, 0xbc, 0xf6, 0xf6, 0x84, 0xd7, 0x5e, 0xe9, 0xc7, 0x81, 0x11, 0x1d, + 0x0c, 0x87, 0x64, 0x6c, 0x41, 0x9f, 0x52, 0xc3, 0x70, 0x29, 0x05, 0x76, 0xc1, 0x2d, 0xb0, 0x1f, + 0xfd, 0x73, 0x64, 0xac, 0xaa, 0x39, 0x0f, 0x37, 0x56, 0x8b, 0xaa, 0x59, 0xc3, 0xfd, 0x28, 0xfe, + 0x5c, 0xb5, 0x2b, 0xeb, 0xb2, 0x3b, 0x07, 0x6c, 0xee, 0x60, 0xff, 0xf4, 0xf3, 0x27, 0xe3, 0x87, + 0x75, 0x56, 0x55, 0xd4, 0xad, 0xb2, 0xbb, 0xd5, 0xb4, 0x7f, 0xfd, 0xf9, 0x93, 0x71, 0x52, 0xc2, + 0x80, 0xd2, 0x03, 0xbf, 0x58, 0xcd, 0x8a, 0x4c, 0x7c, 0x7c, 0xf6, 0x17, 0xe0, 0x43, 0xd2, 0x41, + 0x4a, 0x6a, 0x18, 0x33, 0x5f, 0x80, 0x43, 0x81, 0x8d, 0x2a, 0xa6, 0x7f, 0x3e, 0x6e, 0x2c, 0x88, + 0x4a, 0x31, 0xcb, 0x91, 0x97, 0x82, 0x8e, 0xd2, 0x3b, 0xc4, 0x2f, 0xeb, 0xc2, 0x2a, 0x22, 0x8d, + 0xc4, 0xf2, 0xd8, 0xad, 0x61, 0xff, 0x5b, 0xe2, 0x33, 0x1a, 0x81, 0x04, 0xf3, 0x5e, 0x8c, 0xca, + 0xfb, 0x42, 0xec, 0xce, 0x55, 0x10, 0x18, 0x91, 0x78, 0xf7, 0x26, 0x44, 0x15, 0xce, 0x04, 0x66, + 0x6b, 0x04, 0x7b, 0xdd, 0x22, 0xe8, 0x63, 0x02, 0x85, 0xb8, 0x48, 0xc8, 0xce, 0xab, 0x51, 0xec, + 0x48, 0x71, 0xec, 0x04, 0x26, 0xd4, 0x97, 0x43, 0xcd, 0x75, 0x7f, 0x03, 0x2a, 0x7a, 0x34, 0xcb, + 0x80, 0x92, 0xbe, 0x4b, 0xe0, 0x64, 0xab, 0x1b, 0xe6, 0xe7, 0xce, 0x27, 0x31, 0x6b, 0x32, 0xcc, + 0x27, 0xf1, 0x48, 0xa7, 0xa1, 0x4f, 0x34, 0x8d, 0xc7, 0x9c, 0x42, 0xf2, 0x24, 0x29, 0xa1, 0xb5, + 0xa4, 0x86, 0x56, 0x61, 0xf1, 0xb1, 0xeb, 0x7d, 0xfa, 0x8b, 0x60, 0xc5, 0x0e, 0x44, 0xc1, 0x7c, + 0x6f, 0xc1, 0x41, 0x81, 0xc6, 0xeb, 0xcb, 0x73, 0xc9, 0xe0, 0xe7, 0x2c, 0x8d, 0xad, 0x95, 0x3c, + 0x9f, 0xee, 0x75, 0xe4, 0x10, 0x50, 0x8e, 0x72, 0x89, 0x9f, 0x53, 0x31, 0x11, 0xe9, 0x35, 0x38, + 0x1e, 0x7a, 0x8b, 0xa0, 0xa7, 0xa1, 0x4f, 0x9c, 0x67, 0x71, 0x8b, 0x1e, 0x4b, 0x38, 0xfa, 0xa1, + 0xb5, 0xf4, 0x7b, 0x02, 0x97, 0x78, 0x7b, 0xfe, 0xb8, 0xbc, 0xef, 0x9f, 0xb7, 0xc2, 0xc7, 0xd7, + 0x37, 0x00, 0xfc, 0xa3, 0x12, 0xc6, 0x99, 0x89, 0xe5, 0xc6, 0xae, 0xb6, 0x2e, 0x28, 0xa2, 0xe1, + 0x66, 0x8f, 0xf8, 0x6d, 0xd1, 0x19, 0xc8, 0x69, 0x86, 0xaa, 0x6f, 0x54, 0x58, 0x79, 0xd5, 0x62, + 0xca, 0x7a, 0xc5, 0x7c, 0x64, 0x94, 0xd7, 0x34, 0xa6, 0x57, 0x6c, 0x3e, 0x80, 0xfa, 0x4b, 0x27, + 0xf1, 0xfb, 0x9c, 0xf7, 0x79, 0x81, 0x7f, 0x95, 0x3e, 0x3b, 0x00, 0x63, 0xe9, 0xf8, 0x91, 0xa4, + 0xef, 0x13, 0x38, 0xe2, 0x61, 0x74, 0x4f, 0x8a, 0xf6, 0x8b, 0xab, 0x60, 0x87, 0xbd, 0xb8, 0x0b, + 0x8c, 0xd9, 0xf4, 0x6d, 0x02, 0x87, 0x34, 0xa3, 0xbe, 0xe1, 0x94, 0x1d, 0xd3, 0x51, 0xf4, 0xf4, + 0xa3, 0x70, 0xb7, 0x60, 0x00, 0x8f, 0xba, 0xec, 0x06, 0xa5, 0xef, 0x11, 0x38, 0xaa, 0x9a, 0x46, + 0x83, 0x59, 0x0e, 0xab, 0x20, 0x90, 0xfd, 0x2f, 0x0a, 0xc8, 0x60, 0x33, 0xb2, 0x00, 0xb3, 0xec, + 0x61, 0xb1, 0x35, 0xd3, 0x28, 0x1b, 0x4a, 0xc3, 0xce, 0x1d, 0x48, 0x2e, 0x33, 0x77, 0x71, 0xb3, + 0xba, 0x64, 0x69, 0x2a, 0xc3, 0xa3, 0xfc, 0xa0, 0xdf, 0xc6, 0x5d, 0xa5, 0x61, 0xd3, 0x79, 0x00, + 0x47, 0x68, 0x02, 0x86, 0xd2, 0xc8, 0xf5, 0xf2, 0x11, 0x9b, 0xad, 0xc1, 0x52, 0xbf, 0x63, 0x2e, + 0x30, 0x76, 0x57, 0x69, 0x48, 0xef, 0x7a, 0xd5, 0xfa, 0xeb, 0x8a, 0xae, 0x55, 0x14, 0x87, 0xcd, + 0x5b, 0x4c, 0x71, 0x58, 0x78, 0x71, 0x65, 0x70, 0x82, 0x2b, 0x20, 0xac, 0x8c, 0x6b, 0xac, 0x25, + 0x3e, 0xe0, 0x34, 0x99, 0x48, 0x98, 0x26, 0x8b, 0x66, 0x23, 0xa2, 0xc5, 0xd2, 0x71, 0xb5, 0xfd, + 0xa5, 0xb4, 0x86, 0xe5, 0x3a, 0x1a, 0x0a, 0x0e, 0xf3, 0x21, 0xe8, 0x65, 0x96, 0x65, 0x5a, 0xde, + 0x91, 0x83, 0x3f, 0xd0, 0xcb, 0x40, 0xab, 0x66, 0xa3, 0x5c, 0xb7, 0xcc, 0x7a, 0xf9, 0x91, 0xa6, + 0xeb, 0xe5, 0xba, 0x62, 0x7b, 0xb3, 0xeb, 0x68, 0xd5, 0x6c, 0x2c, 0x59, 0x66, 0xfd, 0x81, 0xa6, + 0xeb, 0x4b, 0x8a, 0x6d, 0x4b, 0x37, 0x71, 0x85, 0xf4, 0xe2, 0x74, 0x50, 0x49, 0xa6, 0xf0, 0x30, + 0xd1, 0xea, 0x9a, 0x04, 0x4e, 0xfa, 0xb6, 0x57, 0x66, 0x7d, 0x2f, 0x43, 0x11, 0x93, 0xc5, 0x0b, + 0x5a, 0x86, 0xe3, 0x35, 0xfe, 0x92, 0xcf, 0xdc, 0x16, 0x7e, 0xe5, 0x64, 0x7e, 0xdb, 0x5a, 0x2b, + 0x1d, 0xab, 0xb5, 0xbe, 0x92, 0x2a, 0x30, 0x12, 0x0b, 0xa1, 0x7b, 0xcc, 0xae, 0xfb, 0x75, 0x76, + 0x49, 0x68, 0x8b, 0x5e, 0x82, 0xd7, 0xa0, 0xcf, 0x36, 0x37, 0x2c, 0x95, 0xa5, 0x96, 0x59, 0xb4, + 0x4b, 0x17, 0x77, 0x96, 0xe1, 0xff, 0xda, 0x82, 0x61, 0x2a, 0x37, 0xe1, 0x20, 0x6a, 0x9b, 0x48, + 0xe1, 0x48, 0x7c, 0xc5, 0x10, 0x9e, 0x9e, 0xbd, 0x7b, 0x5e, 0x3c, 0xdb, 0xd2, 0xac, 0xfd, 0x40, + 0x73, 0x1e, 0xde, 0xe7, 0xa8, 0x76, 0x9f, 0x4e, 0xb7, 0xea, 0xfb, 0x47, 0xc4, 0xdf, 0xcd, 0x47, + 0xe1, 0x43, 0x06, 0xfe, 0x1f, 0xfa, 0x3d, 0x75, 0x17, 0xeb, 0x40, 0x2a, 0x05, 0x4d, 0x87, 0xee, + 0x55, 0xf9, 0x38, 0x32, 0x97, 0x15, 0xab, 0xca, 0x82, 0x63, 0xc3, 0xe1, 0x2f, 0xd2, 0xc9, 0x14, + 0x76, 0x5f, 0x3a, 0x99, 0x1e, 0xbe, 0x3d, 0x45, 0x66, 0x25, 0xb4, 0xb1, 0xf3, 0xe0, 0x76, 0x7b, + 0xff, 0xf8, 0x38, 0xa8, 0x97, 0x04, 0xc3, 0xec, 0x29, 0x2e, 0xbe, 0x81, 0x5c, 0x60, 0x88, 0x96, + 0xbd, 0xdc, 0xed, 0x4e, 0xa7, 0x3f, 0x56, 0xd8, 0xe6, 0x22, 0xf0, 0xb8, 0x07, 0x49, 0x68, 0x6d, + 0x1f, 0x49, 0xf8, 0x16, 0x01, 0x70, 0x0b, 0xaf, 0xa8, 0x62, 0x2f, 0x6e, 0xa3, 0x35, 0xb0, 0xc6, + 0xb0, 0x2a, 0x36, 0x21, 0x28, 0xaa, 0xca, 0xea, 0xce, 0x8b, 0xdb, 0x64, 0xb9, 0x10, 0x66, 0x79, + 0xcc, 0xc9, 0x5f, 0x9e, 0x83, 0x5e, 0xce, 0x12, 0xfd, 0x39, 0x81, 0xc3, 0xc1, 0x8b, 0x17, 0x7a, + 0x2d, 0x8e, 0xf0, 0xb8, 0xeb, 0xa3, 0xfc, 0x44, 0x07, 0x1e, 0xa2, 0x17, 0xa4, 0xf1, 0xb7, 0xff, + 0xf2, 0xaf, 0x1f, 0xf5, 0x9c, 0xa7, 0x92, 0x1c, 0x73, 0x71, 0xe5, 0xd6, 0x52, 0x71, 0x5d, 0x46, + 0x7f, 0x42, 0xa0, 0xdf, 0xbb, 0x05, 0xa0, 0x57, 0x12, 0x63, 0xb5, 0xdc, 0x87, 0xe4, 0xaf, 0x66, + 0xb4, 0x46, 0x54, 0xd7, 0x38, 0xaa, 0x71, 0x3a, 0x26, 0x27, 0xdd, 0xdf, 0xc9, 0xdb, 0x9e, 0xfa, + 0xb9, 0x43, 0xdf, 0xef, 0x81, 0xa1, 0xa8, 0x1b, 0x0a, 0x3a, 0x93, 0x29, 0x72, 0xc4, 0xb5, 0x49, + 0xfe, 0xe6, 0x2e, 0x3c, 0x11, 0xff, 0x7b, 0x84, 0x27, 0xf0, 0x1d, 0xb2, 0xf2, 0x0a, 0xfd, 0x8a, + 0x9c, 0x78, 0x51, 0x29, 0x6f, 0x37, 0x77, 0x4a, 0x3b, 0x5e, 0x5a, 0x81, 0x9a, 0xbd, 0x43, 0x6f, + 0x27, 0x72, 0x60, 0x47, 0x35, 0x13, 0x6e, 0xe0, 0xdf, 0x04, 0x8e, 0xb6, 0xdc, 0x4b, 0xd0, 0xa9, + 0xb4, 0xdc, 0x22, 0xee, 0x63, 0xf2, 0xd7, 0x3b, 0x73, 0x42, 0x2e, 0x0c, 0x4e, 0xc5, 0xc3, 0x95, + 0x29, 0x3a, 0xd1, 0x29, 0x13, 0x76, 0xbc, 0x4b, 0x6c, 0xf2, 0xf4, 0x63, 0x02, 0x83, 0xe1, 0x9b, + 0x00, 0x3a, 0x99, 0xda, 0x93, 0x6d, 0x57, 0x22, 0xf9, 0xa9, 0x8e, 0x7c, 0x30, 0xd7, 0xeb, 0x3c, + 0xd7, 0x22, 0xbd, 0x92, 0x02, 0x9b, 0xdf, 0xa2, 0xc8, 0xdb, 0xfc, 0xa7, 0x89, 0x38, 0xa0, 0xac, + 0xa7, 0x23, 0x6e, 0xbf, 0x48, 0x48, 0x47, 0x1c, 0x21, 0xdd, 0x67, 0x46, 0xcc, 0x6f, 0x25, 0xe4, + 0x6d, 0xfe, 0xb3, 0x43, 0x3f, 0x20, 0x70, 0x38, 0xa8, 0x83, 0xa7, 0xac, 0x55, 0x11, 0xba, 0x7c, + 0xca, 0x5a, 0x15, 0x25, 0xb2, 0x4b, 0x17, 0x39, 0xd6, 0x51, 0x5a, 0x48, 0xc6, 0x4a, 0x3f, 0x21, + 0x70, 0x24, 0xa4, 0x4c, 0xd3, 0xd4, 0x60, 0x6d, 0xa2, 0x79, 0x7e, 0xb2, 0x13, 0x17, 0x04, 0xb8, + 0xc8, 0x01, 0xce, 0xc6, 0x4f, 0xd9, 0x88, 0x81, 0xee, 0x4b, 0x7c, 0xf2, 0x36, 0x8a, 0xcd, 0x3b, + 0xf4, 0x4f, 0x04, 0x4e, 0x44, 0x2a, 0xcd, 0x34, 0x75, 0x51, 0x8a, 0x95, 0xbd, 0xf3, 0x2f, 0xef, + 0xc6, 0x15, 0x33, 0xbb, 0xc5, 0x33, 0x7b, 0x89, 0xde, 0x90, 0xd3, 0xff, 0x7f, 0x86, 0x8c, 0x69, + 0x04, 0xf2, 0xf9, 0x9e, 0x58, 0x9d, 0xdb, 0x04, 0xe4, 0xf4, 0xd5, 0x39, 0x4e, 0xfd, 0x4e, 0x5f, + 0x9d, 0x63, 0xd5, 0x6a, 0x69, 0x93, 0x27, 0x63, 0xad, 0xcc, 0xd0, 0xe9, 0x5d, 0x75, 0x94, 0x1d, + 0xef, 0x17, 0xa4, 0x21, 0x7a, 0x6d, 0x3a, 0xd6, 0xa6, 0x13, 0xd3, 0x1b, 0x19, 0xa6, 0x42, 0x04, + 0x03, 0xd3, 0x9d, 0xba, 0x61, 0xfa, 0x97, 0x79, 0xfa, 0x17, 0xe8, 0xb9, 0x0c, 0x49, 0xd0, 0x0f, + 0x09, 0x0c, 0x34, 0xc9, 0xa4, 0x57, 0xb3, 0x91, 0xee, 0x21, 0x2c, 0x66, 0x35, 0x47, 0x64, 0x93, + 0x1c, 0xd9, 0x15, 0x3a, 0x9e, 0xbd, 0x5b, 0xdc, 0x6d, 0xd3, 0x91, 0x90, 0x4c, 0x4b, 0xb3, 0xac, + 0x2c, 0x61, 0xe1, 0x38, 0x7d, 0xb2, 0xb7, 0xab, 0xc0, 0xd2, 0x25, 0x0e, 0xf6, 0x2c, 0x1d, 0x49, + 0x06, 0x6b, 0xd3, 0x77, 0x09, 0xf4, 0x09, 0x51, 0x95, 0x8e, 0x27, 0xc6, 0x09, 0xe9, 0xb8, 0xf9, + 0xcb, 0x99, 0x6c, 0xb3, 0x2e, 0x8d, 0x42, 0xcd, 0xa5, 0x7f, 0x27, 0x70, 0x2a, 0x41, 0x08, 0xa5, + 0xb7, 0x13, 0x83, 0xa6, 0x4b, 0xc0, 0xf9, 0x57, 0x76, 0xdf, 0x00, 0xa6, 0xf2, 0x32, 0x4f, 0xe5, + 0x3a, 0x9d, 0x4c, 0xdc, 0x91, 0xfa, 0x63, 0xb4, 0x1c, 0x90, 0x89, 0xff, 0x40, 0x60, 0x28, 0x4a, + 0xf9, 0x4a, 0x59, 0x67, 0x12, 0x74, 0xbb, 0x94, 0x75, 0x26, 0x49, 0x66, 0x93, 0xa6, 0x79, 0x26, + 0xd7, 0x68, 0x31, 0x2e, 0x93, 0x06, 0x7a, 0xcb, 0x21, 0x65, 0x90, 0xfe, 0x87, 0xc0, 0x60, 0x58, + 0x1c, 0x4b, 0xd9, 0x0f, 0x44, 0x8a, 0x70, 0x29, 0xfb, 0x81, 0x68, 0xf5, 0x4d, 0xb2, 0x38, 0x66, + 0x7d, 0xe5, 0x06, 0x9d, 0xea, 0x60, 0x6d, 0xf4, 0x12, 0x89, 0x77, 0x6a, 0xa6, 0x1a, 0x31, 0x85, + 0x7f, 0x47, 0x80, 0xb6, 0x6b, 0x6a, 0x74, 0x3a, 0x23, 0xfe, 0x16, 0x99, 0x2e, 0xff, 0x52, 0xc7, + 0x7e, 0x59, 0xf7, 0x42, 0x81, 0x24, 0x9a, 0x3a, 0x23, 0xfd, 0x2f, 0x01, 0xf0, 0xa5, 0x0f, 0x9a, + 0xba, 0xe6, 0x85, 0x45, 0xbd, 0xbc, 0x9c, 0xd9, 0x1e, 0x51, 0xfe, 0x40, 0x9c, 0x2d, 0xde, 0x21, + 0x2b, 0x09, 0xe7, 0x23, 0x3c, 0x84, 0xcb, 0xdb, 0x42, 0x39, 0xdb, 0x49, 0xaa, 0x75, 0xad, 0xb6, + 0x2d, 0xc7, 0x87, 0x91, 0x14, 0x3f, 0xfa, 0x54, 0x6c, 0x56, 0xda, 0x85, 0xb4, 0xf4, 0xcd, 0x4a, + 0xac, 0x38, 0x98, 0xbe, 0x59, 0x89, 0xd7, 0xed, 0xa4, 0x19, 0x4e, 0xd0, 0x24, 0xbd, 0x96, 0x82, + 0xdc, 0x96, 0x45, 0xc6, 0xcd, 0xcc, 0xa3, 0x52, 0x11, 0x32, 0x56, 0x67, 0xa9, 0x84, 0xa4, 0xb9, + 0xce, 0x52, 0x09, 0xab, 0x66, 0x1d, 0xa4, 0x22, 0x54, 0x3d, 0x79, 0x5b, 0xfc, 0xee, 0xd0, 0xc7, + 0x78, 0xa8, 0xf0, 0xe5, 0x27, 0x9a, 0xa5, 0xca, 0xb5, 0x48, 0x62, 0x19, 0x0e, 0x15, 0xed, 0xfa, + 0x96, 0x34, 0xc6, 0x51, 0x4b, 0x74, 0x34, 0x0d, 0x35, 0xfd, 0x15, 0x81, 0xc1, 0xb0, 0x3e, 0x94, + 0x82, 0x32, 0x52, 0xac, 0x4a, 0x41, 0x19, 0x2d, 0x40, 0x49, 0x57, 0x38, 0xca, 0x8b, 0xf4, 0x7c, + 0x62, 0xa1, 0x41, 0xa8, 0x73, 0xec, 0xe9, 0xb3, 0x02, 0xf9, 0xf4, 0x59, 0x81, 0x7c, 0xf6, 0xac, + 0x40, 0x7e, 0xf8, 0xbc, 0xb0, 0xef, 0xd3, 0xe7, 0x85, 0x7d, 0x7f, 0x7d, 0x5e, 0xd8, 0x07, 0xc3, + 0x9a, 0x19, 0x13, 0x7e, 0x89, 0xac, 0x14, 0x03, 0x52, 0x91, 0x6f, 0x74, 0x55, 0x33, 0x83, 0x41, + 0x37, 0x9b, 0x61, 0x57, 0xfb, 0xf8, 0xff, 0x12, 0x9e, 0xfa, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, + 0xf2, 0x8a, 0xf8, 0x1c, 0xf2, 0x2d, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/exchange/tx.pb.go b/x/exchange/tx.pb.go index 4c38771ba3..e36b7165ac 100644 --- a/x/exchange/tx.pb.go +++ b/x/exchange/tx.pb.go @@ -10,6 +10,7 @@ import ( 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/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" @@ -3334,179 +3335,181 @@ func init() { func init() { proto.RegisterFile("provenance/exchange/v1/tx.proto", fileDescriptor_e333fcffc093bd1b) } var fileDescriptor_e333fcffc093bd1b = []byte{ - // 2739 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x5b, 0x4b, 0x6f, 0x1c, 0x59, - 0xf5, 0x4f, 0xb9, 0xfd, 0xea, 0xe3, 0xc7, 0x24, 0xd7, 0x76, 0xd2, 0x6e, 0xc7, 0x6d, 0xa7, 0x93, - 0xfc, 0xff, 0x26, 0xc1, 0xed, 0xd8, 0x23, 0x12, 0x30, 0x33, 0x64, 0xdc, 0x4e, 0x1c, 0x79, 0xa4, - 0x04, 0xab, 0x93, 0x80, 0x34, 0x2c, 0x5a, 0xd7, 0x5d, 0x37, 0x9d, 0xc2, 0xd5, 0x55, 0x9d, 0xba, - 0xb7, 0x1d, 0x47, 0x42, 0x1a, 0x81, 0x90, 0x80, 0xc5, 0x48, 0x23, 0xb1, 0x65, 0x03, 0x42, 0x48, - 0x10, 0x24, 0x40, 0xa0, 0x11, 0xf0, 0x09, 0x66, 0xc1, 0x62, 0xc4, 0x8a, 0x15, 0x8c, 0x12, 0x09, - 0x3e, 0x02, 0x5b, 0x74, 0x1f, 0xd5, 0xf5, 0x7e, 0xb4, 0x27, 0xbd, 0x4a, 0xba, 0xea, 0x3c, 0x7e, - 0xbf, 0x73, 0xee, 0xad, 0x7b, 0xea, 0x9c, 0x32, 0xac, 0x74, 0x1d, 0xfb, 0x98, 0x58, 0xd8, 0x6a, - 0x91, 0x0d, 0x72, 0xd2, 0x7a, 0x8a, 0xad, 0x36, 0xd9, 0x38, 0xde, 0xdc, 0x60, 0x27, 0xb5, 0xae, - 0x63, 0x33, 0x1b, 0x9d, 0xf7, 0x04, 0x6a, 0xae, 0x40, 0xed, 0x78, 0xb3, 0x5c, 0x69, 0xd9, 0xb4, - 0x63, 0xd3, 0x8d, 0x43, 0x4c, 0xb9, 0xc2, 0x21, 0x61, 0x78, 0x73, 0xa3, 0x65, 0x1b, 0x96, 0xd4, - 0x2b, 0x5f, 0x50, 0xf7, 0x3b, 0xb4, 0xcd, 0xed, 0x75, 0x68, 0x5b, 0xdd, 0x58, 0x94, 0x37, 0x9a, - 0xe2, 0xd7, 0x86, 0xfc, 0xa1, 0x6e, 0xcd, 0xb7, 0xed, 0xb6, 0x2d, 0xaf, 0xf3, 0xff, 0xa9, 0xab, - 0x6b, 0x09, 0x10, 0x5b, 0x76, 0xa7, 0x63, 0xb0, 0x0e, 0xb1, 0x98, 0xab, 0x7f, 0x39, 0x41, 0xb2, - 0x83, 0x9d, 0x23, 0xc2, 0x32, 0x84, 0x6c, 0x47, 0x27, 0x4e, 0x96, 0xa5, 0x2e, 0x76, 0x70, 0xc7, - 0x15, 0xba, 0x9a, 0x28, 0xf4, 0xc2, 0x87, 0xaa, 0xfa, 0x47, 0x0d, 0xe6, 0xee, 0xd3, 0xf6, 0xae, - 0x43, 0x30, 0x23, 0x3b, 0xf4, 0xa8, 0x41, 0x9e, 0xf5, 0x08, 0x65, 0x68, 0x17, 0x8a, 0x98, 0x1e, - 0x35, 0x85, 0xdf, 0x92, 0xb6, 0xaa, 0xad, 0x4d, 0x6d, 0xad, 0xd6, 0xe2, 0xa3, 0x5d, 0xdb, 0xa1, - 0x47, 0xdf, 0xe4, 0x72, 0xf5, 0xd1, 0x4f, 0xff, 0xb9, 0x72, 0xa6, 0x31, 0x89, 0xd5, 0x6f, 0x74, - 0x0f, 0x90, 0x30, 0xd0, 0x6c, 0x71, 0xf3, 0x86, 0x6d, 0x35, 0x9f, 0x10, 0x52, 0x1a, 0x11, 0xd6, - 0x16, 0x6b, 0x2a, 0xba, 0x3c, 0x47, 0x35, 0x95, 0xa3, 0xda, 0xae, 0x6d, 0x58, 0x8d, 0xb3, 0x42, - 0x69, 0x57, 0xe9, 0xec, 0x11, 0xb2, 0x3d, 0xfb, 0x83, 0xff, 0xfc, 0xfe, 0x9a, 0x07, 0xa8, 0xba, - 0x09, 0xf3, 0x41, 0xd0, 0xb4, 0x6b, 0x5b, 0x94, 0xa0, 0x45, 0x98, 0x94, 0x0e, 0x0d, 0x5d, 0x80, - 0x1e, 0x6d, 0x4c, 0x88, 0xdf, 0xfb, 0x7a, 0x90, 0x68, 0xdd, 0xd0, 0x7d, 0x44, 0x0f, 0x0d, 0x3d, - 0x1f, 0xd1, 0xba, 0xa1, 0x07, 0x88, 0x1e, 0xaa, 0xdf, 0x6f, 0x9a, 0x68, 0x1f, 0x50, 0x80, 0xa8, - 0x00, 0x9d, 0x4d, 0xf4, 0x93, 0x11, 0x58, 0xe0, 0x3a, 0x62, 0x01, 0xee, 0xf5, 0x2c, 0x9d, 0xba, - 0x54, 0xb7, 0x60, 0x02, 0xb7, 0x5a, 0x76, 0xcf, 0x62, 0x42, 0xa7, 0x58, 0x2f, 0xfd, 0xfd, 0x4f, - 0xeb, 0xf3, 0x0a, 0xdd, 0x8e, 0xae, 0x3b, 0x84, 0xd2, 0x87, 0xcc, 0x31, 0xac, 0x76, 0xc3, 0x15, - 0x44, 0x4b, 0x50, 0x94, 0x0b, 0x94, 0x7b, 0xe2, 0x84, 0x66, 0x1a, 0x93, 0xf2, 0xc2, 0xbe, 0x8e, - 0x5a, 0x30, 0x8e, 0x3b, 0xc2, 0x5e, 0x61, 0xb5, 0x90, 0x4a, 0xb5, 0x7e, 0x83, 0x47, 0xec, 0x37, - 0xff, 0x5a, 0x59, 0x6b, 0x1b, 0xec, 0x69, 0xef, 0xb0, 0xd6, 0xb2, 0x3b, 0x6a, 0x7b, 0xa9, 0x7f, - 0xd6, 0xa9, 0x7e, 0xb4, 0xc1, 0x5e, 0x74, 0x09, 0x15, 0x0a, 0xb4, 0xa1, 0x4c, 0xa3, 0x77, 0x60, - 0x3a, 0x10, 0xd5, 0xd1, 0xac, 0xa8, 0x4e, 0xb5, 0xbc, 0x80, 0x72, 0xfc, 0xe4, 0x98, 0x58, 0xac, - 0xc9, 0x70, 0xbb, 0x34, 0xc6, 0x59, 0x37, 0x26, 0xc5, 0x85, 0x47, 0xb8, 0xbd, 0x3d, 0xcd, 0xa3, - 0xed, 0x52, 0xad, 0x96, 0xe0, 0x7c, 0x38, 0x6e, 0x32, 0xda, 0xd5, 0x67, 0x32, 0xa2, 0x7c, 0x3d, - 0x98, 0x22, 0xe1, 0x6e, 0x44, 0x6f, 0xc0, 0x38, 0x35, 0xda, 0x96, 0x5a, 0x39, 0x69, 0x01, 0x55, - 0x72, 0x81, 0xc4, 0x8d, 0x04, 0x12, 0xb7, 0x3d, 0xc5, 0xd1, 0x28, 0x39, 0x17, 0x8c, 0xdf, 0xa5, - 0x02, 0xf3, 0xdb, 0x02, 0xa0, 0xfb, 0xb4, 0xbd, 0x67, 0x98, 0x66, 0xdd, 0xf0, 0x92, 0xcb, 0xa1, - 0x10, 0xd3, 0xcc, 0x05, 0x45, 0xc8, 0xa5, 0xa7, 0xd6, 0x82, 0x69, 0x66, 0x33, 0x6c, 0x36, 0x31, - 0xa5, 0x84, 0xd1, 0x61, 0x24, 0x78, 0x4a, 0x38, 0xd8, 0x11, 0xf6, 0x51, 0x15, 0x66, 0xfa, 0xab, - 0xbe, 0x69, 0xe8, 0xb4, 0x34, 0xba, 0x5a, 0x58, 0x1b, 0x6d, 0x4c, 0xb9, 0x5b, 0x6c, 0x5f, 0xa7, - 0xe8, 0x5b, 0x50, 0x96, 0xd0, 0x9b, 0x94, 0x30, 0x66, 0x12, 0xfe, 0x1c, 0x6b, 0x3e, 0x31, 0x31, - 0x13, 0xeb, 0x62, 0x2c, 0x6b, 0x5d, 0x5c, 0x90, 0xca, 0x0f, 0xfb, 0xba, 0x7b, 0x26, 0x66, 0x7c, - 0x8d, 0x3c, 0x80, 0xf3, 0xfd, 0x47, 0x4b, 0x70, 0x07, 0x8f, 0x67, 0xd9, 0x9c, 0x73, 0x9f, 0x75, - 0xfe, 0x4d, 0xac, 0x12, 0x29, 0xbc, 0x55, 0x17, 0xc4, 0x63, 0xc7, 0xcb, 0x96, 0xca, 0xe2, 0x2f, - 0xbd, 0x2c, 0xee, 0xd0, 0xa3, 0x7e, 0x16, 0x6b, 0x30, 0x76, 0xd8, 0x7b, 0x91, 0x23, 0x89, 0x52, - 0x2c, 0x3d, 0x87, 0xef, 0x81, 0x0c, 0x71, 0xb3, 0xeb, 0x18, 0x2d, 0x52, 0x2a, 0x64, 0x90, 0x51, - 0x4f, 0x35, 0x10, 0x3a, 0x07, 0x5c, 0x85, 0x67, 0xc5, 0x8b, 0x8c, 0x2f, 0x2b, 0x2e, 0x6b, 0x9e, - 0x95, 0x0f, 0x61, 0x41, 0x60, 0x09, 0x24, 0x85, 0x10, 0x5a, 0x1a, 0x7b, 0xf3, 0x4b, 0x66, 0x4e, - 0x78, 0xf2, 0x65, 0x90, 0x10, 0xca, 0xd3, 0xe7, 0x2d, 0x9d, 0x01, 0xd3, 0xe7, 0x2e, 0x2f, 0x7f, - 0xfa, 0x80, 0xa7, 0x4f, 0xc6, 0xd7, 0x97, 0x3d, 0x99, 0x25, 0x95, 0xbd, 0xcf, 0x35, 0xb1, 0x3d, - 0xef, 0x8b, 0x48, 0x4b, 0x38, 0xbe, 0x0c, 0x62, 0xbd, 0x63, 0x58, 0xd9, 0x19, 0x14, 0x62, 0xe9, - 0x19, 0x8c, 0xc4, 0xbf, 0x10, 0x8d, 0x7f, 0x9e, 0x9d, 0x73, 0x15, 0x66, 0xc9, 0x49, 0x97, 0xb4, - 0x58, 0xb3, 0x8b, 0x1d, 0x66, 0x60, 0x53, 0xec, 0x96, 0xc9, 0xc6, 0x8c, 0xbc, 0x7a, 0x20, 0x2f, - 0x2a, 0xe6, 0x02, 0x57, 0x75, 0x11, 0x2e, 0x44, 0x18, 0x2a, 0xf6, 0xbf, 0x2a, 0xc0, 0x6a, 0xff, - 0xde, 0x6e, 0xbf, 0xd0, 0x19, 0x62, 0x1c, 0x76, 0x61, 0xdc, 0xb0, 0xba, 0xbd, 0xfe, 0x73, 0xe8, - 0x6a, 0x62, 0x29, 0x22, 0x9f, 0xe5, 0x3b, 0xe2, 0xe8, 0x50, 0x0b, 0x5a, 0xa9, 0xa2, 0xbb, 0x30, - 0x61, 0xf7, 0x98, 0xb0, 0x32, 0x3a, 0xb8, 0x15, 0x57, 0x17, 0xdd, 0x86, 0x51, 0xdf, 0xf2, 0x1e, - 0xc8, 0x86, 0x50, 0xe4, 0x06, 0x2c, 0x7c, 0x4c, 0x4b, 0xe3, 0xe9, 0x06, 0x1e, 0x10, 0x26, 0x9e, - 0x8d, 0x62, 0x27, 0xba, 0x06, 0xb8, 0x62, 0xf0, 0x4c, 0x9b, 0x08, 0x9d, 0x69, 0xfe, 0x1c, 0x5e, - 0x86, 0x4b, 0x29, 0x79, 0x52, 0xd9, 0xfc, 0xb7, 0x06, 0xd5, 0xbe, 0x54, 0x83, 0x98, 0x04, 0x53, - 0xe2, 0x09, 0xd3, 0xa1, 0xe4, 0xf3, 0x7d, 0x00, 0x66, 0x37, 0x1d, 0xe9, 0xec, 0x34, 0x39, 0x2d, - 0x32, 0x5b, 0x41, 0x0d, 0x46, 0x63, 0x34, 0x25, 0x1a, 0x57, 0xe1, 0x72, 0x2a, 0x4f, 0x15, 0x8f, - 0xbf, 0xf8, 0xe3, 0xf1, 0x90, 0x30, 0xb1, 0x89, 0xee, 0x9e, 0x30, 0xe2, 0x58, 0xd8, 0xdc, 0xbf, - 0x33, 0x94, 0x78, 0xf8, 0xab, 0x82, 0x42, 0xa0, 0x2a, 0x40, 0x2b, 0x30, 0x45, 0x94, 0x73, 0x7e, - 0x57, 0x12, 0x04, 0xf7, 0xd2, 0xbe, 0x9e, 0x48, 0x31, 0x0e, 0xba, 0xa2, 0xf8, 0x5f, 0x0d, 0x4a, - 0x7d, 0xb9, 0x6f, 0x1b, 0xec, 0xa9, 0xee, 0xe0, 0xe7, 0x43, 0x21, 0xb6, 0x2c, 0x12, 0x8d, 0xa5, - 0x9e, 0xa0, 0x56, 0xe4, 0xb9, 0x53, 0x86, 0x7c, 0x05, 0xe4, 0xe8, 0xd0, 0x0a, 0xc8, 0x40, 0x80, - 0x96, 0x60, 0x31, 0x86, 0xb8, 0x0a, 0xcb, 0xdf, 0x34, 0x58, 0xee, 0xdf, 0x7d, 0xdc, 0xd5, 0x31, - 0x23, 0x77, 0x08, 0xc3, 0x86, 0x39, 0x9c, 0x4d, 0xd0, 0x80, 0x59, 0x75, 0x53, 0x97, 0x5e, 0xd4, - 0x09, 0x9d, 0xb8, 0x11, 0x24, 0x30, 0x05, 0x49, 0x6d, 0x84, 0x99, 0x8e, 0xff, 0x62, 0x80, 0xeb, - 0x2a, 0x54, 0x92, 0xd8, 0x28, 0xc2, 0xbf, 0x8b, 0x12, 0xbe, 0x6b, 0xe1, 0x43, 0x93, 0xe8, 0x5e, - 0x55, 0x19, 0x20, 0x5c, 0x4e, 0x22, 0x5c, 0xd2, 0x5c, 0xca, 0x2b, 0x11, 0xca, 0xf5, 0x91, 0x92, - 0xe6, 0xa3, 0xbd, 0x0e, 0x67, 0x71, 0xab, 0x45, 0xba, 0xcc, 0xb0, 0xda, 0xf2, 0xd4, 0x92, 0xc4, - 0x27, 0x85, 0xdc, 0x5b, 0xfd, 0x7b, 0x62, 0xf1, 0x52, 0x59, 0xa3, 0xbb, 0x20, 0xaa, 0x57, 0x22, - 0x9c, 0xfa, 0x80, 0x25, 0xa7, 0xed, 0x91, 0x92, 0x56, 0x7d, 0xa9, 0xc1, 0xd5, 0x90, 0xd8, 0x4e, - 0xd0, 0xec, 0x50, 0x12, 0xfa, 0xa5, 0x24, 0x66, 0x51, 0x56, 0xfe, 0x3c, 0xad, 0xc1, 0xff, 0x65, - 0x81, 0xf5, 0xf2, 0xb5, 0x1a, 0x12, 0x7d, 0x4c, 0xdd, 0x7a, 0x68, 0x28, 0x94, 0xb6, 0x60, 0x01, - 0x9b, 0xa6, 0xfd, 0xbc, 0xd9, 0xa3, 0x81, 0x0a, 0x4f, 0xf1, 0x9a, 0x13, 0x37, 0x3d, 0x0c, 0xfc, - 0x56, 0xe2, 0x09, 0x14, 0x05, 0xac, 0x68, 0xfd, 0x55, 0x83, 0x6b, 0x49, 0x11, 0x18, 0xf6, 0x49, - 0xf4, 0x36, 0x2c, 0x78, 0x39, 0xf3, 0x35, 0x6d, 0x14, 0xc1, 0x79, 0x1c, 0x03, 0x24, 0xc0, 0x70, - 0x1d, 0xae, 0xe7, 0xc2, 0xae, 0xb8, 0xfe, 0x41, 0x83, 0xff, 0x0f, 0xc9, 0xef, 0x5b, 0x8c, 0x38, - 0x1d, 0xa2, 0x1b, 0xd8, 0x79, 0x71, 0x87, 0x58, 0x76, 0x67, 0x28, 0x44, 0xd7, 0x01, 0x19, 0x3e, - 0x47, 0x4d, 0x9d, 0x7b, 0x52, 0x4f, 0xe4, 0x73, 0x46, 0x18, 0x42, 0x80, 0xe2, 0x35, 0x58, 0xcb, - 0x86, 0xac, 0xf8, 0xfd, 0x7a, 0xc4, 0x97, 0xf1, 0xfb, 0xd8, 0xc2, 0x6d, 0x72, 0x40, 0x9c, 0x8e, - 0x41, 0xa9, 0x61, 0x5b, 0x74, 0x58, 0x67, 0x8c, 0x43, 0x8e, 0xed, 0x23, 0xd2, 0xc4, 0xa6, 0x29, - 0x8a, 0x89, 0x62, 0xa3, 0x28, 0xaf, 0xec, 0x98, 0x26, 0xda, 0x83, 0xa2, 0xa8, 0x35, 0xf8, 0x6f, - 0x75, 0xcc, 0x5c, 0x4e, 0x29, 0x35, 0x08, 0xa5, 0xf7, 0x1c, 0xdc, 0x2f, 0x34, 0x26, 0x79, 0xa1, - 0xc1, 0x55, 0xd1, 0x1d, 0x98, 0x64, 0x76, 0xb3, 0xcd, 0xef, 0xa9, 0xda, 0x6f, 0x00, 0x33, 0x13, - 0xcc, 0x16, 0x3f, 0x03, 0x71, 0xbd, 0xe2, 0x2b, 0x34, 0x62, 0x42, 0xe5, 0x46, 0xb4, 0xe0, 0x7b, - 0xe6, 0x49, 0xb1, 0x06, 0x79, 0xb6, 0xc3, 0xd8, 0xd0, 0x9e, 0x62, 0xe7, 0xc4, 0x4b, 0x14, 0x69, - 0xf2, 0x57, 0x0f, 0x79, 0x7a, 0xab, 0xa8, 0xce, 0xb6, 0xdc, 0x8e, 0xdb, 0x23, 0x7e, 0x84, 0xa3, - 0x0d, 0x98, 0x0f, 0x8a, 0x3a, 0xa4, 0x63, 0x1f, 0xcb, 0x28, 0x17, 0x1b, 0xe7, 0x7c, 0xd2, 0x0d, - 0x71, 0xc3, 0x67, 0x9b, 0xbf, 0xb2, 0x28, 0xdb, 0x63, 0x7e, 0xdb, 0x75, 0x43, 0x0f, 0xdb, 0x56, - 0xa2, 0xca, 0xf6, 0xb8, 0xdf, 0xb6, 0x90, 0x56, 0xb6, 0x6f, 0x41, 0x49, 0x29, 0x78, 0xdb, 0xd8, - 0x75, 0x31, 0x21, 0x94, 0x16, 0xe4, 0x7d, 0x6f, 0x5b, 0x4a, 0x4f, 0xef, 0xc2, 0x52, 0xac, 0xa2, - 0x72, 0x38, 0x29, 0x74, 0x4b, 0x51, 0x5d, 0xe9, 0x37, 0x90, 0xd1, 0x4b, 0xb0, 0x92, 0x98, 0x2a, - 0x95, 0xce, 0x0f, 0xc4, 0x7b, 0x95, 0xec, 0xe8, 0x1d, 0xc8, 0x5e, 0xac, 0x9b, 0xc6, 0xdb, 0x30, - 0xa1, 0xba, 0xb3, 0xaa, 0x11, 0xb9, 0x92, 0xb4, 0xc0, 0x94, 0xa2, 0xbb, 0xb8, 0x94, 0x56, 0xb5, - 0x2c, 0xca, 0xba, 0x90, 0xed, 0x80, 0x5f, 0xf9, 0x6c, 0x1a, 0x8e, 0xdf, 0x90, 0x6d, 0xe5, 0xf7, - 0xa5, 0x26, 0x1c, 0x37, 0xc8, 0x77, 0xc5, 0x8b, 0x66, 0xc0, 0xf1, 0x0d, 0x18, 0x67, 0xd8, 0x69, - 0x93, 0xec, 0x7e, 0xa4, 0x92, 0x13, 0x5d, 0x2e, 0xbb, 0xe7, 0xb4, 0x64, 0x73, 0x35, 0xbd, 0xcb, - 0x25, 0xe4, 0xc2, 0xf5, 0x73, 0x21, 0x52, 0x3f, 0xcb, 0x6e, 0x8d, 0xb4, 0xaf, 0x98, 0x84, 0xc0, - 0x2a, 0x26, 0x1f, 0x69, 0xd1, 0x9b, 0xf4, 0xf4, 0x54, 0xb6, 0x60, 0x42, 0x42, 0xa4, 0xa5, 0x11, - 0xbe, 0xc4, 0xd2, 0xba, 0xb1, 0x4a, 0x30, 0x88, 0x55, 0xd6, 0xb2, 0x61, 0x38, 0x0a, 0xec, 0xf7, - 0xe4, 0x52, 0x10, 0xfd, 0xc3, 0x18, 0xac, 0x2a, 0x88, 0x5a, 0xce, 0x20, 0x5e, 0x82, 0x69, 0x5f, - 0x10, 0x15, 0xe0, 0xc6, 0x94, 0x17, 0x45, 0x17, 0x9a, 0x94, 0x57, 0xd0, 0xc2, 0xde, 0x15, 0xb4, - 0x3f, 0xcb, 0xaa, 0x73, 0x57, 0xac, 0x2a, 0x75, 0xf7, 0x91, 0xa0, 0x74, 0x7a, 0x80, 0xa1, 0x2c, - 0x8f, 0x84, 0xb3, 0x8c, 0x6e, 0x01, 0x58, 0xe4, 0x79, 0x53, 0xe5, 0xa8, 0x90, 0x61, 0xb6, 0x68, - 0x91, 0xe7, 0x12, 0x52, 0x90, 0x97, 0x2c, 0xa9, 0x63, 0x91, 0x2b, 0x72, 0x3f, 0xd7, 0x04, 0xf5, - 0x7b, 0xf6, 0xb1, 0xdc, 0x86, 0xee, 0xeb, 0xa6, 0x24, 0x76, 0x13, 0x8a, 0xb8, 0xc7, 0x9e, 0xda, - 0x8e, 0xc1, 0x5e, 0x64, 0x72, 0xf3, 0x44, 0xd1, 0x3b, 0x30, 0x2e, 0x9f, 0xcf, 0x6a, 0xa6, 0x50, - 0x49, 0x7f, 0x45, 0x70, 0x1b, 0x1f, 0x52, 0xc7, 0x9d, 0x9e, 0xb8, 0xd6, 0xaa, 0x17, 0xa1, 0x1c, - 0x07, 0x51, 0x31, 0xf8, 0x64, 0x46, 0x6c, 0xd8, 0x7b, 0xf6, 0xb1, 0x7c, 0x82, 0xed, 0x11, 0x42, - 0xbf, 0x28, 0xfe, 0xd4, 0x03, 0xe7, 0x31, 0x5c, 0xc0, 0xba, 0xde, 0x7c, 0x42, 0x48, 0xd3, 0x77, - 0x9a, 0x3c, 0x31, 0x71, 0x8e, 0xb1, 0x82, 0x24, 0x3a, 0x87, 0x75, 0x7d, 0x8f, 0x90, 0xfe, 0x3c, - 0x68, 0xcf, 0xc4, 0x0c, 0x7d, 0x07, 0xca, 0xf2, 0x09, 0x1e, 0x6b, 0x79, 0x34, 0x9f, 0xe5, 0xf3, - 0xd2, 0x44, 0xc4, 0x78, 0x14, 0x33, 0x3f, 0xa5, 0x84, 0xe5, 0xb1, 0x53, 0x60, 0xae, 0x1b, 0x7a, - 0x32, 0xe6, 0xbe, 0xe5, 0xf1, 0xd3, 0x61, 0x76, 0x8d, 0xb7, 0xa0, 0xe2, 0x62, 0x8e, 0x6f, 0xa3, - 0x8b, 0x63, 0x32, 0x87, 0x83, 0xb2, 0x84, 0xfe, 0x30, 0xa6, 0x9d, 0x8e, 0x0c, 0xb8, 0xe4, 0x63, - 0x90, 0xe0, 0x67, 0x32, 0x9f, 0x9f, 0xe5, 0x3e, 0x91, 0x58, 0x57, 0x16, 0xac, 0x26, 0xf3, 0x71, - 0x30, 0x33, 0x6c, 0x5a, 0x2a, 0x0a, 0x4f, 0x89, 0x03, 0xbd, 0x3d, 0x42, 0x1a, 0x5c, 0x50, 0x39, - 0xbc, 0x18, 0x4f, 0x4c, 0x88, 0x50, 0xc4, 0xe0, 0x72, 0x2a, 0x35, 0xe5, 0x12, 0x06, 0x72, 0xb9, - 0x92, 0xc8, 0x51, 0x79, 0xc5, 0xb0, 0xec, 0xb2, 0x8c, 0xb6, 0xd9, 0x79, 0x30, 0xa7, 0xf2, 0x05, - 0x73, 0x51, 0x72, 0xab, 0x87, 0x1a, 0xe8, 0x3c, 0x90, 0x6d, 0x58, 0xf5, 0x11, 0x8b, 0xf7, 0x32, - 0x9d, 0xcf, 0xcb, 0xc5, 0x3e, 0x9d, 0x38, 0x47, 0x26, 0xac, 0x24, 0x72, 0x51, 0xd1, 0x9b, 0x19, - 0x28, 0x7a, 0x4b, 0xb1, 0xa4, 0x54, 0xe4, 0x1c, 0xa8, 0xa6, 0xd1, 0x52, 0x0e, 0x67, 0x07, 0x72, - 0x58, 0x49, 0xe2, 0xa7, 0x7c, 0xfa, 0xf6, 0x58, 0xb4, 0xa6, 0x14, 0x81, 0x7c, 0x6b, 0xa0, 0x3d, - 0xb6, 0x1b, 0xaa, 0x3a, 0x63, 0xf6, 0x58, 0x82, 0x9f, 0xb3, 0x83, 0xee, 0xb1, 0x58, 0x57, 0xef, - 0x43, 0x95, 0x12, 0x26, 0xfd, 0x78, 0x0e, 0x7c, 0x51, 0x3c, 0x34, 0xba, 0xb4, 0x74, 0x4e, 0x3c, - 0xd1, 0x2b, 0x94, 0x30, 0x6e, 0x27, 0xd4, 0x68, 0x16, 0x05, 0xa3, 0xd1, 0xa5, 0xe8, 0x01, 0x5c, - 0xe9, 0x59, 0x39, 0xac, 0x21, 0xf1, 0xe6, 0xbd, 0x2a, 0x64, 0x53, 0xec, 0x45, 0x8e, 0x35, 0x59, - 0xbb, 0x85, 0xce, 0x2d, 0x75, 0xa8, 0x7d, 0xe8, 0xde, 0xdb, 0x35, 0x6d, 0xfa, 0x86, 0x0e, 0xe5, - 0xb4, 0x43, 0x2d, 0x02, 0x6e, 0xa9, 0x5f, 0x16, 0xf8, 0x01, 0x44, 0x8a, 0x06, 0xf9, 0x7a, 0x7d, - 0x20, 0x3e, 0xe4, 0x78, 0x03, 0x45, 0x83, 0xfc, 0x22, 0x24, 0xab, 0x68, 0x90, 0xee, 0xdc, 0xa2, - 0x41, 0xea, 0x24, 0x17, 0x0d, 0x41, 0x88, 0x92, 0xc1, 0xd6, 0xf7, 0x97, 0xa1, 0x70, 0x9f, 0xb6, - 0xd1, 0x13, 0x28, 0xf6, 0x0f, 0x4a, 0x74, 0x3d, 0xb1, 0x4a, 0x89, 0x7e, 0x70, 0x52, 0xfe, 0x72, - 0x3e, 0x61, 0xf5, 0xfd, 0x43, 0xdf, 0x4f, 0xdd, 0xd0, 0x73, 0xf8, 0xf1, 0xbe, 0xf7, 0xc8, 0xe1, - 0xc7, 0xff, 0x9d, 0x85, 0x09, 0x53, 0xbe, 0x0f, 0x02, 0xd0, 0x7a, 0x9a, 0x72, 0xe4, 0x83, 0x8b, - 0x72, 0x2d, 0xaf, 0xb8, 0xcf, 0x9b, 0x37, 0xf1, 0x4f, 0xf7, 0x16, 0xf9, 0x18, 0x21, 0xdd, 0x5b, - 0xf4, 0x43, 0x02, 0xd4, 0x82, 0x49, 0x77, 0x2c, 0x8d, 0xae, 0xa5, 0xe8, 0x86, 0xbe, 0x34, 0x28, - 0x5f, 0xcf, 0x25, 0x1b, 0x74, 0xb2, 0x43, 0x8f, 0xb2, 0x9d, 0xf8, 0x06, 0xe1, 0x99, 0x4e, 0xfc, - 0xe3, 0x58, 0x64, 0xc3, 0xb4, 0x7f, 0x50, 0x89, 0xd2, 0x22, 0x11, 0x33, 0xb3, 0x2d, 0x6f, 0xe4, - 0x96, 0x57, 0x0e, 0x3f, 0xd2, 0xe0, 0x7c, 0xfc, 0x58, 0x0d, 0x7d, 0x35, 0xd3, 0x56, 0xc2, 0xc4, - 0xb4, 0xfc, 0xb5, 0x53, 0x68, 0x2a, 0x3c, 0x3f, 0xe5, 0xaf, 0xa6, 0x09, 0x83, 0x2d, 0xb4, 0x9d, - 0x69, 0x37, 0x71, 0xea, 0x57, 0xfe, 0xfa, 0xa9, 0x74, 0x23, 0xa8, 0xa2, 0xb3, 0xa8, 0x1c, 0xa8, - 0x12, 0x67, 0x6f, 0x39, 0x50, 0x25, 0x0f, 0xbf, 0x50, 0x0f, 0x66, 0x83, 0xf3, 0x1f, 0x74, 0x23, - 0xd3, 0x5c, 0x68, 0x46, 0x56, 0xde, 0x1c, 0x40, 0x43, 0xb9, 0xfd, 0xa1, 0x06, 0x73, 0x31, 0xb3, - 0x18, 0xf4, 0x95, 0x4c, 0x53, 0x71, 0x93, 0xa8, 0xf2, 0xcd, 0x41, 0xd5, 0x14, 0x8c, 0x9f, 0x84, - 0x60, 0xa8, 0xf1, 0x49, 0x6e, 0x18, 0xc1, 0xf9, 0x50, 0x6e, 0x18, 0xa1, 0x29, 0x4d, 0xb5, 0xf0, - 0xe3, 0x11, 0x0d, 0xfd, 0x4c, 0x83, 0xa5, 0x94, 0xb1, 0x07, 0x7a, 0x37, 0xa7, 0xf1, 0xf8, 0xd9, - 0x4e, 0xf9, 0x1b, 0xa7, 0x55, 0x8f, 0x6c, 0xf2, 0xf0, 0xe4, 0x22, 0xc7, 0x26, 0x4f, 0x98, 0xce, - 0xe4, 0xd8, 0xe4, 0x49, 0x63, 0x12, 0xf4, 0x52, 0x83, 0xd5, 0xac, 0x39, 0x03, 0xaa, 0x0f, 0x4a, - 0x3a, 0x66, 0xd3, 0xef, 0x7e, 0x21, 0x1b, 0x0a, 0xed, 0x2f, 0x34, 0x58, 0x4e, 0x1d, 0x19, 0xa0, - 0xdb, 0x39, 0xdd, 0x24, 0xcd, 0x47, 0xca, 0xef, 0x9d, 0xde, 0x80, 0x02, 0xf9, 0xb1, 0x06, 0x17, - 0x12, 0xfa, 0xef, 0x28, 0x3b, 0x53, 0x49, 0xe3, 0x8d, 0xf2, 0xf6, 0x69, 0x54, 0x15, 0xa4, 0x1f, - 0x69, 0x30, 0x1f, 0xd7, 0x40, 0x46, 0x37, 0x73, 0x1a, 0x0d, 0x0d, 0x07, 0xca, 0xb7, 0x06, 0xd6, - 0x53, 0x48, 0x1c, 0x98, 0x09, 0xb4, 0x92, 0xd1, 0x46, 0x66, 0xe9, 0x14, 0xec, 0xef, 0x96, 0x6f, - 0xe4, 0x57, 0xf0, 0x7c, 0x06, 0xda, 0xc8, 0xa9, 0x3e, 0xe3, 0x9a, 0xd9, 0xa9, 0x3e, 0x63, 0x3b, - 0xd4, 0xdc, 0x67, 0xa0, 0x89, 0x9a, 0xea, 0x33, 0xae, 0x8f, 0x9d, 0xea, 0x33, 0xb6, 0x97, 0xcc, - 0x0f, 0xa1, 0x60, 0xe3, 0x16, 0xe5, 0xb6, 0x41, 0xf3, 0x1c, 0x42, 0xf1, 0x5d, 0x61, 0xee, 0x36, - 0xd8, 0x94, 0x4d, 0x75, 0x1b, 0xdb, 0x3d, 0x4e, 0x75, 0x1b, 0xdf, 0xf1, 0x15, 0x67, 0x5f, 0x4c, - 0xd3, 0x34, 0xf5, 0xd0, 0x49, 0x6e, 0x0f, 0xa7, 0x1e, 0x3a, 0x29, 0xbd, 0x59, 0x74, 0x02, 0x6f, - 0x85, 0x9a, 0x9e, 0x28, 0x8d, 0x4c, 0x7c, 0x0f, 0xb7, 0xbc, 0x35, 0x88, 0x8a, 0xb7, 0xc4, 0x02, - 0xef, 0xa5, 0xa9, 0x4b, 0x2c, 0xae, 0xf3, 0x9a, 0xba, 0xc4, 0x62, 0x5f, 0x79, 0x79, 0xae, 0x83, - 0xaf, 0x9b, 0x28, 0xc3, 0x46, 0xf4, 0xd5, 0xb8, 0xbc, 0x39, 0x80, 0x46, 0x20, 0xc8, 0xfe, 0x97, - 0xc4, 0xac, 0x20, 0xc7, 0xbc, 0xf3, 0x66, 0x05, 0x39, 0xee, 0x1d, 0xb4, 0x4e, 0x3e, 0x7d, 0x55, - 0xd1, 0x3e, 0x7b, 0x55, 0xd1, 0x3e, 0x7f, 0x55, 0xd1, 0x3e, 0x7e, 0x5d, 0x39, 0xf3, 0xd9, 0xeb, - 0xca, 0x99, 0x7f, 0xbc, 0xae, 0x9c, 0x81, 0x45, 0xc3, 0x4e, 0xb0, 0x77, 0xa0, 0x7d, 0x50, 0xf3, - 0x7d, 0x50, 0xe4, 0x09, 0xad, 0x1b, 0xb6, 0xef, 0xd7, 0xc6, 0x49, 0xff, 0x6f, 0x28, 0x0e, 0xc7, - 0xc5, 0x1f, 0x4e, 0xbc, 0xfd, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfd, 0x09, 0x38, 0xc6, 0x9d, - 0x32, 0x00, 0x00, + // 2775 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5b, 0xcd, 0x6f, 0x1c, 0x49, + 0x15, 0x4f, 0x7b, 0xfc, 0x35, 0xcf, 0x1f, 0x49, 0xca, 0x76, 0x32, 0x1e, 0xc7, 0x63, 0x67, 0x92, + 0x80, 0x71, 0xf0, 0x4c, 0xec, 0x15, 0x09, 0x98, 0x5d, 0xb2, 0x1e, 0x27, 0x8e, 0xbc, 0x52, 0x82, + 0x35, 0x49, 0x40, 0x5a, 0x0e, 0xa3, 0xf2, 0x74, 0x65, 0xd2, 0xb8, 0xa7, 0x7b, 0xd2, 0xd5, 0xe3, + 0xd8, 0x12, 0x12, 0x02, 0xad, 0x04, 0x1c, 0x56, 0x5a, 0x09, 0x71, 0x41, 0x5c, 0xe0, 0x80, 0x80, + 0x1c, 0x08, 0x02, 0x21, 0x3e, 0x8e, 0x5c, 0xf6, 0xb0, 0x87, 0x15, 0x27, 0x4e, 0xb0, 0x4a, 0x24, + 0xf2, 0x6f, 0xac, 0xea, 0xa3, 0xa7, 0xbf, 0x3f, 0xc6, 0x9b, 0xc9, 0x65, 0x37, 0xd3, 0xf5, 0xde, + 0xfb, 0xbd, 0xdf, 0x7b, 0x55, 0x5d, 0xaf, 0x5e, 0xb5, 0x61, 0xa9, 0x63, 0x99, 0x87, 0xc4, 0xc0, + 0x46, 0x93, 0x54, 0xc9, 0x51, 0xf3, 0x31, 0x36, 0x5a, 0xa4, 0x7a, 0xb8, 0x5e, 0xb5, 0x8f, 0x2a, + 0x1d, 0xcb, 0xb4, 0x4d, 0x74, 0xce, 0x15, 0xa8, 0x38, 0x02, 0x95, 0xc3, 0xf5, 0xe2, 0x59, 0xdc, + 0xd6, 0x0c, 0xb3, 0xca, 0xff, 0x2b, 0x44, 0x8b, 0xa5, 0xa6, 0x49, 0xdb, 0x26, 0xad, 0xee, 0x63, + 0xca, 0x6c, 0xec, 0x13, 0x1b, 0xaf, 0x57, 0x9b, 0xa6, 0x66, 0xc8, 0xf1, 0xf3, 0x72, 0xbc, 0x4d, + 0x5b, 0x0c, 0xa2, 0x4d, 0x5b, 0x72, 0x60, 0x5e, 0x0c, 0x34, 0xf8, 0xaf, 0xaa, 0xf8, 0x21, 0x87, + 0x66, 0x5b, 0x66, 0xcb, 0x14, 0xcf, 0xd9, 0xbf, 0xe4, 0xd3, 0x95, 0x18, 0xaf, 0x9b, 0x66, 0xbb, + 0xad, 0xd9, 0x6d, 0x62, 0xd8, 0x8e, 0xfe, 0xa5, 0x18, 0xc9, 0x36, 0xb6, 0x0e, 0x88, 0x9d, 0x22, + 0x64, 0x5a, 0x2a, 0xb1, 0xd2, 0x2c, 0x75, 0xb0, 0x85, 0xdb, 0x8e, 0xd0, 0x95, 0x58, 0xa1, 0x63, + 0x8f, 0x57, 0xe5, 0x3f, 0x2b, 0x30, 0x73, 0x97, 0xb6, 0xb6, 0x2d, 0x82, 0x6d, 0xb2, 0x45, 0x0f, + 0xea, 0xe4, 0x49, 0x97, 0x50, 0x1b, 0x6d, 0x43, 0x1e, 0xd3, 0x83, 0x06, 0xc7, 0x2d, 0x28, 0xcb, + 0xca, 0xca, 0xc4, 0xc6, 0x72, 0x25, 0x3a, 0x01, 0x95, 0x2d, 0x7a, 0xf0, 0x6d, 0x26, 0x57, 0x1b, + 0xfe, 0xf8, 0xbf, 0x4b, 0xa7, 0xea, 0xe3, 0x58, 0xfe, 0x46, 0x77, 0x00, 0x71, 0x03, 0x8d, 0x26, + 0x33, 0xaf, 0x99, 0x46, 0xe3, 0x11, 0x21, 0x85, 0x21, 0x6e, 0x6d, 0xbe, 0x22, 0xa3, 0xcb, 0x72, + 0x54, 0x91, 0x39, 0xaa, 0x6c, 0x9b, 0x9a, 0x51, 0x3f, 0xc3, 0x95, 0xb6, 0xa5, 0xce, 0x0e, 0x21, + 0x9b, 0xd3, 0x3f, 0x7e, 0xf5, 0x7c, 0xd5, 0x75, 0xa8, 0xbc, 0x0e, 0xb3, 0x7e, 0xa7, 0x69, 0xc7, + 0x34, 0x28, 0x41, 0xf3, 0x30, 0x2e, 0x00, 0x35, 0x95, 0x3b, 0x3d, 0x5c, 0x1f, 0xe3, 0xbf, 0x77, + 0x55, 0x3f, 0xd1, 0x9a, 0xa6, 0x7a, 0x88, 0xee, 0x6b, 0x6a, 0x36, 0xa2, 0x35, 0x4d, 0xf5, 0x11, + 0xdd, 0x97, 0xbf, 0x5f, 0x37, 0xd1, 0x9e, 0x43, 0x3e, 0xa2, 0xdc, 0xe9, 0x74, 0xa2, 0x9f, 0x0c, + 0xc1, 0x1c, 0xd3, 0xe1, 0x13, 0x70, 0xa7, 0x6b, 0xa8, 0xd4, 0xa1, 0xba, 0x01, 0x63, 0xb8, 0xd9, + 0x34, 0xbb, 0x86, 0xcd, 0x75, 0xf2, 0xb5, 0xc2, 0xbf, 0xff, 0xb2, 0x36, 0x2b, 0xbd, 0xdb, 0x52, + 0x55, 0x8b, 0x50, 0x7a, 0xdf, 0xb6, 0x34, 0xa3, 0x55, 0x77, 0x04, 0xd1, 0x02, 0xe4, 0xc5, 0x04, + 0x65, 0x48, 0x8c, 0xd0, 0x54, 0x7d, 0x5c, 0x3c, 0xd8, 0x55, 0xd1, 0x31, 0x8c, 0xe2, 0x36, 0xb7, + 0x97, 0x5b, 0xce, 0x25, 0x52, 0xad, 0xed, 0xb0, 0x88, 0xfd, 0xe1, 0x7f, 0x4b, 0x2b, 0x2d, 0xcd, + 0x7e, 0xdc, 0xdd, 0xaf, 0x34, 0xcd, 0xb6, 0x5c, 0x5e, 0xf2, 0x7f, 0x6b, 0x54, 0x3d, 0xa8, 0xda, + 0xc7, 0x1d, 0x42, 0xb9, 0x02, 0xfd, 0xe5, 0xab, 0xe7, 0xab, 0x93, 0x3a, 0x69, 0xe1, 0xe6, 0x71, + 0x83, 0xad, 0x5c, 0xfa, 0xbb, 0x57, 0xcf, 0x57, 0x95, 0xba, 0x04, 0x44, 0x6f, 0xc3, 0xa4, 0x2f, + 0xd6, 0xc3, 0x69, 0xb1, 0x9e, 0x68, 0xba, 0x61, 0x66, 0xac, 0xc8, 0x21, 0x31, 0xec, 0x86, 0x8d, + 0x5b, 0x85, 0x11, 0x16, 0x8b, 0xfa, 0x38, 0x7f, 0xf0, 0x00, 0xb7, 0x36, 0x27, 0x59, 0x0e, 0x9c, + 0x00, 0x94, 0x0b, 0x70, 0x2e, 0x18, 0x4d, 0x91, 0x83, 0xf2, 0x13, 0x11, 0x67, 0x36, 0x4b, 0x74, + 0x3e, 0x0d, 0x9c, 0x38, 0x5f, 0x83, 0x51, 0xaa, 0xb5, 0x0c, 0x39, 0x9f, 0x92, 0xc2, 0x2c, 0xe5, + 0x7c, 0xe9, 0x1c, 0xf2, 0xa5, 0x73, 0x73, 0x82, 0x79, 0x23, 0xe5, 0x1c, 0x67, 0xbc, 0x90, 0xd2, + 0x99, 0x7f, 0xe5, 0x00, 0xdd, 0xa5, 0xad, 0x1d, 0x4d, 0xd7, 0x6b, 0x9a, 0x9b, 0x72, 0xe6, 0x0a, + 0xd1, 0xf5, 0x4c, 0xae, 0x70, 0xb9, 0xe4, 0x84, 0x7f, 0xa0, 0xc0, 0xa4, 0x6d, 0xda, 0x58, 0x6f, + 0x60, 0x4a, 0x89, 0x4d, 0xdf, 0x5c, 0xde, 0x27, 0x38, 0xec, 0x16, 0x47, 0x45, 0x65, 0x98, 0xea, + 0x2d, 0x91, 0x86, 0xa6, 0xd2, 0xc2, 0xf0, 0x72, 0x6e, 0x65, 0xb8, 0x3e, 0xe1, 0xac, 0xc7, 0x5d, + 0x95, 0xa2, 0xef, 0x40, 0x51, 0x30, 0x6a, 0x50, 0x62, 0xdb, 0x3a, 0x61, 0x2f, 0xbd, 0xc6, 0x23, + 0x1d, 0xdb, 0x7c, 0xba, 0x8c, 0xa4, 0x4d, 0x97, 0xf3, 0x42, 0xf9, 0x7e, 0x4f, 0x77, 0x47, 0xc7, + 0x36, 0x9b, 0x3a, 0xf7, 0xe0, 0x5c, 0xef, 0x3d, 0xe4, 0x5f, 0xee, 0xa3, 0x69, 0x36, 0x67, 0x9c, + 0x17, 0xa3, 0x77, 0xc5, 0xcb, 0xfc, 0x72, 0xb4, 0xf2, 0x1c, 0x7f, 0x47, 0xb9, 0x49, 0x94, 0xc9, + 0xfd, 0xa7, 0x9b, 0xdc, 0x2d, 0x7a, 0xd0, 0x4b, 0x6e, 0x05, 0x46, 0xf6, 0xbb, 0xc7, 0x19, 0x72, + 0x2b, 0xc4, 0x92, 0x53, 0xfb, 0x2e, 0x88, 0x10, 0x37, 0x3a, 0x96, 0xd6, 0x24, 0x85, 0x5c, 0x0a, + 0x19, 0xf9, 0x0a, 0x04, 0xae, 0xb3, 0xc7, 0x54, 0x58, 0x56, 0xdc, 0xc8, 0x78, 0xb2, 0xe2, 0xb0, + 0x66, 0x59, 0xf9, 0x85, 0x02, 0x73, 0xdc, 0x19, 0x5f, 0x56, 0x08, 0xa1, 0x85, 0x91, 0x37, 0x35, + 0x93, 0x66, 0x38, 0xbe, 0x27, 0xb1, 0x84, 0x50, 0x96, 0x55, 0x77, 0x46, 0xf5, 0x99, 0x55, 0x67, + 0xd6, 0x79, 0xb3, 0x0a, 0x2c, 0xab, 0x22, 0xec, 0x9e, 0xa4, 0x8a, 0xe4, 0xc9, 0xa4, 0x7e, 0xa6, + 0xf0, 0xc5, 0x7c, 0x97, 0x27, 0x40, 0xb8, 0xe3, 0x49, 0x2c, 0x56, 0xdb, 0x9a, 0x91, 0x9e, 0x58, + 0x2e, 0x96, 0x9c, 0xd8, 0x50, 0x5a, 0x72, 0xe1, 0xb4, 0x64, 0x59, 0x50, 0x57, 0x60, 0x9a, 0x1c, + 0x75, 0x48, 0xd3, 0x6e, 0x74, 0xb0, 0x65, 0x6b, 0x58, 0xe7, 0x8b, 0x68, 0xbc, 0x3e, 0x25, 0x9e, + 0xee, 0x89, 0x87, 0x92, 0x39, 0xf7, 0xab, 0x3c, 0x0f, 0xe7, 0x43, 0x0c, 0x25, 0xfb, 0xdf, 0xe6, + 0x60, 0xb9, 0x37, 0xb6, 0xdd, 0x2b, 0x96, 0x06, 0x18, 0x87, 0x6d, 0x18, 0xd5, 0x8c, 0x4e, 0xb7, + 0xf7, 0xd2, 0xba, 0x12, 0x5b, 0xce, 0x88, 0x37, 0xff, 0x16, 0xdf, 0x68, 0xe4, 0x3c, 0x97, 0xaa, + 0xe8, 0x36, 0x8c, 0x99, 0x5d, 0x9b, 0x5b, 0x19, 0xee, 0xdf, 0x8a, 0xa3, 0x8b, 0x6e, 0xc2, 0xb0, + 0x67, 0xd2, 0xf7, 0x65, 0x83, 0x2b, 0x32, 0x03, 0x06, 0x3e, 0xa4, 0x85, 0xd1, 0x64, 0x03, 0xf7, + 0x88, 0xcd, 0x5f, 0x99, 0x7c, 0x81, 0x3a, 0x06, 0x98, 0xa2, 0x7f, 0x07, 0x1c, 0x0b, 0xec, 0x80, + 0xde, 0x1c, 0x5e, 0x82, 0x8b, 0x09, 0x79, 0x92, 0xd9, 0xfc, 0xbf, 0x02, 0xe5, 0x9e, 0x54, 0x9d, + 0xe8, 0x04, 0x53, 0xe2, 0x0a, 0xd3, 0x81, 0xe4, 0xf3, 0x3d, 0x00, 0xdb, 0x6c, 0x58, 0x02, 0xec, + 0x24, 0x39, 0xcd, 0xdb, 0xa6, 0x74, 0xd5, 0x1f, 0x8d, 0xe1, 0x84, 0x68, 0x5c, 0x81, 0x4b, 0x89, + 0x3c, 0x65, 0x3c, 0xfe, 0xee, 0x8d, 0xc7, 0x7d, 0x62, 0xf3, 0x45, 0x74, 0xfb, 0xc8, 0x26, 0x96, + 0x81, 0xf5, 0xdd, 0x5b, 0x03, 0x89, 0x87, 0xb7, 0x86, 0xc8, 0xf9, 0x6a, 0x08, 0xb4, 0x04, 0x13, + 0x44, 0x82, 0xb3, 0x51, 0x41, 0x10, 0x9c, 0x47, 0xbb, 0x6a, 0x2c, 0xc5, 0x28, 0xd7, 0x25, 0xc5, + 0x0f, 0x87, 0xa0, 0xd0, 0x93, 0xfb, 0xae, 0x66, 0x3f, 0x56, 0x2d, 0xfc, 0x74, 0x20, 0xc4, 0x16, + 0x79, 0xa2, 0xb1, 0xd0, 0xe3, 0xd4, 0xf2, 0x2c, 0x77, 0xd2, 0x90, 0xa7, 0x08, 0x1d, 0x7e, 0xc3, + 0x45, 0xa8, 0x2f, 0x6c, 0x0b, 0x30, 0x1f, 0x11, 0x0e, 0x19, 0xac, 0x4f, 0x14, 0x58, 0xec, 0x8d, + 0x3e, 0xec, 0xa8, 0xd8, 0x26, 0xb7, 0x88, 0x8d, 0x35, 0x7d, 0x30, 0x4b, 0xa3, 0x0e, 0xd3, 0x72, + 0x50, 0x15, 0x28, 0x72, 0x3b, 0x8f, 0x5d, 0x1e, 0xc2, 0x31, 0xe9, 0x92, 0x5c, 0x1e, 0x53, 0x6d, + 0xef, 0x43, 0x1f, 0xd7, 0x65, 0x28, 0xc5, 0xb1, 0x91, 0x84, 0xff, 0x18, 0x26, 0x7c, 0xdb, 0xc0, + 0xfb, 0x3a, 0x51, 0xdd, 0xca, 0xd4, 0x47, 0xb8, 0x18, 0x47, 0xb8, 0xa0, 0x38, 0x94, 0x97, 0x42, + 0x94, 0x6b, 0x43, 0x05, 0xc5, 0x43, 0x7b, 0x0d, 0xce, 0xe0, 0x66, 0x93, 0x74, 0x6c, 0xcd, 0x68, + 0x89, 0xbd, 0x4c, 0x10, 0x1f, 0xe7, 0x72, 0xa7, 0x7b, 0x63, 0x7c, 0x4a, 0x53, 0x51, 0xe7, 0x3b, + 0x4e, 0x94, 0x2f, 0x87, 0x38, 0xf5, 0x1c, 0x16, 0x9c, 0x36, 0x87, 0x0a, 0x4a, 0xf9, 0x99, 0x02, + 0x57, 0x02, 0x62, 0x5b, 0x7e, 0xb3, 0x03, 0x49, 0xe8, 0x57, 0xe2, 0x98, 0x85, 0x59, 0x79, 0xf3, + 0xb4, 0x02, 0x5f, 0x4a, 0x73, 0xd6, 0xcd, 0xd7, 0x72, 0x40, 0xf4, 0x21, 0x75, 0xaa, 0xa4, 0x81, + 0x50, 0xda, 0x80, 0x39, 0xac, 0xeb, 0xe6, 0xd3, 0x46, 0x97, 0xfa, 0xaa, 0x41, 0xc9, 0x6b, 0x86, + 0x0f, 0xba, 0x3e, 0xb0, 0xa1, 0xd8, 0x7d, 0x29, 0xec, 0xb0, 0xa4, 0xf5, 0x0f, 0x05, 0x56, 0xe3, + 0x22, 0x30, 0xe8, 0xfd, 0xe9, 0x2d, 0x98, 0x73, 0x73, 0xe6, 0x69, 0x07, 0x49, 0x82, 0xb3, 0x38, + 0xc2, 0x11, 0x1f, 0xc3, 0x35, 0xb8, 0x9a, 0xc9, 0x77, 0xc9, 0xf5, 0x4f, 0x0a, 0x7c, 0x39, 0x20, + 0xbf, 0x6b, 0xd8, 0xc4, 0x6a, 0x13, 0x55, 0xc3, 0xd6, 0xf1, 0x2d, 0x62, 0x98, 0xed, 0x81, 0x10, + 0x5d, 0x03, 0xa4, 0x79, 0x80, 0x1a, 0x2a, 0x43, 0x92, 0xef, 0xe9, 0xb3, 0x5a, 0xd0, 0x05, 0x1f, + 0xc5, 0x55, 0x58, 0x49, 0x77, 0x59, 0xf2, 0xfb, 0xfd, 0x90, 0x27, 0xe3, 0x77, 0xb1, 0x81, 0x5b, + 0x64, 0x8f, 0x58, 0x6d, 0x8d, 0x52, 0xcd, 0x34, 0xe8, 0xa0, 0x76, 0x1e, 0x8b, 0x1c, 0x9a, 0x07, + 0xa4, 0x81, 0x75, 0x9d, 0x97, 0x18, 0xf9, 0x7a, 0x5e, 0x3c, 0xd9, 0xd2, 0x75, 0xb4, 0x03, 0x79, + 0x5e, 0x81, 0xb0, 0xdf, 0x72, 0xf3, 0xb9, 0x94, 0x50, 0x80, 0x10, 0x4a, 0xef, 0x58, 0xb8, 0x57, + 0x7e, 0x8c, 0xb3, 0xf2, 0x83, 0xa9, 0xa2, 0x5b, 0x30, 0x6e, 0x9b, 0x8d, 0x16, 0x1b, 0x93, 0x15, + 0x61, 0x1f, 0x66, 0xc6, 0x6c, 0x93, 0xff, 0xf4, 0xc5, 0xf5, 0xb2, 0xa7, 0xfc, 0x88, 0x08, 0x95, + 0x13, 0xd1, 0x9c, 0xe7, 0x9d, 0x27, 0xc4, 0xea, 0xe4, 0xc9, 0x96, 0x6d, 0x0f, 0xec, 0x2d, 0x76, + 0x96, 0x1f, 0xad, 0x48, 0x83, 0x1d, 0x48, 0xc4, 0x9e, 0x2e, 0xa3, 0x3a, 0xdd, 0x74, 0x7a, 0x79, + 0x0f, 0xd8, 0xc6, 0x8e, 0xaa, 0x30, 0xeb, 0x17, 0xb5, 0x48, 0xdb, 0x3c, 0x14, 0x51, 0xce, 0xd7, + 0xcf, 0x7a, 0xa4, 0xeb, 0x7c, 0xc0, 0x63, 0x9b, 0x1d, 0x64, 0xa4, 0xed, 0x11, 0xaf, 0xed, 0x9a, + 0xa6, 0x06, 0x6d, 0x4b, 0x51, 0x69, 0x7b, 0xd4, 0x6b, 0x9b, 0x4b, 0x4b, 0xdb, 0x37, 0xa0, 0x20, + 0x15, 0xdc, 0x65, 0xec, 0x40, 0x8c, 0x71, 0xa5, 0x39, 0x31, 0xee, 0x2e, 0x4b, 0x81, 0xf4, 0x0e, + 0x2c, 0x44, 0x2a, 0x4a, 0xc0, 0x71, 0xae, 0x5b, 0x08, 0xeb, 0x0a, 0x5c, 0x5f, 0x46, 0x2f, 0xc2, + 0x52, 0x6c, 0xaa, 0x64, 0x3a, 0xdf, 0xe7, 0xa7, 0x2d, 0xd1, 0x2b, 0xdc, 0x13, 0x5d, 0x5e, 0x27, + 0x8d, 0x37, 0x61, 0x4c, 0xf6, 0x7d, 0x65, 0x8b, 0x73, 0x29, 0x6e, 0x82, 0x49, 0x45, 0x67, 0x72, + 0x49, 0xad, 0x72, 0x91, 0x17, 0x7b, 0x01, 0xdb, 0x3e, 0x5c, 0xf1, 0x6e, 0x1a, 0x0c, 0x6e, 0xc0, + 0xb6, 0xc4, 0x7d, 0xa6, 0x70, 0xe0, 0x3a, 0xf9, 0x3e, 0x3f, 0x7e, 0xfa, 0x80, 0xaf, 0xc1, 0xa8, + 0x8d, 0xad, 0x16, 0x49, 0xef, 0x74, 0x4a, 0x39, 0xde, 0x29, 0x33, 0xbb, 0x56, 0x53, 0xb4, 0x6d, + 0x93, 0x3b, 0x65, 0x5c, 0x2e, 0x58, 0x55, 0xe7, 0x42, 0x55, 0xb5, 0x68, 0xed, 0x08, 0xfb, 0x92, + 0x49, 0xc0, 0x59, 0xa7, 0x96, 0x56, 0xc2, 0x83, 0xf4, 0xe4, 0x54, 0x36, 0x60, 0x4c, 0xb8, 0x48, + 0x0b, 0x43, 0x6c, 0x8a, 0x25, 0xf5, 0x79, 0xa5, 0xa0, 0xdf, 0x57, 0x51, 0xcb, 0x06, 0xdd, 0x91, + 0xce, 0xfe, 0x40, 0x4c, 0x05, 0xde, 0x83, 0x8c, 0xf0, 0x55, 0x06, 0x51, 0xc9, 0x18, 0xc4, 0x8b, + 0x30, 0xe9, 0x09, 0xa2, 0x74, 0xb8, 0x3e, 0xe1, 0x46, 0xd1, 0x71, 0x4d, 0xc8, 0x4b, 0xd7, 0x82, + 0xe8, 0xd2, 0xb5, 0xbf, 0x89, 0xaa, 0x73, 0x9b, 0xcf, 0x2a, 0x39, 0xfa, 0x80, 0x53, 0x3a, 0xb9, + 0x83, 0x81, 0x2c, 0x0f, 0x05, 0xb3, 0x8c, 0x6e, 0x00, 0x18, 0xe4, 0x69, 0x43, 0xe6, 0x28, 0x97, + 0x62, 0x36, 0x6f, 0x90, 0xa7, 0xc2, 0x25, 0x3f, 0x2f, 0x51, 0x52, 0x47, 0x7a, 0x2e, 0xc9, 0xfd, + 0x5a, 0xe1, 0xd4, 0xef, 0x98, 0x87, 0x62, 0x19, 0x3a, 0x87, 0x50, 0x41, 0xec, 0x3a, 0xe4, 0x71, + 0xd7, 0x7e, 0x6c, 0x5a, 0x9a, 0x7d, 0x9c, 0xca, 0xcd, 0x15, 0x45, 0x6f, 0xc3, 0xa8, 0x78, 0x3f, + 0xcb, 0xdb, 0x8a, 0x52, 0xf2, 0x11, 0xc1, 0x69, 0x87, 0x08, 0x1d, 0xe7, 0x5e, 0xc6, 0xb1, 0x56, + 0xbe, 0x00, 0xc5, 0x28, 0x17, 0x25, 0x83, 0xbf, 0x4e, 0xf1, 0x05, 0x7b, 0xc7, 0x3c, 0x14, 0x6f, + 0xb0, 0x1d, 0x42, 0xe8, 0x17, 0xf5, 0x3f, 0x71, 0xc3, 0x79, 0x08, 0xe7, 0xb1, 0xaa, 0x36, 0x1e, + 0x11, 0xd2, 0xf0, 0xec, 0x26, 0x8f, 0x74, 0x9c, 0xe1, 0xc2, 0x42, 0x10, 0x9d, 0xc1, 0xaa, 0xba, + 0x43, 0x48, 0xef, 0xa6, 0x69, 0x47, 0xc7, 0x36, 0xfa, 0x1e, 0x14, 0xc5, 0x1b, 0x3c, 0xd2, 0xf2, + 0x70, 0x36, 0xcb, 0xe7, 0x84, 0x89, 0x90, 0xf1, 0xb0, 0xcf, 0x6c, 0x97, 0xe2, 0x96, 0x47, 0x4e, + 0xe0, 0x73, 0x4d, 0x53, 0xe3, 0x7d, 0xee, 0x59, 0x1e, 0x3d, 0x99, 0xcf, 0x8e, 0xf1, 0x26, 0x94, + 0x1c, 0x9f, 0xa3, 0x7b, 0xee, 0x7c, 0x9b, 0xcc, 0x00, 0x50, 0x14, 0xae, 0xdf, 0x8f, 0xe8, 0xbd, + 0x23, 0x0d, 0x2e, 0x7a, 0x18, 0xc4, 0xe0, 0x8c, 0x67, 0xc3, 0x59, 0xec, 0x11, 0x89, 0x84, 0x32, + 0x60, 0x39, 0x9e, 0x8f, 0x85, 0x6d, 0xcd, 0xa4, 0x85, 0x3c, 0x47, 0x8a, 0xbd, 0x2a, 0xdc, 0x21, + 0xa4, 0xce, 0x04, 0x25, 0xe0, 0x85, 0x68, 0x62, 0x5c, 0x84, 0x22, 0x1b, 0x2e, 0x25, 0x52, 0x93, + 0x90, 0xd0, 0x17, 0xe4, 0x52, 0x2c, 0x47, 0x89, 0x8a, 0x61, 0xd1, 0x61, 0x19, 0x6e, 0xc9, 0xb3, + 0x60, 0x4e, 0x64, 0x0b, 0xe6, 0xbc, 0xe0, 0x56, 0x0b, 0xb4, 0xd5, 0x59, 0x20, 0x5b, 0xb0, 0xec, + 0x21, 0x16, 0x8d, 0x32, 0x99, 0x0d, 0xe5, 0x42, 0x8f, 0x4e, 0x14, 0x90, 0x0e, 0x4b, 0xb1, 0x5c, + 0x64, 0xf4, 0xa6, 0xfa, 0x8a, 0xde, 0x42, 0x24, 0x29, 0x19, 0x39, 0x0b, 0xca, 0x49, 0xb4, 0x24, + 0xe0, 0x74, 0x5f, 0x80, 0xa5, 0x38, 0x7e, 0x12, 0xd3, 0xb3, 0xc6, 0xc2, 0x35, 0x25, 0x0f, 0xe4, + 0xe9, 0xbe, 0xd6, 0xd8, 0x76, 0xa0, 0xea, 0x8c, 0x58, 0x63, 0x31, 0x38, 0x67, 0xfa, 0x5d, 0x63, + 0x91, 0x50, 0xef, 0x41, 0x99, 0x12, 0x5b, 0xe0, 0xb8, 0x00, 0x9e, 0x28, 0xee, 0x6b, 0x1d, 0x5a, + 0x38, 0xcb, 0xdf, 0xe8, 0x25, 0x4a, 0x6c, 0x66, 0x27, 0xd0, 0x7e, 0xe6, 0x05, 0xa3, 0xd6, 0xa1, + 0xe8, 0x1e, 0x5c, 0xee, 0x1a, 0x19, 0xac, 0x21, 0x7e, 0xf2, 0x5e, 0xe6, 0xb2, 0x09, 0xf6, 0x42, + 0xdb, 0x9a, 0xa8, 0xdd, 0x02, 0xfb, 0x96, 0xdc, 0xd4, 0x7e, 0xe8, 0x8c, 0x6d, 0xeb, 0x26, 0x7d, + 0x4d, 0x9b, 0x72, 0xd2, 0xa6, 0x16, 0x72, 0x6e, 0xa1, 0x57, 0x16, 0x78, 0x1d, 0x08, 0x15, 0x0d, + 0xe2, 0x78, 0xbd, 0xc7, 0x3f, 0x11, 0x79, 0x0d, 0x45, 0x83, 0xf8, 0xd6, 0x24, 0xad, 0x68, 0x10, + 0x70, 0x4e, 0xd1, 0x20, 0x74, 0xe2, 0x8b, 0x06, 0xbf, 0x8b, 0x82, 0xc1, 0xc6, 0x8f, 0x16, 0x21, + 0x77, 0x97, 0xb6, 0xd0, 0x23, 0xc8, 0xf7, 0x36, 0x4a, 0x74, 0x35, 0xb6, 0x4a, 0x09, 0x7f, 0xca, + 0x52, 0xfc, 0x6a, 0x36, 0x61, 0xf9, 0x65, 0x45, 0x0f, 0xa7, 0xa6, 0xa9, 0x19, 0x70, 0xdc, 0x2f, + 0x49, 0x32, 0xe0, 0x78, 0xbf, 0xe0, 0xd0, 0x61, 0xc2, 0xf3, 0x51, 0x01, 0x5a, 0x4b, 0x52, 0x0e, + 0x7d, 0xca, 0x51, 0xac, 0x64, 0x15, 0xf7, 0xa0, 0xb9, 0x5f, 0x0d, 0x24, 0xa3, 0x85, 0x3e, 0x68, + 0x48, 0x46, 0x0b, 0x7f, 0x8c, 0x80, 0x9a, 0x30, 0xee, 0xdc, 0x61, 0xa3, 0xd5, 0x04, 0xdd, 0xc0, + 0xd7, 0x0a, 0xc5, 0xab, 0x99, 0x64, 0xfd, 0x20, 0x5b, 0xf4, 0x20, 0x1d, 0xc4, 0x73, 0x6b, 0x9e, + 0x0a, 0xe2, 0xbd, 0xa4, 0x45, 0x26, 0x4c, 0x7a, 0xaf, 0x2f, 0x51, 0x52, 0x24, 0x22, 0x6e, 0x72, + 0x8b, 0xd5, 0xcc, 0xf2, 0x12, 0xf0, 0x43, 0x05, 0xce, 0x45, 0x5f, 0xb6, 0xa1, 0xaf, 0xa7, 0xda, + 0x8a, 0xb9, 0x47, 0x2d, 0x7e, 0xe3, 0x04, 0x9a, 0xd2, 0x9f, 0x9f, 0xb3, 0xa3, 0x69, 0xcc, 0x75, + 0x17, 0xda, 0x4c, 0xb5, 0x1b, 0x7b, 0x17, 0x58, 0xfc, 0xe6, 0x89, 0x74, 0x43, 0x5e, 0x85, 0x6f, + 0xa8, 0x32, 0x78, 0x15, 0x7b, 0x23, 0x97, 0xc1, 0xab, 0xf8, 0x2b, 0x31, 0xd4, 0x85, 0x69, 0xff, + 0xfd, 0x0f, 0xba, 0x96, 0x6a, 0x2e, 0x70, 0x73, 0x56, 0x5c, 0xef, 0x43, 0x43, 0xc2, 0x7e, 0xa0, + 0xc0, 0x4c, 0xc4, 0x5d, 0x0c, 0xfa, 0x5a, 0xaa, 0xa9, 0xa8, 0x9b, 0xa8, 0xe2, 0xf5, 0x7e, 0xd5, + 0xa4, 0x1b, 0x3f, 0x0b, 0xb8, 0x21, 0xaf, 0x4f, 0x32, 0xbb, 0xe1, 0xbf, 0x1f, 0xca, 0xec, 0x46, + 0xe0, 0x96, 0xa6, 0x9c, 0xfb, 0xe9, 0x90, 0x82, 0x7e, 0xa5, 0xc0, 0x42, 0xc2, 0xb5, 0x07, 0x7a, + 0x27, 0xa3, 0xf1, 0xe8, 0xbb, 0x9d, 0xe2, 0xb7, 0x4e, 0xaa, 0x1e, 0x5a, 0xe4, 0xc1, 0x9b, 0x8b, + 0x0c, 0x8b, 0x3c, 0xe6, 0x76, 0x26, 0xc3, 0x22, 0x8f, 0xbb, 0x26, 0x41, 0xcf, 0x14, 0x58, 0x4e, + 0xbb, 0x67, 0x40, 0xb5, 0x7e, 0x49, 0x47, 0x2c, 0xfa, 0xed, 0x2f, 0x64, 0x43, 0x7a, 0xfb, 0x1b, + 0x05, 0x16, 0x13, 0xaf, 0x0c, 0xd0, 0xcd, 0x8c, 0x30, 0x71, 0xf7, 0x23, 0xc5, 0x77, 0x4f, 0x6e, + 0x40, 0x3a, 0xf9, 0x91, 0x02, 0xe7, 0x63, 0xfa, 0xef, 0x28, 0x3d, 0x53, 0x71, 0xd7, 0x1b, 0xc5, + 0xcd, 0x93, 0xa8, 0x4a, 0x97, 0x7e, 0xa2, 0xc0, 0x6c, 0x54, 0x03, 0x19, 0x5d, 0xcf, 0x68, 0x34, + 0x70, 0x39, 0x50, 0xbc, 0xd1, 0xb7, 0x9e, 0xf4, 0xc4, 0x82, 0x29, 0x5f, 0x2b, 0x19, 0x55, 0x53, + 0x4b, 0x27, 0x7f, 0x7f, 0xb7, 0x78, 0x2d, 0xbb, 0x82, 0x8b, 0xe9, 0x6b, 0x23, 0x27, 0x62, 0x46, + 0x35, 0xb3, 0x13, 0x31, 0x23, 0x3b, 0xd4, 0x0c, 0xd3, 0xd7, 0x44, 0x4d, 0xc4, 0x8c, 0xea, 0x63, + 0x27, 0x62, 0x46, 0xf6, 0x92, 0xd9, 0x26, 0xe4, 0x6f, 0xdc, 0xa2, 0xcc, 0x36, 0x68, 0x96, 0x4d, + 0x28, 0xba, 0x2b, 0xcc, 0x60, 0xfd, 0x4d, 0xd9, 0x44, 0xd8, 0xc8, 0xee, 0x71, 0x22, 0x6c, 0x74, + 0xc7, 0x97, 0xef, 0x7d, 0x11, 0x4d, 0xd3, 0xc4, 0x4d, 0x27, 0xbe, 0x3d, 0x9c, 0xb8, 0xe9, 0x24, + 0xf4, 0x66, 0xd1, 0x11, 0x9c, 0x0e, 0x34, 0x3d, 0x51, 0x12, 0x99, 0xe8, 0x1e, 0x6e, 0x71, 0xa3, + 0x1f, 0x15, 0x77, 0x8a, 0xf9, 0xce, 0xa5, 0x89, 0x53, 0x2c, 0xaa, 0xf3, 0x9a, 0x38, 0xc5, 0x22, + 0x8f, 0xbc, 0x2c, 0xd7, 0xfe, 0xe3, 0x26, 0x4a, 0xb1, 0x11, 0x3e, 0x1a, 0x17, 0xd7, 0xfb, 0xd0, + 0xf0, 0x05, 0xd9, 0x7b, 0x48, 0x4c, 0x0b, 0x72, 0xc4, 0x99, 0x37, 0x2d, 0xc8, 0x51, 0x67, 0xd0, + 0x1a, 0xf9, 0xf8, 0x45, 0x49, 0xf9, 0xf4, 0x45, 0x49, 0xf9, 0xec, 0x45, 0x49, 0xf9, 0xe8, 0x65, + 0xe9, 0xd4, 0xa7, 0x2f, 0x4b, 0xa7, 0xfe, 0xf3, 0xb2, 0x74, 0x0a, 0xe6, 0x35, 0x33, 0xc6, 0xde, + 0x9e, 0xf2, 0x7e, 0xc5, 0xf3, 0x99, 0x91, 0x2b, 0xb4, 0xa6, 0x99, 0x9e, 0x5f, 0xd5, 0xa3, 0xde, + 0x5f, 0x67, 0xec, 0x8f, 0xf2, 0x3f, 0xc9, 0x78, 0xeb, 0xf3, 0x00, 0x00, 0x00, 0xff, 0xff, 0x94, + 0x66, 0xca, 0xc6, 0x0a, 0x33, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/hold/hold.pb.go b/x/hold/hold.pb.go index 55b5df0b4b..3a157fed08 100644 --- a/x/hold/hold.pb.go +++ b/x/hold/hold.pb.go @@ -7,6 +7,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/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" @@ -87,24 +88,26 @@ func init() { func init() { proto.RegisterFile("provenance/hold/v1/hold.proto", fileDescriptor_cfc6e4f15dd47e2b) } var fileDescriptor_cfc6e4f15dd47e2b = []byte{ - // 266 bytes of a gzipped FileDescriptorProto + // 298 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x2d, 0x28, 0xca, 0x2f, 0x4b, 0xcd, 0x4b, 0xcc, 0x4b, 0x4e, 0xd5, 0xcf, 0xc8, 0xcf, 0x49, 0xd1, 0x2f, 0x33, 0x04, 0xd3, 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, 0x42, 0x42, 0x08, 0x69, 0x3d, 0xb0, 0x70, 0x99, 0xa1, 0x94, - 0x5c, 0x72, 0x7e, 0x71, 0x6e, 0x7e, 0xb1, 0x7e, 0x52, 0x62, 0x71, 0xaa, 0x7e, 0x99, 0x61, 0x52, - 0x6a, 0x49, 0xa2, 0xa1, 0x7e, 0x72, 0x7e, 0x66, 0x1e, 0x44, 0x8f, 0x94, 0x48, 0x7a, 0x7e, 0x7a, - 0x3e, 0x98, 0xa9, 0x0f, 0x62, 0x41, 0x44, 0x95, 0x7a, 0x18, 0xb9, 0xb8, 0x1d, 0x93, 0x93, 0xf3, - 0x4b, 0xf3, 0x4a, 0x3c, 0xf2, 0x73, 0x52, 0x84, 0x24, 0xb8, 0xd8, 0x13, 0x53, 0x52, 0x8a, 0x52, - 0x8b, 0x8b, 0x25, 0x18, 0x15, 0x18, 0x35, 0x38, 0x83, 0x60, 0x5c, 0xa1, 0x64, 0x2e, 0xb6, 0xc4, - 0x5c, 0x90, 0x3a, 0x09, 0x26, 0x05, 0x66, 0x0d, 0x6e, 0x23, 0x49, 0x3d, 0x88, 0x85, 0x7a, 0x20, - 0x0b, 0xf5, 0xa0, 0x16, 0xea, 0x39, 0xe7, 0x67, 0xe6, 0x39, 0x19, 0x9c, 0xb8, 0x27, 0xcf, 0xb0, - 0xea, 0xbe, 0xbc, 0x46, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xd4, - 0x75, 0x10, 0x4a, 0xb7, 0x38, 0x25, 0x5b, 0xbf, 0xa4, 0xb2, 0x20, 0xb5, 0x18, 0xac, 0xa1, 0x38, - 0x08, 0x6a, 0xb4, 0x53, 0xec, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, - 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x70, 0x89, - 0x66, 0x82, 0x9d, 0x8c, 0xe6, 0xeb, 0x00, 0xc6, 0x28, 0x2d, 0x24, 0x4b, 0x10, 0x0a, 0x74, 0x33, - 0xf3, 0x91, 0x78, 0xfa, 0x15, 0xe0, 0xd0, 0x4b, 0x62, 0x03, 0x7b, 0xda, 0x18, 0x10, 0x00, 0x00, - 0xff, 0xff, 0x55, 0x00, 0xe4, 0x28, 0x5f, 0x01, 0x00, 0x00, + 0x60, 0x62, 0x6e, 0x66, 0x5e, 0xbe, 0x3e, 0x98, 0x84, 0x28, 0x93, 0x92, 0x4b, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x4f, 0x4a, 0x2c, 0x4e, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, + 0x4f, 0xce, 0xcf, 0xcc, 0x83, 0xca, 0x8b, 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0x99, 0xfa, 0x20, 0x16, + 0x44, 0x54, 0x69, 0x11, 0x23, 0x17, 0xb7, 0x63, 0x72, 0x72, 0x7e, 0x69, 0x5e, 0x89, 0x47, 0x7e, + 0x4e, 0x8a, 0x90, 0x04, 0x17, 0x7b, 0x62, 0x4a, 0x4a, 0x51, 0x6a, 0x71, 0xb1, 0x04, 0xa3, 0x02, + 0xa3, 0x06, 0x67, 0x10, 0x8c, 0x2b, 0x54, 0xc9, 0xc5, 0x96, 0x98, 0x0b, 0x52, 0x27, 0xc1, 0xa4, + 0xc0, 0xac, 0xc1, 0x6d, 0x24, 0xa9, 0x07, 0xb1, 0x50, 0x0f, 0x64, 0xa1, 0x1e, 0xd4, 0x42, 0x3d, + 0xe7, 0xfc, 0xcc, 0x3c, 0x27, 0xb7, 0x13, 0xf7, 0xe4, 0x19, 0x56, 0xdd, 0x97, 0xd7, 0x48, 0xcf, + 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x87, 0xba, 0x0e, 0x42, 0xe9, 0x16, 0xa7, + 0x64, 0xeb, 0x97, 0x54, 0x16, 0xa4, 0x16, 0x83, 0x35, 0x14, 0xcf, 0x7a, 0xbe, 0x41, 0x8b, 0x27, + 0x27, 0x35, 0x3d, 0x31, 0xb9, 0x32, 0x1e, 0xe4, 0xe4, 0xe2, 0x15, 0xcf, 0x37, 0x68, 0x31, 0x06, + 0x41, 0x2d, 0x74, 0x8a, 0x3d, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, + 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x06, 0x2e, 0xd1, + 0x4c, 0xb0, 0x47, 0xd0, 0x82, 0x27, 0x80, 0x31, 0x4a, 0x0b, 0xc9, 0x6a, 0x84, 0x02, 0xdd, 0xcc, + 0x7c, 0x24, 0x9e, 0x7e, 0x05, 0x38, 0x98, 0x93, 0xd8, 0xc0, 0x41, 0x61, 0x0c, 0x08, 0x00, 0x00, + 0xff, 0xff, 0x01, 0x23, 0xb7, 0xfe, 0x88, 0x01, 0x00, 0x00, } func (m *AccountHold) Marshal() (dAtA []byte, err error) { diff --git a/x/hold/query.pb.go b/x/hold/query.pb.go index 2b43ff715a..4c14bdee01 100644 --- a/x/hold/query.pb.go +++ b/x/hold/query.pb.go @@ -9,6 +9,7 @@ import ( github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" @@ -214,39 +215,41 @@ func init() { func init() { proto.RegisterFile("provenance/hold/v1/query.proto", fileDescriptor_e41c9f383440a9df) } var fileDescriptor_e41c9f383440a9df = []byte{ - // 505 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x93, 0xb1, 0x6f, 0xd3, 0x40, - 0x14, 0xc6, 0x7d, 0x45, 0x2d, 0xe5, 0x32, 0x80, 0x0e, 0x90, 0xd2, 0x00, 0x76, 0x48, 0xa1, 0x8d, - 0x8a, 0x7a, 0x47, 0x82, 0xba, 0xb0, 0xb5, 0x48, 0x84, 0xb1, 0x78, 0x44, 0x62, 0xb8, 0xd8, 0x57, - 0xd7, 0xc2, 0xb9, 0xe7, 0xe6, 0xce, 0x11, 0x15, 0x62, 0x68, 0x27, 0xc6, 0x4a, 0x88, 0xbd, 0x33, - 0x7f, 0x49, 0xc7, 0x4a, 0x2c, 0x4c, 0x80, 0x12, 0x06, 0xfe, 0x0c, 0x64, 0xfb, 0x2c, 0x3b, 0xc5, - 0xa5, 0x93, 0xcf, 0x7e, 0xdf, 0xbb, 0xef, 0xf7, 0xdd, 0x3b, 0x63, 0x3b, 0x1e, 0xc3, 0x44, 0x48, - 0x2e, 0x3d, 0xc1, 0xf6, 0x21, 0xf2, 0xd9, 0xa4, 0xc7, 0x0e, 0x12, 0x31, 0x3e, 0xa4, 0xf1, 0x18, - 0x34, 0x10, 0x52, 0xd6, 0x69, 0x5a, 0xa7, 0x93, 0x5e, 0x6b, 0xc3, 0x03, 0x35, 0x02, 0xc5, 0x86, - 0x5c, 0x89, 0x5c, 0xcc, 0x26, 0xbd, 0xa1, 0xd0, 0xbc, 0xc7, 0x62, 0x1e, 0x84, 0x92, 0xeb, 0x10, - 0x64, 0xde, 0xdf, 0xb2, 0xab, 0xda, 0x42, 0xe5, 0x41, 0x58, 0xd4, 0xef, 0x04, 0x10, 0x40, 0xb6, - 0x64, 0xe9, 0xca, 0x7c, 0xbd, 0x1f, 0x00, 0x04, 0x91, 0x60, 0x3c, 0x0e, 0x19, 0x97, 0x12, 0x74, - 0xb6, 0xa5, 0x32, 0xd5, 0x07, 0x35, 0xcc, 0x19, 0x5b, 0x56, 0xee, 0x6c, 0xe1, 0x9b, 0x03, 0xa1, - 0x5f, 0x41, 0xe4, 0x2b, 0x57, 0x1c, 0x24, 0x42, 0x69, 0xd2, 0xc4, 0xd7, 0xb9, 0xef, 0x8f, 0x85, - 0x52, 0x4d, 0xd4, 0x46, 0xdd, 0x1b, 0x6e, 0xf1, 0xfa, 0x7c, 0xf9, 0xd3, 0xa9, 0x63, 0xfd, 0x39, - 0x75, 0xac, 0xce, 0x11, 0xc2, 0xb7, 0xca, 0x3e, 0x15, 0x83, 0x54, 0x82, 0x78, 0x78, 0x89, 0x8f, - 0x20, 0x91, 0xba, 0x89, 0xda, 0xd7, 0xba, 0x8d, 0xfe, 0x0a, 0xcd, 0xf3, 0xd0, 0x34, 0x0f, 0x35, - 0x79, 0xe8, 0x0b, 0x08, 0xe5, 0xce, 0xd3, 0xb3, 0x1f, 0x8e, 0xf5, 0xf5, 0xa7, 0xd3, 0x0d, 0x42, - 0xbd, 0x9f, 0x0c, 0xa9, 0x07, 0x23, 0x66, 0xc2, 0xe7, 0x8f, 0x4d, 0xe5, 0xbf, 0x63, 0xfa, 0x30, - 0x16, 0x2a, 0x6b, 0x50, 0xae, 0xd9, 0xba, 0xc2, 0xb0, 0x87, 0xc9, 0x40, 0xe8, 0xed, 0x28, 0x9a, - 0xa3, 0x7f, 0x89, 0x71, 0x79, 0xae, 0x4d, 0xaf, 0x8d, 0xba, 0x8d, 0xfe, 0xda, 0x1c, 0x48, 0x3e, - 0xb1, 0x02, 0x67, 0x97, 0x07, 0xc2, 0xf4, 0xba, 0x95, 0xce, 0x8a, 0xcf, 0x17, 0x84, 0x6f, 0xcf, - 0x19, 0x99, 0xb8, 0x5b, 0x78, 0x31, 0x3d, 0x48, 0x65, 0xd2, 0x3a, 0xf4, 0xdf, 0xe9, 0xd3, 0x6d, - 0xcf, 0x4b, 0xa9, 0xd3, 0x46, 0x37, 0x57, 0x93, 0x41, 0x0d, 0xe0, 0xfa, 0x95, 0x80, 0xb9, 0x67, - 0x95, 0xb0, 0x7f, 0xb2, 0x80, 0x17, 0x5f, 0xa7, 0x52, 0x72, 0x8c, 0xf0, 0x72, 0x31, 0x0d, 0xb2, - 0x5a, 0xc7, 0x71, 0x61, 0xc6, 0xad, 0x47, 0xff, 0x17, 0xe5, 0x6e, 0x9d, 0x27, 0xc7, 0xdf, 0x7e, - 0x7f, 0x5e, 0x78, 0x4c, 0x56, 0x59, 0xcd, 0x25, 0xda, 0x4b, 0xa4, 0xaf, 0xd8, 0x07, 0x73, 0x37, - 0x3e, 0x92, 0x23, 0x84, 0x1b, 0x95, 0x63, 0x22, 0x6b, 0x97, 0x58, 0x5c, 0x18, 0x58, 0x6b, 0xfd, - 0x4a, 0x9d, 0xa1, 0x79, 0x98, 0xd1, 0xdc, 0x23, 0x2b, 0x97, 0xd2, 0xec, 0xbc, 0x3d, 0x9b, 0xda, - 0xe8, 0x7c, 0x6a, 0xa3, 0x5f, 0x53, 0x1b, 0x9d, 0xcc, 0x6c, 0xeb, 0x7c, 0x66, 0x5b, 0xdf, 0x67, - 0xb6, 0x85, 0xef, 0x86, 0x50, 0xe3, 0xb3, 0x8b, 0xde, 0x6c, 0x54, 0x6e, 0x60, 0x29, 0xd8, 0x0c, - 0xa1, 0xea, 0xf2, 0x3e, 0xf3, 0x19, 0x2e, 0x65, 0xff, 0xcc, 0xb3, 0xbf, 0x01, 0x00, 0x00, 0xff, - 0xff, 0xec, 0x33, 0x03, 0x77, 0x08, 0x04, 0x00, 0x00, + // 539 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x93, 0x3f, 0x6f, 0xd3, 0x4e, + 0x18, 0xc7, 0x7d, 0xfd, 0xa9, 0xfd, 0x95, 0x0b, 0x12, 0x70, 0x80, 0x94, 0x06, 0x70, 0x42, 0x0a, + 0x6d, 0x14, 0xd4, 0x3b, 0x25, 0xa8, 0x0b, 0x5b, 0x8b, 0xd4, 0x30, 0x96, 0x8c, 0x48, 0x08, 0x5d, + 0xec, 0xab, 0x6b, 0xe1, 0xdc, 0xe3, 0xe6, 0xce, 0x11, 0x11, 0x62, 0xa0, 0x13, 0x63, 0x25, 0x84, + 0x90, 0x98, 0x3a, 0x22, 0xa6, 0xbe, 0x8c, 0x8e, 0x95, 0x58, 0x98, 0x00, 0x25, 0x48, 0xe5, 0x65, + 0x20, 0xdb, 0x67, 0xc5, 0x29, 0x2e, 0x5d, 0xec, 0xb3, 0x9f, 0xef, 0xe3, 0xef, 0xe7, 0xf9, 0x63, + 0x6c, 0x87, 0x03, 0x18, 0x0a, 0xc9, 0xa5, 0x23, 0xd8, 0x2e, 0x04, 0x2e, 0x1b, 0xb6, 0xd8, 0x5e, + 0x24, 0x06, 0x23, 0x1a, 0x0e, 0x40, 0x03, 0x21, 0xd3, 0x38, 0x8d, 0xe3, 0x74, 0xd8, 0xaa, 0x5c, + 0xe3, 0x7d, 0x5f, 0x02, 0x4b, 0xae, 0xa9, 0xac, 0xd2, 0x74, 0x40, 0xf5, 0x41, 0xb1, 0x1e, 0x57, + 0x22, 0xcd, 0x67, 0xc3, 0x56, 0x4f, 0x68, 0xde, 0x62, 0x21, 0xf7, 0x7c, 0xc9, 0xb5, 0x0f, 0xd2, + 0x68, 0xed, 0xbc, 0x36, 0x53, 0x39, 0xe0, 0x67, 0xf1, 0x1b, 0x1e, 0x78, 0x90, 0x1c, 0x59, 0x7c, + 0x32, 0x6f, 0x6f, 0x7b, 0x00, 0x5e, 0x20, 0x18, 0x0f, 0x7d, 0xc6, 0xa5, 0x04, 0x9d, 0x7c, 0x52, + 0x99, 0xe8, 0x9d, 0x82, 0x32, 0x12, 0xdc, 0x24, 0x5c, 0x5f, 0xc7, 0x57, 0x3a, 0x42, 0x3f, 0x81, + 0xc0, 0x55, 0x5d, 0xb1, 0x17, 0x09, 0xa5, 0x49, 0x19, 0xff, 0xcf, 0x5d, 0x77, 0x20, 0x94, 0x2a, + 0xa3, 0x1a, 0x6a, 0x5c, 0xea, 0x66, 0x8f, 0x8f, 0x16, 0xdf, 0x1d, 0x56, 0xad, 0xdf, 0x87, 0x55, + 0xab, 0xfe, 0x11, 0xe1, 0xab, 0xd3, 0x3c, 0x15, 0x82, 0x54, 0x82, 0x8c, 0xf0, 0x02, 0xef, 0x43, + 0x24, 0x75, 0x19, 0xd5, 0xfe, 0x6b, 0x94, 0xda, 0x4b, 0x34, 0xad, 0x87, 0xc6, 0xf5, 0x50, 0x53, + 0x0f, 0x7d, 0x0c, 0xbe, 0xdc, 0xdc, 0x3a, 0xfe, 0x5e, 0xb5, 0xbe, 0xfc, 0xa8, 0x36, 0x3c, 0x5f, + 0xef, 0x46, 0x3d, 0xea, 0x40, 0x9f, 0x99, 0xe2, 0xd3, 0xdb, 0x9a, 0x72, 0x5f, 0x32, 0x3d, 0x0a, + 0x85, 0x4a, 0x12, 0xd4, 0xa7, 0xd3, 0xa3, 0xe6, 0xe5, 0x40, 0x78, 0xdc, 0x19, 0xbd, 0x88, 0x3b, + 0xa2, 0x3e, 0x9f, 0x1e, 0x35, 0x51, 0xd7, 0x18, 0xe6, 0xc8, 0x76, 0x30, 0xe9, 0x08, 0xbd, 0x11, + 0x04, 0x33, 0x35, 0x6d, 0x61, 0x3c, 0xed, 0x76, 0xd9, 0xa9, 0xa1, 0x46, 0xa9, 0xbd, 0x32, 0x83, + 0x97, 0x8e, 0x36, 0x83, 0xdc, 0xe6, 0x9e, 0x30, 0xb9, 0xdd, 0x5c, 0x66, 0xce, 0xe7, 0x03, 0xc2, + 0xd7, 0x67, 0x8c, 0x4c, 0x13, 0xd6, 0xf1, 0x7c, 0xdc, 0x5e, 0x65, 0x7a, 0x50, 0xa5, 0x7f, 0xaf, + 0x09, 0xdd, 0x70, 0x9c, 0x98, 0x3a, 0x4e, 0xec, 0xa6, 0x6a, 0xd2, 0x29, 0x00, 0x5c, 0xbd, 0x10, + 0x30, 0xf5, 0xcc, 0x13, 0xb6, 0x0f, 0xe6, 0xf0, 0xfc, 0xd3, 0x58, 0x4a, 0xf6, 0x11, 0x5e, 0xcc, + 0x66, 0x44, 0x96, 0x8b, 0x38, 0xce, 0x4c, 0xbe, 0x72, 0xef, 0xdf, 0xa2, 0xd4, 0xad, 0xfe, 0x60, + 0xff, 0xeb, 0xaf, 0xf7, 0x73, 0xf7, 0xc9, 0x32, 0x2b, 0x58, 0xad, 0x9d, 0x48, 0xba, 0x8a, 0xbd, + 0x36, 0x1b, 0xf3, 0x86, 0xbc, 0x45, 0xb8, 0x94, 0x6b, 0x13, 0x59, 0x39, 0xc7, 0xe2, 0xcc, 0xc0, + 0x2a, 0xab, 0x17, 0xea, 0x0c, 0xcd, 0xdd, 0x84, 0xe6, 0x16, 0x59, 0x3a, 0x97, 0x66, 0xf3, 0xf9, + 0xf1, 0xd8, 0x46, 0x27, 0x63, 0x1b, 0xfd, 0x1c, 0xdb, 0xe8, 0x60, 0x62, 0x5b, 0x27, 0x13, 0xdb, + 0xfa, 0x36, 0xb1, 0x2d, 0x7c, 0xd3, 0x87, 0x02, 0x9f, 0x6d, 0xf4, 0xac, 0x99, 0xdb, 0xcb, 0xa9, + 0x60, 0xcd, 0x87, 0xbc, 0xcb, 0xab, 0xc4, 0xa7, 0xb7, 0x90, 0xfc, 0x49, 0x0f, 0xff, 0x04, 0x00, + 0x00, 0xff, 0xff, 0xe6, 0x68, 0x91, 0x92, 0x31, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/marker/types/authz.pb.go b/x/marker/types/authz.pb.go index ba414ff12c..2909858bc1 100644 --- a/x/marker/types/authz.pb.go +++ b/x/marker/types/authz.pb.go @@ -8,6 +8,7 @@ import ( _ "github.com/cosmos/cosmos-proto" 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/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" @@ -90,28 +91,30 @@ func init() { func init() { proto.RegisterFile("provenance/marker/v1/authz.proto", fileDescriptor_e86b03f937f368fb) } var fileDescriptor_e86b03f937f368fb = []byte{ - // 321 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x51, 0xc1, 0x4e, 0x32, 0x31, - 0x18, 0xdc, 0xfd, 0x49, 0xfe, 0x84, 0x35, 0x98, 0x48, 0x48, 0x04, 0x8c, 0x85, 0x78, 0xe2, 0x42, - 0xeb, 0xe2, 0xcd, 0x9b, 0x78, 0xc5, 0xc4, 0x10, 0x4f, 0x5e, 0x48, 0x77, 0xad, 0x4b, 0xc3, 0x6e, - 0x3f, 0xd2, 0x96, 0x55, 0x79, 0x0a, 0x9f, 0xc3, 0xb3, 0x6f, 0xe0, 0x85, 0x78, 0xe2, 0xe8, 0x49, - 0x0d, 0xbc, 0x88, 0xd9, 0xb6, 0x04, 0x8c, 0xa7, 0xdd, 0xe9, 0x4c, 0x67, 0x26, 0xd3, 0xa0, 0x3d, - 0x95, 0x90, 0x33, 0x41, 0x45, 0xcc, 0x48, 0x46, 0xe5, 0x84, 0x49, 0x92, 0x87, 0x84, 0xce, 0xf4, - 0x78, 0x8e, 0xa7, 0x12, 0x34, 0x54, 0x6b, 0x5b, 0x05, 0xb6, 0x0a, 0x9c, 0x87, 0xcd, 0x5a, 0x02, - 0x09, 0x18, 0x01, 0x29, 0xfe, 0xac, 0xb6, 0xd9, 0x88, 0x41, 0x65, 0xa0, 0x46, 0x96, 0xb0, 0xc0, - 0x51, 0xc8, 0x22, 0x12, 0x51, 0xc5, 0x48, 0x1e, 0x46, 0x4c, 0xd3, 0x90, 0xc4, 0xc0, 0x85, 0xe5, - 0x4f, 0xde, 0xfc, 0xe0, 0xe8, 0xca, 0xd8, 0xdf, 0x48, 0x2a, 0xd4, 0x3d, 0x93, 0x17, 0x33, 0x3d, - 0x06, 0xc9, 0xe7, 0x54, 0x73, 0x10, 0x55, 0x19, 0xec, 0x6b, 0x47, 0x8c, 0x52, 0x9e, 0x71, 0x5d, - 0xf7, 0xdb, 0xa5, 0xce, 0x5e, 0xaf, 0x81, 0x5d, 0x4c, 0x61, 0x8c, 0x9d, 0x31, 0xbe, 0x04, 0x2e, - 0xfa, 0xa7, 0x8b, 0xcf, 0x96, 0xf7, 0xf2, 0xd5, 0xea, 0x24, 0x5c, 0x8f, 0x67, 0x11, 0x8e, 0x21, - 0x73, 0x9d, 0xdc, 0xa7, 0xab, 0xee, 0x26, 0x44, 0x3f, 0x4d, 0x99, 0x32, 0x17, 0xd4, 0xb0, 0xb2, - 0x89, 0x18, 0x14, 0x09, 0xd5, 0xe3, 0x20, 0xa0, 0x69, 0x0a, 0x0f, 0xa3, 0x94, 0x2b, 0x5d, 0xff, - 0xd7, 0x2e, 0x75, 0xca, 0xc3, 0xb2, 0x39, 0x19, 0x70, 0xa5, 0xcf, 0x0f, 0xde, 0x5f, 0xbb, 0x95, - 0x5f, 0x2d, 0xfb, 0xc9, 0x62, 0x85, 0xfc, 0xe5, 0x0a, 0xf9, 0xdf, 0x2b, 0xe4, 0x3f, 0xaf, 0x91, - 0xb7, 0x5c, 0x23, 0xef, 0x63, 0x8d, 0xbc, 0xe0, 0x90, 0x9b, 0x91, 0xfe, 0x2c, 0x79, 0xed, 0xdf, - 0xf6, 0x76, 0xfa, 0x6d, 0x25, 0x5d, 0x0e, 0x3b, 0x88, 0x3c, 0x6e, 0x9e, 0xc7, 0xf4, 0x8d, 0xfe, - 0x9b, 0xd5, 0xce, 0x7e, 0x02, 0x00, 0x00, 0xff, 0xff, 0x47, 0x42, 0x6b, 0x19, 0xc0, 0x01, 0x00, - 0x00, + // 355 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x28, 0x28, 0xca, 0x2f, + 0x4b, 0xcd, 0x4b, 0xcc, 0x4b, 0x4e, 0xd5, 0xcf, 0x4d, 0x2c, 0xca, 0x4e, 0x2d, 0xd2, 0x2f, 0x33, + 0xd4, 0x4f, 0x2c, 0x2d, 0xc9, 0xa8, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x41, 0xa8, + 0xd0, 0x83, 0xa8, 0xd0, 0x2b, 0x33, 0x94, 0x12, 0x4c, 0xcc, 0xcd, 0xcc, 0xcb, 0xd7, 0x07, 0x93, + 0x10, 0x85, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0xa6, 0x3e, 0x88, 0x05, 0x15, 0x95, 0x4c, + 0xce, 0x2f, 0xce, 0xcd, 0x2f, 0x8e, 0x87, 0x48, 0x40, 0x38, 0x50, 0x29, 0x39, 0x08, 0x4f, 0x3f, + 0x29, 0xb1, 0x38, 0x55, 0xbf, 0xcc, 0x30, 0x29, 0xb5, 0x24, 0xd1, 0x50, 0x3f, 0x39, 0x3f, 0x33, + 0x0f, 0x22, 0xaf, 0x74, 0x8b, 0x91, 0x4b, 0xda, 0x17, 0x6c, 0x63, 0x48, 0x51, 0x62, 0x5e, 0x71, + 0x5a, 0x6a, 0x91, 0x63, 0x69, 0x49, 0x46, 0x7e, 0x51, 0x66, 0x55, 0x62, 0x49, 0x66, 0x7e, 0x9e, + 0x50, 0x07, 0x23, 0x17, 0x5f, 0x09, 0x54, 0x26, 0x3e, 0x27, 0x33, 0x37, 0xb3, 0x44, 0x82, 0x51, + 0x81, 0x59, 0x83, 0xdb, 0x48, 0x52, 0x0f, 0x6a, 0x0f, 0xc8, 0x64, 0x3d, 0xa8, 0xc9, 0x7a, 0xce, + 0xf9, 0x99, 0x79, 0x4e, 0x6e, 0x27, 0xee, 0xc9, 0x33, 0xac, 0xba, 0x2f, 0xaf, 0x91, 0x9e, 0x59, + 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0x0b, 0x75, 0x14, 0x94, 0xd2, 0x2d, 0x4e, 0xc9, 0xd6, + 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0x06, 0x6b, 0x28, 0x9e, 0xf5, 0x7c, 0x83, 0x16, 0x4f, 0x4e, 0x6a, + 0x7a, 0x62, 0x72, 0x65, 0x3c, 0xc8, 0x6d, 0xc5, 0x2b, 0x9e, 0x6f, 0xd0, 0x62, 0x0c, 0xe2, 0x85, + 0x59, 0xec, 0x03, 0xb2, 0x57, 0x48, 0x96, 0x8b, 0x2b, 0x31, 0x27, 0x27, 0xbf, 0x3c, 0x3e, 0x27, + 0xb3, 0xb8, 0x44, 0x82, 0x49, 0x81, 0x59, 0x83, 0x33, 0x88, 0x13, 0x2c, 0xe2, 0x93, 0x59, 0x5c, + 0x62, 0x25, 0x78, 0x6a, 0x8b, 0x2e, 0x2f, 0x8a, 0xe3, 0x9d, 0xd2, 0x4f, 0x3c, 0x92, 0x63, 0xbc, + 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, + 0xb8, 0xf1, 0x58, 0x8e, 0x81, 0x4b, 0x3c, 0x13, 0x1c, 0x76, 0x18, 0x61, 0x1e, 0xc0, 0x18, 0x65, + 0x84, 0xe4, 0x6a, 0x84, 0x12, 0xdd, 0xcc, 0x7c, 0x24, 0x9e, 0x7e, 0x05, 0x2c, 0x22, 0xc1, 0xbe, + 0x48, 0x62, 0x03, 0x07, 0xa6, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0xf6, 0x8a, 0xd6, 0xa0, 0xea, + 0x01, 0x00, 0x00, } func (m *MarkerTransferAuthorization) Marshal() (dAtA []byte, err error) { diff --git a/x/marker/types/proposals.pb.go b/x/marker/types/proposals.pb.go index 20e3603c54..7a17e578da 100644 --- a/x/marker/types/proposals.pb.go +++ b/x/marker/types/proposals.pb.go @@ -7,6 +7,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/cosmos/cosmos-sdk/x/bank/types" github_com_cosmos_cosmos_sdk_x_bank_types "github.com/cosmos/cosmos-sdk/x/bank/types" _ "github.com/cosmos/gogoproto/gogoproto" @@ -34,15 +35,15 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // // Deprecated: Do not use. type AddMarkerProposal struct { - Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"` - Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` - Amount github_com_cosmos_cosmos_sdk_types.Coin `protobuf:"bytes,3,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Coin" json:"amount"` - Manager string `protobuf:"bytes,4,opt,name=manager,proto3" json:"manager,omitempty"` - Status MarkerStatus `protobuf:"varint,5,opt,name=status,proto3,enum=provenance.marker.v1.MarkerStatus" json:"status,omitempty"` - MarkerType MarkerType `protobuf:"varint,6,opt,name=marker_type,json=markerType,proto3,enum=provenance.marker.v1.MarkerType" json:"marker_type,omitempty"` - AccessList []AccessGrant `protobuf:"bytes,7,rep,name=access_list,json=accessList,proto3" json:"access_list"` - SupplyFixed bool `protobuf:"varint,8,opt,name=supply_fixed,json=supplyFixed,proto3" json:"supply_fixed,omitempty"` - AllowGovernanceControl bool `protobuf:"varint,9,opt,name=allow_governance_control,json=allowGovernanceControl,proto3" json:"allow_governance_control,omitempty"` + Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"` + Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` + Amount types.Coin `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount"` + Manager string `protobuf:"bytes,4,opt,name=manager,proto3" json:"manager,omitempty"` + Status MarkerStatus `protobuf:"varint,5,opt,name=status,proto3,enum=provenance.marker.v1.MarkerStatus" json:"status,omitempty"` + MarkerType MarkerType `protobuf:"varint,6,opt,name=marker_type,json=markerType,proto3,enum=provenance.marker.v1.MarkerType" json:"marker_type,omitempty"` + AccessList []AccessGrant `protobuf:"bytes,7,rep,name=access_list,json=accessList,proto3" json:"access_list"` + SupplyFixed bool `protobuf:"varint,8,opt,name=supply_fixed,json=supplyFixed,proto3" json:"supply_fixed,omitempty"` + AllowGovernanceControl bool `protobuf:"varint,9,opt,name=allow_governance_control,json=allowGovernanceControl,proto3" json:"allow_governance_control,omitempty"` } func (m *AddMarkerProposal) Reset() { *m = AddMarkerProposal{} } @@ -92,6 +93,13 @@ func (m *AddMarkerProposal) GetDescription() string { return "" } +func (m *AddMarkerProposal) GetAmount() types.Coin { + if m != nil { + return m.Amount + } + return types.Coin{} +} + func (m *AddMarkerProposal) GetManager() string { if m != nil { return m.Manager @@ -137,10 +145,10 @@ func (m *AddMarkerProposal) GetAllowGovernanceControl() bool { // SupplyIncreaseProposal defines a governance proposal to administer a marker and increase total supply of the marker // through minting coin and placing it within the marker or assigning it directly to an account type SupplyIncreaseProposal struct { - Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"` - Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` - Amount github_com_cosmos_cosmos_sdk_types.Coin `protobuf:"bytes,3,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Coin" json:"amount"` - TargetAddress string `protobuf:"bytes,4,opt,name=target_address,json=targetAddress,proto3" json:"target_address,omitempty"` + Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"` + Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` + Amount types.Coin `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount"` + TargetAddress string `protobuf:"bytes,4,opt,name=target_address,json=targetAddress,proto3" json:"target_address,omitempty"` } func (m *SupplyIncreaseProposal) Reset() { *m = SupplyIncreaseProposal{} } @@ -189,6 +197,13 @@ func (m *SupplyIncreaseProposal) GetDescription() string { return "" } +func (m *SupplyIncreaseProposal) GetAmount() types.Coin { + if m != nil { + return m.Amount + } + return types.Coin{} +} + func (m *SupplyIncreaseProposal) GetTargetAddress() string { if m != nil { return m.TargetAddress @@ -199,9 +214,9 @@ func (m *SupplyIncreaseProposal) GetTargetAddress() string { // SupplyDecreaseProposal defines a governance proposal to administer a marker and decrease the total supply through // burning coin held within the marker type SupplyDecreaseProposal struct { - Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"` - Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` - Amount github_com_cosmos_cosmos_sdk_types.Coin `protobuf:"bytes,3,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Coin" json:"amount"` + Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"` + Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` + Amount types.Coin `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount"` } func (m *SupplyDecreaseProposal) Reset() { *m = SupplyDecreaseProposal{} } @@ -250,6 +265,13 @@ func (m *SupplyDecreaseProposal) GetDescription() string { return "" } +func (m *SupplyDecreaseProposal) GetAmount() types.Coin { + if m != nil { + return m.Amount + } + return types.Coin{} +} + // SetAdministratorProposal defines a governance proposal to administer a marker and set administrators with specific // access on the marker type SetAdministratorProposal struct { @@ -601,54 +623,57 @@ func init() { } var fileDescriptor_345320af87f4ec37 = []byte{ - // 752 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x55, 0xcf, 0x6b, 0x13, 0x41, - 0x14, 0xce, 0x98, 0x1f, 0x4d, 0x26, 0x5a, 0x71, 0x09, 0x75, 0xad, 0x98, 0xa4, 0x41, 0x6d, 0x2e, - 0xdd, 0x35, 0xf1, 0x22, 0xb9, 0x48, 0xd2, 0x6a, 0x15, 0x2c, 0x94, 0xad, 0x20, 0x78, 0x09, 0x93, - 0xdd, 0x71, 0xbb, 0x24, 0x3b, 0xb3, 0xcc, 0x4c, 0x92, 0xf6, 0xbf, 0xf0, 0xe8, 0x49, 0x7a, 0xf6, - 0x26, 0xde, 0x3d, 0xf7, 0x66, 0x8f, 0xe2, 0xa1, 0x4a, 0x8b, 0xe0, 0x7f, 0xe0, 0xc5, 0x83, 0xec, - 0xcc, 0x24, 0x0d, 0x34, 0x84, 0x4a, 0xa9, 0xd0, 0xd3, 0xee, 0xbc, 0xf7, 0xbd, 0x1f, 0xdf, 0xcc, - 0xf7, 0x66, 0xe0, 0xdd, 0x88, 0xd1, 0x01, 0x26, 0x88, 0xb8, 0xd8, 0x0e, 0x11, 0xeb, 0x62, 0x66, - 0x0f, 0x6a, 0x76, 0xc4, 0x68, 0x44, 0x39, 0xea, 0x71, 0x2b, 0x62, 0x54, 0x50, 0xa3, 0x70, 0x82, - 0xb2, 0x14, 0xca, 0x1a, 0xd4, 0x16, 0x0b, 0x3e, 0xf5, 0xa9, 0x04, 0xd8, 0xf1, 0x9f, 0xc2, 0x2e, - 0x16, 0x5d, 0xca, 0x43, 0xca, 0xed, 0x0e, 0x22, 0x5d, 0x7b, 0x50, 0xeb, 0x60, 0x81, 0x6a, 0x72, - 0x71, 0xca, 0xcf, 0xf1, 0xd8, 0xef, 0xd2, 0x80, 0x68, 0xff, 0xd2, 0xd4, 0x8e, 0x74, 0x55, 0x05, - 0xb9, 0x3f, 0x15, 0x82, 0x5c, 0x17, 0x73, 0xee, 0x33, 0x44, 0x84, 0xc2, 0x55, 0x7e, 0x27, 0xe1, - 0x8d, 0xa6, 0xe7, 0x6d, 0x48, 0xc8, 0xa6, 0xe6, 0x64, 0x14, 0x60, 0x5a, 0x04, 0xa2, 0x87, 0x4d, - 0x50, 0x06, 0xd5, 0x9c, 0xa3, 0x16, 0x46, 0x19, 0xe6, 0x3d, 0xcc, 0x5d, 0x16, 0x44, 0x22, 0xa0, - 0xc4, 0xbc, 0x22, 0x7d, 0x93, 0x26, 0xa3, 0x03, 0x33, 0x28, 0xa4, 0x7d, 0x22, 0xcc, 0x64, 0x19, - 0x54, 0xf3, 0xf5, 0x5b, 0x96, 0x62, 0x62, 0xc5, 0x4c, 0x2c, 0xcd, 0xc4, 0x5a, 0xa5, 0x01, 0x69, - 0xd9, 0xfb, 0x87, 0xa5, 0xc4, 0xb7, 0xc3, 0xd2, 0xb2, 0x1f, 0x88, 0xed, 0x7e, 0xc7, 0x72, 0x69, - 0x68, 0x6b, 0xda, 0xea, 0xb3, 0xc2, 0xbd, 0xae, 0x2d, 0x76, 0x23, 0xcc, 0x65, 0x80, 0xa3, 0x33, - 0x1b, 0x26, 0x9c, 0x0b, 0x11, 0x41, 0x3e, 0x66, 0x66, 0x4a, 0x76, 0x30, 0x5a, 0x1a, 0x0d, 0x98, - 0xe1, 0x02, 0x89, 0x3e, 0x37, 0xd3, 0x65, 0x50, 0x9d, 0xaf, 0x57, 0xac, 0x69, 0x67, 0x62, 0x29, - 0xae, 0x5b, 0x12, 0xe9, 0xe8, 0x08, 0xa3, 0x09, 0xf3, 0x0a, 0xd1, 0x8e, 0x4b, 0x9a, 0x19, 0x99, - 0xa0, 0x3c, 0x2b, 0xc1, 0xcb, 0xdd, 0x08, 0x3b, 0x30, 0x1c, 0xff, 0x1b, 0xcf, 0x60, 0x5e, 0xed, - 0x6f, 0xbb, 0x17, 0x70, 0x61, 0xce, 0x95, 0x93, 0xd5, 0x7c, 0x7d, 0x69, 0x7a, 0x8a, 0xa6, 0x04, - 0xae, 0xc7, 0x07, 0xd1, 0x4a, 0xc5, 0x3b, 0xe1, 0x40, 0x15, 0xfb, 0x22, 0xe0, 0xc2, 0x58, 0x82, - 0x57, 0x79, 0x3f, 0x8a, 0x7a, 0xbb, 0xed, 0x37, 0xc1, 0x0e, 0xf6, 0xcc, 0x6c, 0x19, 0x54, 0xb3, - 0x4e, 0x5e, 0xd9, 0x9e, 0xc6, 0x26, 0xe3, 0x11, 0x34, 0x51, 0xaf, 0x47, 0x87, 0x6d, 0x9f, 0x0e, - 0x30, 0x93, 0xe9, 0xdb, 0x2e, 0x25, 0x82, 0xd1, 0x9e, 0x99, 0x93, 0xf0, 0x05, 0xe9, 0x5f, 0x1f, - 0xbb, 0x57, 0x95, 0xb7, 0x91, 0xf9, 0xb5, 0x57, 0x02, 0x26, 0xa8, 0xfc, 0x04, 0x70, 0x61, 0x4b, - 0x66, 0x7c, 0x4e, 0x5c, 0x86, 0x11, 0xc7, 0x97, 0xe2, 0xf8, 0xef, 0xc1, 0x79, 0x81, 0x98, 0x8f, - 0x45, 0x1b, 0x79, 0x1e, 0xc3, 0x9c, 0x6b, 0x15, 0x5c, 0x53, 0xd6, 0xa6, 0x32, 0x36, 0xb2, 0xef, - 0xf6, 0x4a, 0x89, 0x98, 0x69, 0xe5, 0xf3, 0x98, 0xe7, 0x1a, 0xbe, 0x3c, 0x3c, 0x27, 0x08, 0x7c, - 0x02, 0xd0, 0xdc, 0x8a, 0x99, 0x85, 0x01, 0x09, 0xb8, 0x60, 0x48, 0xd0, 0xf3, 0x4f, 0x6a, 0x01, - 0xa6, 0x3d, 0x4c, 0x68, 0x28, 0x19, 0xe4, 0x1c, 0xb5, 0x30, 0x1e, 0xc3, 0x8c, 0x92, 0xa1, 0x99, - 0xfa, 0x37, 0xf5, 0xea, 0xb0, 0x89, 0xae, 0xdf, 0x03, 0x78, 0xdb, 0xc1, 0x21, 0x1d, 0xe0, 0xff, - 0xd1, 0xf8, 0x32, 0xbc, 0xce, 0x64, 0x31, 0x6f, 0x42, 0x16, 0xc9, 0x6a, 0xce, 0x99, 0xd7, 0xe6, - 0xd3, 0xba, 0xf8, 0x08, 0x60, 0x61, 0x75, 0x1b, 0x11, 0x1f, 0xab, 0xab, 0xe0, 0x82, 0x3a, 0x6b, - 0x42, 0x48, 0xf0, 0xb0, 0xad, 0x2f, 0xa6, 0xd4, 0x99, 0x2f, 0xa6, 0x1c, 0xc1, 0x43, 0xf5, 0x3b, - 0xd1, 0xf3, 0x1f, 0x00, 0x17, 0x5e, 0x05, 0x62, 0xdb, 0x63, 0x68, 0xf8, 0x84, 0xbb, 0x8c, 0x0e, - 0x2f, 0xa8, 0x6b, 0x77, 0xac, 0x70, 0x25, 0x84, 0x19, 0x0a, 0x7f, 0x10, 0x0b, 0xe0, 0xc3, 0xf7, - 0x52, 0xf5, 0x8c, 0x0a, 0xe7, 0x33, 0x46, 0x39, 0x3d, 0x7b, 0x94, 0xbf, 0xa8, 0x49, 0x58, 0x8b, - 0x5b, 0xdc, 0xc0, 0x02, 0x79, 0x48, 0xa0, 0x73, 0x6f, 0x40, 0x1f, 0x66, 0x43, 0x9d, 0x4b, 0x8f, - 0xf3, 0x9d, 0x13, 0xb2, 0xa4, 0x3b, 0x26, 0x3b, 0x2a, 0xd8, 0x6a, 0xe8, 0x91, 0xae, 0xcf, 0x24, - 0xbc, 0xa3, 0x5e, 0x77, 0xc5, 0x7b, 0x14, 0xeb, 0x8c, 0x4b, 0x35, 0x52, 0x31, 0xab, 0x96, 0xbf, - 0x7f, 0x54, 0x04, 0x07, 0x47, 0x45, 0xf0, 0xe3, 0xa8, 0x08, 0xde, 0x1e, 0x17, 0x13, 0x07, 0xc7, - 0xc5, 0xc4, 0xd7, 0xe3, 0x62, 0x02, 0xde, 0x0c, 0xe8, 0x54, 0x95, 0x6c, 0x82, 0xd7, 0x93, 0x85, - 0x4f, 0x20, 0x2b, 0x01, 0x9d, 0x58, 0xd9, 0x3b, 0xa3, 0x67, 0x5f, 0x76, 0xd0, 0xc9, 0xc8, 0xe7, - 0xfe, 0xe1, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x08, 0x22, 0x77, 0xee, 0xcd, 0x08, 0x00, 0x00, + // 785 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x55, 0x4f, 0x6b, 0x1b, 0x47, + 0x14, 0xd7, 0x58, 0x7f, 0x2c, 0x8d, 0x5c, 0x17, 0x2f, 0xc2, 0xdd, 0xba, 0x54, 0x92, 0x45, 0xff, + 0x08, 0x83, 0x77, 0x91, 0x7a, 0x68, 0xd1, 0xa5, 0xc8, 0x76, 0xed, 0x16, 0x6a, 0x30, 0xeb, 0x42, + 0x21, 0x97, 0x65, 0xb4, 0x3b, 0x59, 0x2f, 0xda, 0x9d, 0x59, 0x66, 0x46, 0x92, 0xf5, 0x2d, 0x42, + 0x72, 0x09, 0x39, 0x04, 0x1f, 0x43, 0x4e, 0x0e, 0xb9, 0xe5, 0x13, 0xf8, 0x10, 0x88, 0x8f, 0x21, + 0x07, 0x27, 0xd8, 0x07, 0xe7, 0x63, 0x84, 0x9d, 0x59, 0xc9, 0x02, 0x0b, 0x91, 0x60, 0x1c, 0x5f, + 0xa4, 0x79, 0xef, 0xfd, 0xde, 0x9b, 0xdf, 0x7b, 0xf3, 0xde, 0x3e, 0xf8, 0x53, 0xc4, 0x68, 0x1f, + 0x13, 0x44, 0x1c, 0x6c, 0x86, 0x88, 0x75, 0x31, 0x33, 0xfb, 0x0d, 0x33, 0x62, 0x34, 0xa2, 0x1c, + 0x05, 0xdc, 0x88, 0x18, 0x15, 0x54, 0x2b, 0x5d, 0xa1, 0x0c, 0x85, 0x32, 0xfa, 0x8d, 0x95, 0x25, + 0x14, 0xfa, 0x84, 0x9a, 0xf2, 0x57, 0x01, 0x57, 0x4a, 0x1e, 0xf5, 0xa8, 0x3c, 0x9a, 0xf1, 0x29, + 0xd1, 0x96, 0x1d, 0xca, 0x43, 0xca, 0xcd, 0x0e, 0x22, 0x5d, 0xb3, 0xdf, 0xe8, 0x60, 0x81, 0x1a, + 0x52, 0xb8, 0x66, 0xe7, 0x78, 0x6c, 0x77, 0xa8, 0x4f, 0x12, 0xfb, 0xea, 0x54, 0x92, 0x09, 0x11, + 0x05, 0xf9, 0x65, 0x2a, 0x04, 0x39, 0x0e, 0xe6, 0xdc, 0x63, 0x88, 0x08, 0x85, 0xab, 0xbd, 0x4e, + 0xc3, 0xa5, 0xb6, 0xeb, 0xee, 0x4a, 0xc8, 0x5e, 0x92, 0xa6, 0x56, 0x82, 0x59, 0xe1, 0x8b, 0x00, + 0xeb, 0xa0, 0x0a, 0xea, 0x05, 0x4b, 0x09, 0x5a, 0x15, 0x16, 0x5d, 0xcc, 0x1d, 0xe6, 0x47, 0xc2, + 0xa7, 0x44, 0x9f, 0x93, 0xb6, 0x49, 0x95, 0xf6, 0x3b, 0xcc, 0xa1, 0x90, 0xf6, 0x88, 0xd0, 0xd3, + 0x55, 0x50, 0x2f, 0x36, 0xbf, 0x37, 0x54, 0x26, 0x46, 0x9c, 0x89, 0x91, 0x64, 0x62, 0x6c, 0x52, + 0x9f, 0x6c, 0x64, 0x4e, 0xce, 0x2a, 0x29, 0x2b, 0x81, 0x6b, 0x3a, 0x9c, 0x0f, 0x11, 0x41, 0x1e, + 0x66, 0x7a, 0x46, 0x86, 0x1d, 0x89, 0x5a, 0x0b, 0xe6, 0xb8, 0x40, 0xa2, 0xc7, 0xf5, 0x6c, 0x15, + 0xd4, 0x17, 0x9b, 0x35, 0x63, 0x5a, 0xed, 0x0d, 0x95, 0xc0, 0xbe, 0x44, 0x5a, 0x89, 0x87, 0xd6, + 0x86, 0x45, 0x85, 0xb0, 0xc5, 0x30, 0xc2, 0x7a, 0x4e, 0x06, 0xa8, 0xce, 0x0a, 0xf0, 0xdf, 0x30, + 0xc2, 0x16, 0x0c, 0xc7, 0x67, 0xed, 0x6f, 0x58, 0x54, 0x45, 0xb3, 0x03, 0x9f, 0x0b, 0x7d, 0xbe, + 0x9a, 0xae, 0x17, 0x9b, 0xab, 0xd3, 0x43, 0xb4, 0x25, 0x70, 0x27, 0xae, 0x6e, 0x92, 0x1e, 0x54, + 0xbe, 0xff, 0xfa, 0x5c, 0x68, 0xab, 0x70, 0x81, 0xf7, 0xa2, 0x28, 0x18, 0xda, 0xf7, 0xfd, 0x43, + 0xec, 0xea, 0xf9, 0x2a, 0xa8, 0xe7, 0xad, 0xa2, 0xd2, 0x6d, 0xc7, 0x2a, 0xed, 0x0f, 0xa8, 0xa3, + 0x20, 0xa0, 0x03, 0xdb, 0xa3, 0x7d, 0xcc, 0x64, 0x78, 0xdb, 0xa1, 0x44, 0x30, 0x1a, 0xe8, 0x05, + 0x09, 0x5f, 0x96, 0xf6, 0x9d, 0xb1, 0x79, 0x53, 0x59, 0x5b, 0xb9, 0x8f, 0x47, 0x15, 0xa0, 0x83, + 0xda, 0x2b, 0x00, 0x97, 0xf7, 0x65, 0xc4, 0x7f, 0x88, 0xc3, 0x30, 0xe2, 0xf8, 0xee, 0xde, 0xf4, + 0x67, 0xb8, 0x28, 0x10, 0xf3, 0xb0, 0xb0, 0x91, 0xeb, 0x32, 0xcc, 0x79, 0xf2, 0xb4, 0xdf, 0x28, + 0x6d, 0x5b, 0x29, 0x5b, 0xf9, 0xc7, 0x47, 0x95, 0x54, 0x4c, 0xbf, 0xf6, 0x68, 0x4c, 0x7e, 0x0b, + 0xdf, 0x31, 0xf9, 0x09, 0x56, 0x2f, 0x01, 0xd4, 0xf7, 0x63, 0xba, 0xa1, 0x4f, 0x7c, 0x2e, 0x18, + 0x12, 0xf4, 0xe6, 0x83, 0x52, 0x82, 0x59, 0x17, 0x13, 0x1a, 0x4a, 0x5a, 0x05, 0x4b, 0x09, 0xda, + 0x9f, 0x30, 0xa7, 0x1a, 0x46, 0xcf, 0x7c, 0x59, 0x9f, 0x25, 0x6e, 0x13, 0xac, 0x9f, 0x02, 0xf8, + 0x83, 0x85, 0x43, 0xda, 0xc7, 0x5f, 0x83, 0xf8, 0xaf, 0xf0, 0x5b, 0x26, 0x2f, 0x73, 0x27, 0xde, + 0x3a, 0x5d, 0x2f, 0x58, 0x8b, 0x89, 0xfa, 0xfa, 0x63, 0xbf, 0x00, 0xb0, 0xb4, 0x79, 0x80, 0x88, + 0x87, 0xd5, 0xd0, 0xde, 0x12, 0xb3, 0x36, 0x84, 0x04, 0x0f, 0xec, 0xe4, 0x13, 0x92, 0xf9, 0xec, + 0x4f, 0x48, 0x81, 0xe0, 0x81, 0x3a, 0x4e, 0x70, 0x7e, 0x38, 0x07, 0x97, 0xff, 0xf7, 0xc5, 0x81, + 0xcb, 0xd0, 0xe0, 0x2f, 0xee, 0x30, 0x3a, 0xb8, 0x25, 0xd6, 0xc3, 0x71, 0xdb, 0xaa, 0x46, 0x98, + 0xd1, 0xb6, 0xdb, 0x71, 0x03, 0x3c, 0x7f, 0x5f, 0xa9, 0x7b, 0xbe, 0x38, 0xe8, 0x75, 0x0c, 0x87, + 0x86, 0x66, 0xb2, 0x3e, 0xd4, 0xdf, 0x3a, 0x77, 0xbb, 0x66, 0xfc, 0xfd, 0xe3, 0xd2, 0x81, 0x3f, + 0xb9, 0x3c, 0x5e, 0x5b, 0x08, 0xb0, 0x87, 0x9c, 0xa1, 0x1d, 0xef, 0x14, 0xfe, 0xec, 0xf2, 0x78, + 0x0d, 0xcc, 0x98, 0xda, 0xec, 0xec, 0xa9, 0x7d, 0xa3, 0xe6, 0x63, 0x2b, 0x26, 0xbe, 0x8b, 0x05, + 0x72, 0x91, 0x40, 0x37, 0x2e, 0x4b, 0x0f, 0xe6, 0xc3, 0x24, 0x56, 0x32, 0xb9, 0x3f, 0x5e, 0x95, + 0x80, 0x74, 0xc7, 0x25, 0x18, 0x5d, 0xb8, 0xd1, 0x8a, 0xcb, 0xf0, 0xee, 0xac, 0xd2, 0x9c, 0x59, + 0x86, 0x43, 0xb5, 0x72, 0x55, 0x35, 0x46, 0xbe, 0xd6, 0xf8, 0xaa, 0x56, 0x26, 0xce, 0x6a, 0xc3, + 0x3b, 0x39, 0x2f, 0x83, 0xd3, 0xf3, 0x32, 0xf8, 0x70, 0x5e, 0x06, 0x0f, 0x2e, 0xca, 0xa9, 0xd3, + 0x8b, 0x72, 0xea, 0xed, 0x45, 0x39, 0x05, 0xbf, 0xf3, 0xe9, 0xd4, 0xde, 0xd9, 0x03, 0xf7, 0x26, + 0x2f, 0xbe, 0x82, 0xac, 0xfb, 0x74, 0x42, 0x32, 0x0f, 0x47, 0xbb, 0x58, 0x32, 0xe8, 0xe4, 0xe4, + 0x0e, 0xfe, 0xed, 0x53, 0x00, 0x00, 0x00, 0xff, 0xff, 0xac, 0x80, 0x1a, 0xd6, 0x75, 0x08, 0x00, + 0x00, } func (this *AddMarkerProposal) Equal(that interface{}) bool { @@ -676,7 +701,7 @@ func (this *AddMarkerProposal) Equal(that interface{}) bool { if this.Description != that1.Description { return false } - if !this.Amount.Equal(that1.Amount) { + if !this.Amount.Equal(&that1.Amount) { return false } if this.Manager != that1.Manager { @@ -729,7 +754,7 @@ func (this *SupplyIncreaseProposal) Equal(that interface{}) bool { if this.Description != that1.Description { return false } - if !this.Amount.Equal(that1.Amount) { + if !this.Amount.Equal(&that1.Amount) { return false } if this.TargetAddress != that1.TargetAddress { @@ -762,7 +787,7 @@ func (this *SupplyDecreaseProposal) Equal(that interface{}) bool { if this.Description != that1.Description { return false } - if !this.Amount.Equal(that1.Amount) { + if !this.Amount.Equal(&that1.Amount) { return false } return true @@ -989,11 +1014,11 @@ func (m *AddMarkerProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x22 } { - size := m.Amount.Size() - i -= size - if _, err := m.Amount.MarshalTo(dAtA[i:]); err != nil { + size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { return 0, err } + i -= size i = encodeVarintProposals(dAtA, i, uint64(size)) } i-- @@ -1043,11 +1068,11 @@ func (m *SupplyIncreaseProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) dAtA[i] = 0x22 } { - size := m.Amount.Size() - i -= size - if _, err := m.Amount.MarshalTo(dAtA[i:]); err != nil { + size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { return 0, err } + i -= size i = encodeVarintProposals(dAtA, i, uint64(size)) } i-- @@ -1090,11 +1115,11 @@ func (m *SupplyDecreaseProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) var l int _ = l { - size := m.Amount.Size() - i -= size - if _, err := m.Amount.MarshalTo(dAtA[i:]); err != nil { + size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { return 0, err } + i -= size i = encodeVarintProposals(dAtA, i, uint64(size)) } i-- diff --git a/x/marker/types/query.pb.go b/x/marker/types/query.pb.go index 5b3c182511..ee6e66533e 100644 --- a/x/marker/types/query.pb.go +++ b/x/marker/types/query.pb.go @@ -11,6 +11,7 @@ import ( github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types1 "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" types2 "github.com/cosmos/cosmos-sdk/x/bank/types" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" @@ -1043,78 +1044,80 @@ func init() { func init() { proto.RegisterFile("provenance/marker/v1/query.proto", fileDescriptor_a76fb1fac8494cdc) } var fileDescriptor_a76fb1fac8494cdc = []byte{ - // 1130 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0x41, 0x6f, 0x1b, 0x45, - 0x14, 0xc7, 0xbd, 0x81, 0x38, 0x61, 0x22, 0x22, 0x34, 0x58, 0x34, 0xd9, 0xa6, 0x4e, 0xb3, 0x8d, - 0x4a, 0x12, 0x9a, 0x5d, 0xdb, 0x48, 0x20, 0xf5, 0x02, 0x76, 0x0b, 0x85, 0x43, 0xab, 0xd4, 0x91, - 0x40, 0xaa, 0x84, 0xa2, 0xf1, 0xee, 0xb0, 0x5d, 0x65, 0x3d, 0xe3, 0xee, 0x8c, 0x0d, 0xa1, 0xea, - 0x05, 0x2e, 0x3d, 0x20, 0x51, 0x89, 0x2b, 0x12, 0x39, 0x21, 0xd4, 0x33, 0x1f, 0xa2, 0xe2, 0x54, - 0x89, 0x4b, 0x4f, 0x80, 0x12, 0x0e, 0x7c, 0x0c, 0xb4, 0x33, 0x6f, 0x6c, 0x2f, 0x5e, 0x6f, 0x5c, - 0x29, 0xa7, 0x76, 0x76, 0xfe, 0xef, 0xbd, 0xdf, 0xbc, 0xf7, 0xf2, 0x9e, 0xd1, 0xe5, 0x5e, 0xc2, - 0x07, 0x94, 0x11, 0xe6, 0x53, 0xaf, 0x4b, 0x92, 0x43, 0x9a, 0x78, 0x83, 0xba, 0xf7, 0xa0, 0x4f, - 0x93, 0x23, 0xb7, 0x97, 0x70, 0xc9, 0x71, 0x65, 0xa4, 0x70, 0xb5, 0xc2, 0x1d, 0xd4, 0xed, 0x4a, - 0xc8, 0x43, 0xae, 0x04, 0x5e, 0xfa, 0x3f, 0xad, 0xb5, 0x57, 0x43, 0xce, 0xc3, 0x98, 0x7a, 0xea, - 0xd4, 0xe9, 0x7f, 0xe9, 0x11, 0x06, 0x6e, 0xec, 0x1d, 0x9f, 0x8b, 0x2e, 0x17, 0x5e, 0x87, 0x08, - 0xaa, 0xfd, 0x7b, 0x83, 0x7a, 0x87, 0x4a, 0x52, 0xf7, 0x7a, 0x24, 0x8c, 0x18, 0x91, 0x11, 0x67, - 0xa0, 0xad, 0x8e, 0x6b, 0x8d, 0xca, 0xe7, 0xd1, 0xe4, 0x3d, 0x3b, 0x1c, 0xde, 0xa7, 0x07, 0x83, - 0xa1, 0xef, 0x0f, 0x34, 0x9f, 0x3e, 0xc0, 0xd5, 0x1a, 0x10, 0x92, 0x5e, 0xe4, 0x11, 0xc6, 0xb8, - 0x54, 0x71, 0xcd, 0xed, 0x46, 0x6e, 0x36, 0xe0, 0xd5, 0x5a, 0x72, 0x35, 0x57, 0x42, 0x7c, 0x9f, - 0x0a, 0x11, 0x26, 0x84, 0x49, 0xad, 0x73, 0x2a, 0x08, 0xdf, 0x4d, 0x5f, 0xb9, 0x47, 0x12, 0xd2, - 0x15, 0x6d, 0xfa, 0xa0, 0x4f, 0x85, 0x74, 0xee, 0xa2, 0x37, 0x33, 0x5f, 0x45, 0x8f, 0x33, 0x41, - 0xf1, 0x75, 0x54, 0xee, 0xa9, 0x2f, 0x2b, 0xd6, 0x65, 0x6b, 0x6b, 0xa9, 0xb1, 0xe6, 0xe6, 0x25, - 0xdd, 0xd5, 0x56, 0xad, 0x57, 0x9f, 0xfd, 0xb9, 0x5e, 0x6a, 0x83, 0x85, 0xf3, 0x93, 0x85, 0xde, - 0x52, 0x3e, 0x9b, 0x71, 0x7c, 0x5b, 0x49, 0x4d, 0xb4, 0xd4, 0xad, 0x90, 0x44, 0xf6, 0xb5, 0xdb, - 0xe5, 0x86, 0x93, 0xef, 0x56, 0x5b, 0xed, 0x2b, 0x65, 0x1b, 0x2c, 0xf0, 0xc7, 0x08, 0x8d, 0xea, - 0xb2, 0x32, 0xa7, 0xb0, 0xae, 0xba, 0x90, 0xcb, 0xb4, 0x30, 0xae, 0x6e, 0x12, 0x48, 0xbf, 0xbb, - 0x47, 0x42, 0x0a, 0x71, 0xdb, 0x63, 0x96, 0xce, 0x2f, 0x16, 0xba, 0x30, 0x81, 0x07, 0xcf, 0x6e, - 0xa1, 0x05, 0x4d, 0x91, 0x02, 0xbe, 0xb2, 0xb5, 0xd4, 0xa8, 0xb8, 0xba, 0x3c, 0xae, 0x69, 0x20, - 0xb7, 0xc9, 0x8e, 0x5a, 0xf8, 0xf7, 0xdf, 0x76, 0x97, 0xb5, 0x6d, 0xd3, 0xf7, 0x79, 0x9f, 0xc9, - 0x4f, 0xdb, 0xc6, 0x10, 0xdf, 0xca, 0xe1, 0x7c, 0xfb, 0x4c, 0x4e, 0x0d, 0x90, 0x01, 0xdd, 0x84, - 0x82, 0xe9, 0x40, 0x26, 0x85, 0xcb, 0x68, 0x2e, 0x0a, 0x54, 0xfa, 0x5e, 0x6b, 0xcf, 0x45, 0x81, - 0xf3, 0x39, 0x14, 0xd0, 0xa8, 0xe0, 0x25, 0x1f, 0xa2, 0xb2, 0x06, 0x82, 0x02, 0xce, 0xfe, 0x10, - 0xb0, 0x73, 0xba, 0xe0, 0xf8, 0x13, 0x1e, 0x07, 0x11, 0x0b, 0xa7, 0xc4, 0x3f, 0xb7, 0xb2, 0x1c, - 0x5b, 0xa8, 0x92, 0x8d, 0x07, 0x2f, 0xf9, 0x00, 0x2d, 0x76, 0x48, 0x9c, 0x76, 0x88, 0x29, 0xca, - 0xa5, 0xfc, 0xae, 0x69, 0x69, 0x15, 0x74, 0xe3, 0xd0, 0xe8, 0xfc, 0x0b, 0xb2, 0xdf, 0xef, 0xf5, - 0xe2, 0xa3, 0x69, 0x05, 0xb9, 0x03, 0x79, 0x33, 0x2a, 0x78, 0xc6, 0xfb, 0xa8, 0x4c, 0xba, 0x69, - 0x86, 0xa1, 0x20, 0xab, 0x19, 0x02, 0x13, 0xfb, 0x06, 0x8f, 0x98, 0xf9, 0x73, 0xd2, 0xf2, 0x61, - 0xd4, 0x8f, 0x84, 0x9f, 0xf0, 0xaf, 0xa6, 0x45, 0xfd, 0x06, 0xa2, 0x1a, 0x15, 0x44, 0xf5, 0x51, - 0x99, 0xaa, 0x2f, 0x90, 0xba, 0x82, 0xa8, 0xb5, 0x34, 0xea, 0xd3, 0xbf, 0xd6, 0xb7, 0xc2, 0x48, - 0xde, 0xef, 0x77, 0x5c, 0x9f, 0x77, 0x61, 0x52, 0xc1, 0x3f, 0xbb, 0x22, 0x38, 0xf4, 0xe4, 0x51, - 0x8f, 0x0a, 0x65, 0x20, 0xda, 0xe0, 0x7a, 0x48, 0xd8, 0x54, 0x33, 0x67, 0x1a, 0xe1, 0x3d, 0x20, - 0x34, 0x2a, 0x20, 0xbc, 0x81, 0x16, 0x89, 0x6e, 0x3d, 0x53, 0xde, 0x8d, 0xfc, 0xf2, 0x6a, 0xbb, - 0x5b, 0xe9, 0x44, 0x33, 0x25, 0x36, 0x86, 0x4e, 0x1d, 0xad, 0x2a, 0xdf, 0x37, 0x29, 0xe3, 0xdd, - 0xdb, 0x54, 0x92, 0x80, 0x48, 0x62, 0x40, 0x2a, 0x68, 0x3e, 0x48, 0xbf, 0x03, 0x8b, 0x3e, 0x38, - 0x5f, 0x20, 0x3b, 0xcf, 0x64, 0xd4, 0x74, 0x5d, 0xf8, 0x06, 0xf5, 0xba, 0x34, 0xca, 0x1c, 0x3b, - 0x1c, 0x66, 0xce, 0x18, 0x1a, 0x22, 0x63, 0xe4, 0x78, 0x66, 0xc8, 0x68, 0xc4, 0x9b, 0x67, 0xf2, - 0xd4, 0xd0, 0xca, 0xa4, 0x01, 0xd0, 0x54, 0xd0, 0xfc, 0x80, 0xc4, 0x7d, 0x6a, 0x2c, 0xd4, 0xc1, - 0x79, 0x62, 0xa1, 0x05, 0xe8, 0x79, 0xbc, 0x82, 0x16, 0x48, 0x10, 0x24, 0x54, 0x08, 0xd0, 0x98, - 0x23, 0x26, 0x68, 0x3e, 0x5d, 0x54, 0x62, 0x65, 0xee, 0xfc, 0x1b, 0x40, 0x7b, 0xbe, 0xbe, 0xf8, - 0xf8, 0x78, 0xbd, 0xf4, 0xef, 0xf1, 0x7a, 0xc9, 0xb9, 0x06, 0x49, 0xbd, 0x43, 0x65, 0x53, 0x08, - 0x2a, 0x3f, 0x4b, 0x41, 0xa7, 0x76, 0x44, 0x82, 0x2e, 0xe6, 0xaa, 0xe1, 0xd5, 0xfb, 0xe8, 0x0d, - 0x46, 0xe5, 0x01, 0x49, 0xaf, 0x0e, 0xd4, 0x93, 0x4d, 0x87, 0x5c, 0xc9, 0xef, 0x90, 0x8c, 0x1f, - 0xa8, 0xc8, 0x32, 0xcb, 0x38, 0x6f, 0xbc, 0x58, 0x42, 0xf3, 0x2a, 0x28, 0xfe, 0xce, 0x42, 0x65, - 0xbd, 0xbf, 0xf0, 0x56, 0xbe, 0xbf, 0xc9, 0x75, 0x69, 0x6f, 0xcf, 0xa0, 0xd4, 0xf8, 0xce, 0xe6, - 0xb7, 0x7f, 0xfc, 0xf3, 0xe3, 0x5c, 0x15, 0xaf, 0x79, 0xb9, 0x0b, 0x5a, 0x2f, 0x4b, 0xfc, 0xbd, - 0x85, 0xd0, 0x68, 0x11, 0xe1, 0x6b, 0x05, 0xfe, 0x27, 0xd6, 0xa9, 0xbd, 0x3b, 0xa3, 0x1a, 0x88, - 0x36, 0x14, 0xd1, 0x45, 0xbc, 0x9a, 0x4f, 0x44, 0xe2, 0x18, 0x3f, 0xb6, 0x50, 0x59, 0x9b, 0x15, - 0x26, 0x25, 0xb3, 0x92, 0x0a, 0x93, 0x92, 0x5d, 0x4b, 0xce, 0xb6, 0x42, 0xb8, 0x82, 0x37, 0xf2, - 0x11, 0x02, 0x2a, 0x49, 0x14, 0x7b, 0x0f, 0xa3, 0xe0, 0x51, 0x9a, 0x99, 0x05, 0xd8, 0x05, 0xb8, - 0x28, 0x42, 0x76, 0x3f, 0xd9, 0x3b, 0xb3, 0x48, 0x81, 0x66, 0x47, 0xd1, 0x6c, 0x62, 0x27, 0x9f, - 0xe6, 0xbe, 0x96, 0x6b, 0x9c, 0x34, 0x33, 0x7a, 0xa4, 0x17, 0x66, 0x26, 0xb3, 0x1b, 0x0a, 0x33, - 0x93, 0xdd, 0x0f, 0x67, 0x65, 0x46, 0x28, 0xf5, 0x08, 0x45, 0xcf, 0xf9, 0x42, 0x94, 0xcc, 0xc2, - 0x28, 0x44, 0xc9, 0x2e, 0x8d, 0xb3, 0x50, 0xf4, 0xd4, 0xd7, 0x28, 0x3f, 0x58, 0xa8, 0xac, 0x07, - 0x73, 0x21, 0x4a, 0x66, 0x33, 0x14, 0xa2, 0x64, 0xb7, 0x83, 0x53, 0x53, 0x28, 0x3b, 0x78, 0xcb, - 0x2b, 0xf8, 0x95, 0xeb, 0x73, 0x26, 0x13, 0x0e, 0x6d, 0xf3, 0xd4, 0x42, 0xaf, 0x67, 0x66, 0x3a, - 0xf6, 0x0a, 0xc2, 0xe5, 0x2d, 0x0c, 0xbb, 0x36, 0xbb, 0x01, 0x60, 0xbe, 0xa7, 0x30, 0x6b, 0xd8, - 0xcd, 0xc7, 0x0c, 0xa9, 0x54, 0x43, 0xde, 0x6c, 0x07, 0xef, 0xa1, 0x3a, 0x3e, 0xc2, 0x3f, 0x5b, - 0x68, 0x69, 0x6c, 0xe0, 0xe3, 0xdd, 0xe2, 0xcc, 0xfc, 0x6f, 0x93, 0xd8, 0xee, 0xac, 0x72, 0xc0, - 0xac, 0x2b, 0xcc, 0x77, 0xf0, 0xf6, 0xd4, 0x6c, 0xa6, 0x26, 0x19, 0xc2, 0x5f, 0x2d, 0xb4, 0x9c, - 0x9d, 0xcf, 0xb8, 0x28, 0x3d, 0xb9, 0x83, 0xdf, 0xae, 0xbf, 0x84, 0xc5, 0x6c, 0xa8, 0x8c, 0x4a, - 0xb5, 0x17, 0xf4, 0x5a, 0x50, 0x95, 0x6f, 0x85, 0xcf, 0x4e, 0xaa, 0xd6, 0xf3, 0x93, 0xaa, 0xf5, - 0xf7, 0x49, 0xd5, 0x7a, 0x72, 0x5a, 0x2d, 0x3d, 0x3f, 0xad, 0x96, 0x5e, 0x9c, 0x56, 0x4b, 0xe8, - 0x42, 0xc4, 0x73, 0x09, 0xf6, 0xac, 0x7b, 0x8d, 0xb1, 0x65, 0x37, 0x92, 0xec, 0x46, 0x7c, 0x3c, - 0xee, 0xd7, 0x26, 0xb2, 0x5a, 0x7e, 0x9d, 0xb2, 0xfa, 0x0d, 0xfd, 0xee, 0x7f, 0x01, 0x00, 0x00, - 0xff, 0xff, 0x90, 0x4e, 0x55, 0xb9, 0xab, 0x0e, 0x00, 0x00, + // 1163 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x96, 0x41, 0x6f, 0x1b, 0x45, + 0x14, 0xc7, 0xbd, 0x81, 0x38, 0x61, 0x02, 0x11, 0x0c, 0x16, 0x4d, 0xb6, 0xa9, 0xd3, 0x6c, 0xa3, + 0x92, 0x98, 0x66, 0x37, 0x0e, 0x12, 0x48, 0xbd, 0x40, 0xd2, 0xd2, 0xc2, 0xa1, 0x55, 0xea, 0x48, + 0x20, 0x55, 0x42, 0xd1, 0x78, 0x77, 0xd8, 0xae, 0xb2, 0x9e, 0x71, 0x77, 0xc6, 0x2e, 0x56, 0xd5, + 0x0b, 0x5c, 0x7a, 0x40, 0xa2, 0x12, 0x37, 0x84, 0x44, 0x4e, 0xa8, 0xea, 0xa9, 0x07, 0x3e, 0x44, + 0xc5, 0xa9, 0x12, 0x97, 0x9e, 0x00, 0x25, 0x48, 0xe5, 0x63, 0xa0, 0x9d, 0x79, 0x63, 0x7b, 0xf1, + 0x7a, 0x63, 0xa4, 0xaa, 0x97, 0xc4, 0xb3, 0xfb, 0x7f, 0xf3, 0x7e, 0xf3, 0xde, 0xf8, 0xfd, 0x8d, + 0xce, 0xb6, 0x13, 0xde, 0xa5, 0x8c, 0x30, 0x9f, 0x7a, 0x2d, 0x92, 0x1c, 0xd0, 0xc4, 0xeb, 0xd6, + 0xbd, 0xdb, 0x1d, 0x9a, 0xf4, 0xdc, 0x76, 0xc2, 0x25, 0xc7, 0x95, 0x81, 0xc2, 0xd5, 0x0a, 0xb7, + 0x5b, 0xb7, 0xdf, 0x22, 0xad, 0x88, 0x71, 0x4f, 0xfd, 0xd5, 0x42, 0xbb, 0x12, 0xf2, 0x90, 0xab, + 0x8f, 0x5e, 0xfa, 0x09, 0x9e, 0x2e, 0x86, 0x9c, 0x87, 0x31, 0xf5, 0xd4, 0xaa, 0xd9, 0xf9, 0xca, + 0x23, 0x0c, 0x76, 0xb6, 0x6b, 0x3e, 0x17, 0x2d, 0x2e, 0xbc, 0x26, 0x11, 0x54, 0xa7, 0xf4, 0xba, + 0xf5, 0x26, 0x95, 0xa4, 0xee, 0xb5, 0x49, 0x18, 0x31, 0x22, 0x23, 0xce, 0x40, 0x5b, 0x1d, 0xd6, + 0x1a, 0x95, 0xcf, 0xa3, 0xd1, 0xf7, 0xec, 0xa0, 0xff, 0x3e, 0x5d, 0x18, 0x0c, 0xfd, 0x7e, 0x5f, + 0xf3, 0xe9, 0x05, 0xbc, 0x5a, 0x02, 0x42, 0xd2, 0x8e, 0x3c, 0xc2, 0x18, 0x97, 0x2a, 0xaf, 0x79, + 0xbb, 0x92, 0x5b, 0x20, 0x28, 0x84, 0x96, 0x9c, 0xcf, 0x95, 0x10, 0xdf, 0xa7, 0x42, 0x84, 0x09, + 0x61, 0x52, 0xeb, 0x9c, 0x0a, 0xc2, 0x37, 0xd2, 0x53, 0xee, 0x92, 0x84, 0xb4, 0x44, 0x83, 0xde, + 0xee, 0x50, 0x21, 0x9d, 0x1b, 0xe8, 0xed, 0xcc, 0x53, 0xd1, 0xe6, 0x4c, 0x50, 0x7c, 0x11, 0x95, + 0xdb, 0xea, 0xc9, 0x82, 0x75, 0xd6, 0x5a, 0x9b, 0xdb, 0x5a, 0x72, 0xf3, 0xfa, 0xe0, 0xea, 0xa8, + 0x9d, 0x57, 0x9f, 0xfc, 0xb1, 0x5c, 0x6a, 0x40, 0x84, 0xf3, 0x93, 0x85, 0xde, 0x51, 0x7b, 0x6e, + 0xc7, 0xf1, 0x35, 0x25, 0x35, 0xd9, 0xd2, 0x6d, 0x85, 0x24, 0xb2, 0xa3, 0xb7, 0x9d, 0xdf, 0x72, + 0xf2, 0xb7, 0xd5, 0x51, 0x7b, 0x4a, 0xd9, 0x80, 0x08, 0x7c, 0x05, 0xa1, 0x41, 0x5f, 0x16, 0xa6, + 0x14, 0xd6, 0x79, 0x17, 0x6a, 0x99, 0x36, 0xc6, 0xd5, 0xf7, 0x06, 0xca, 0xef, 0xee, 0x92, 0x90, + 0x42, 0xde, 0xc6, 0x50, 0xa4, 0xf3, 0x8b, 0x85, 0x4e, 0x8d, 0xe0, 0xc1, 0xb1, 0x77, 0xd0, 0x8c, + 0xa6, 0x48, 0x01, 0x5f, 0x59, 0x9b, 0xdb, 0xaa, 0xb8, 0xba, 0x3d, 0xae, 0xb9, 0x40, 0xee, 0x36, + 0xeb, 0xed, 0xe0, 0xdf, 0x7e, 0xdd, 0x98, 0xd7, 0xb1, 0xdb, 0xbe, 0xcf, 0x3b, 0x4c, 0x7e, 0xd6, + 0x30, 0x81, 0xf8, 0x6a, 0x0e, 0xe7, 0xbb, 0x27, 0x72, 0x6a, 0x80, 0x0c, 0xe8, 0x2a, 0x34, 0x4c, + 0x27, 0x32, 0x25, 0x9c, 0x47, 0x53, 0x51, 0xa0, 0xca, 0xf7, 0x5a, 0x63, 0x2a, 0x0a, 0x9c, 0x2f, + 0xa0, 0x81, 0x46, 0x05, 0x27, 0xf9, 0x18, 0x95, 0x35, 0x10, 0x34, 0x70, 0xf2, 0x83, 0x40, 0x9c, + 0xd3, 0x82, 0x8d, 0x3f, 0xe5, 0x71, 0x10, 0xb1, 0x70, 0x4c, 0xfe, 0x17, 0xd6, 0x96, 0x43, 0x0b, + 0x55, 0xb2, 0xf9, 0xe0, 0x24, 0x1f, 0xa1, 0xd9, 0x26, 0x89, 0xd3, 0x1b, 0x62, 0x9a, 0x72, 0x26, + 0xff, 0xd6, 0xec, 0x68, 0x15, 0xdc, 0xc6, 0x7e, 0xd0, 0x8b, 0x6f, 0xc8, 0x5e, 0xa7, 0xdd, 0x8e, + 0x7b, 0xe3, 0x1a, 0x72, 0x1d, 0xea, 0x66, 0x54, 0x70, 0x8c, 0x0f, 0x51, 0x99, 0xb4, 0xd2, 0x0a, + 0x43, 0x43, 0x16, 0x33, 0x04, 0x26, 0xf7, 0x25, 0x1e, 0x31, 0xf3, 0x75, 0xd2, 0xf2, 0x7e, 0xd6, + 0x4f, 0x84, 0x9f, 0xf0, 0x3b, 0xe3, 0xb2, 0x3e, 0xb0, 0x20, 0xad, 0x91, 0x41, 0xda, 0x1e, 0x2a, + 0x53, 0xf5, 0x04, 0x6a, 0x57, 0x90, 0xf6, 0x4a, 0x9a, 0xf6, 0xd1, 0x9f, 0xcb, 0x6b, 0x61, 0x24, + 0x6f, 0x75, 0x9a, 0xae, 0xcf, 0x5b, 0x30, 0xaa, 0xe0, 0xdf, 0x86, 0x08, 0x0e, 0x3c, 0xd9, 0x6b, + 0x53, 0xa1, 0x02, 0xc4, 0x8f, 0xcf, 0x1f, 0xd7, 0x5e, 0x8f, 0x69, 0x48, 0xfc, 0xde, 0x7e, 0x3a, + 0x0c, 0xc5, 0xc3, 0xe7, 0x8f, 0x6b, 0x56, 0x03, 0x12, 0xf6, 0xc1, 0xb7, 0xd5, 0x28, 0x1a, 0x07, + 0x7e, 0x13, 0xb8, 0x8d, 0x0a, 0xb8, 0x2f, 0xa1, 0x59, 0xa2, 0x6f, 0xa4, 0xe9, 0xfa, 0x4a, 0x7e, + 0xd7, 0x75, 0xdc, 0xd5, 0x74, 0xd0, 0x99, 0xce, 0x9b, 0x40, 0xa7, 0x8e, 0x16, 0xd5, 0xde, 0x97, + 0x29, 0xe3, 0xad, 0x6b, 0x54, 0x92, 0x80, 0x48, 0x62, 0x40, 0x2a, 0x68, 0x3a, 0x48, 0x9f, 0x03, + 0x8b, 0x5e, 0x38, 0x5f, 0x22, 0x3b, 0x2f, 0x64, 0x70, 0x17, 0x5b, 0xf0, 0x0c, 0xda, 0x78, 0x66, + 0x50, 0x4f, 0x76, 0xd0, 0xaf, 0xa7, 0x09, 0x34, 0x44, 0x26, 0xc8, 0xf1, 0xcc, 0xec, 0xd1, 0x88, + 0x97, 0x4f, 0xe4, 0xd9, 0x44, 0x0b, 0xa3, 0x01, 0x40, 0x53, 0x41, 0xd3, 0x5d, 0x12, 0x77, 0xa8, + 0x89, 0x50, 0x8b, 0x74, 0xbe, 0xcd, 0xc0, 0x57, 0x01, 0x2f, 0xa0, 0x19, 0x12, 0x04, 0x09, 0x15, + 0x02, 0x34, 0x66, 0x89, 0xef, 0xa0, 0x69, 0xd5, 0xb2, 0x85, 0xa9, 0x97, 0x75, 0x2d, 0x74, 0xbe, + 0x8b, 0xb3, 0xf7, 0x0f, 0x97, 0x4b, 0xff, 0x1c, 0x2e, 0x97, 0x9c, 0x0b, 0x50, 0xea, 0xeb, 0x54, + 0x6e, 0x0b, 0x41, 0xe5, 0xe7, 0x29, 0xfe, 0xd8, 0x7b, 0x92, 0xa0, 0xd3, 0xb9, 0x6a, 0xa8, 0xc5, + 0x1e, 0x7a, 0x93, 0x51, 0xb9, 0x4f, 0xd2, 0x57, 0xfb, 0xaa, 0x10, 0xe6, 0xde, 0x9c, 0xcb, 0xbf, + 0x37, 0x99, 0x7d, 0xa0, 0x4f, 0xf3, 0x2c, 0xb3, 0xf9, 0xd6, 0xb3, 0x39, 0x34, 0xad, 0x92, 0xe2, + 0x6f, 0x2d, 0x54, 0xd6, 0x66, 0x87, 0xd7, 0xf2, 0xf7, 0x1b, 0xf5, 0x56, 0x7b, 0x7d, 0x02, 0xa5, + 0xc6, 0x77, 0x56, 0xbf, 0xf9, 0xfd, 0xef, 0x1f, 0xa6, 0xaa, 0x78, 0xc9, 0xcb, 0x75, 0x73, 0xed, + 0xac, 0xf8, 0x3b, 0x0b, 0xa1, 0x81, 0x6b, 0xe1, 0x0b, 0x05, 0xfb, 0x8f, 0x78, 0xaf, 0xbd, 0x31, + 0xa1, 0x1a, 0x88, 0x56, 0x14, 0xd1, 0x69, 0xbc, 0x98, 0x4f, 0x44, 0xe2, 0x18, 0xdf, 0xb7, 0x50, + 0x59, 0x87, 0x15, 0x16, 0x25, 0xe3, 0x5f, 0x85, 0x45, 0xc9, 0x7a, 0x98, 0xb3, 0xae, 0x10, 0xce, + 0xe1, 0x95, 0x7c, 0x84, 0x80, 0x4a, 0x12, 0xc5, 0xde, 0xdd, 0x28, 0xb8, 0x97, 0x56, 0x66, 0x06, + 0x8c, 0x03, 0x17, 0x65, 0xc8, 0x9a, 0x99, 0x5d, 0x9b, 0x44, 0x0a, 0x34, 0x35, 0x45, 0xb3, 0x8a, + 0x9d, 0x7c, 0x9a, 0x5b, 0x5a, 0xae, 0x71, 0xd2, 0xca, 0xe8, 0xf9, 0x5f, 0x58, 0x99, 0x8c, 0x91, + 0x14, 0x56, 0x26, 0x6b, 0x26, 0x27, 0x55, 0x46, 0x28, 0xf5, 0x00, 0x45, 0x7b, 0x42, 0x21, 0x4a, + 0xc6, 0x5d, 0x0a, 0x51, 0xb2, 0x06, 0x73, 0x12, 0x8a, 0xf6, 0x02, 0x8d, 0xf2, 0xbd, 0x85, 0xca, + 0x7a, 0x5c, 0x17, 0xa2, 0x64, 0xfc, 0xa2, 0x10, 0x25, 0xeb, 0x19, 0xce, 0xa6, 0x42, 0xa9, 0xe1, + 0x35, 0xaf, 0xe0, 0x27, 0xb1, 0xcf, 0x99, 0x4c, 0x38, 0x5c, 0x9b, 0x47, 0x16, 0x7a, 0x23, 0x33, + 0xe9, 0xb1, 0x57, 0x90, 0x2e, 0xcf, 0x46, 0xec, 0xcd, 0xc9, 0x03, 0x00, 0xf3, 0x03, 0x85, 0xb9, + 0x89, 0xdd, 0x7c, 0xcc, 0x90, 0x4a, 0x35, 0xfa, 0x8d, 0x67, 0x78, 0x77, 0xd5, 0xf2, 0x1e, 0xfe, + 0xd9, 0x42, 0x73, 0x43, 0x36, 0x80, 0x37, 0x8a, 0x2b, 0xf3, 0x1f, 0x7f, 0xb1, 0xdd, 0x49, 0xe5, + 0x80, 0x59, 0x57, 0x98, 0xef, 0xe1, 0xf5, 0xb1, 0xd5, 0x4c, 0x43, 0x32, 0x84, 0x0f, 0x2d, 0x34, + 0x9f, 0x9d, 0xcf, 0xb8, 0xa8, 0x3c, 0xb9, 0x83, 0xdf, 0xae, 0xff, 0x8f, 0x88, 0xc9, 0x50, 0x19, + 0x95, 0xca, 0x17, 0xb4, 0x2d, 0xa8, 0xce, 0xef, 0x84, 0x4f, 0x8e, 0xaa, 0xd6, 0xd3, 0xa3, 0xaa, + 0xf5, 0xd7, 0x51, 0xd5, 0x7a, 0x70, 0x5c, 0x2d, 0x3d, 0x3d, 0xae, 0x96, 0x9e, 0x1d, 0x57, 0x4b, + 0xe8, 0x54, 0xc4, 0x73, 0x09, 0x76, 0xad, 0x9b, 0x5b, 0x43, 0x16, 0x38, 0x90, 0x6c, 0x44, 0x7c, + 0x38, 0xef, 0xd7, 0x26, 0xb3, 0xb2, 0xc4, 0x66, 0x59, 0xfd, 0xe0, 0x7e, 0xff, 0xdf, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x4e, 0x1a, 0x7c, 0xd9, 0xeb, 0x0e, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/marker/types/tx.pb.go b/x/marker/types/tx.pb.go index 6b9d0af04a..5bea3b0109 100644 --- a/x/marker/types/tx.pb.go +++ b/x/marker/types/tx.pb.go @@ -11,6 +11,7 @@ import ( github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types1 "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/cosmos-sdk/types/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/cosmos-sdk/x/bank/types" github_com_cosmos_cosmos_sdk_x_bank_types "github.com/cosmos/cosmos-sdk/x/bank/types" _ "github.com/cosmos/gogoproto/gogoproto" @@ -149,19 +150,19 @@ var xxx_messageInfo_MsgGrantAllowanceResponse proto.InternalMessageInfo // MsgAddMarkerRequest defines the Msg/AddMarker request type. // If being provided as a governance proposal, set the from_address to the gov module's account address. type MsgAddMarkerRequest struct { - Amount github_com_cosmos_cosmos_sdk_types.Coin `protobuf:"bytes,1,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Coin" json:"amount"` - Manager string `protobuf:"bytes,3,opt,name=manager,proto3" json:"manager,omitempty"` - FromAddress string `protobuf:"bytes,4,opt,name=from_address,json=fromAddress,proto3" json:"from_address,omitempty"` - Status MarkerStatus `protobuf:"varint,5,opt,name=status,proto3,enum=provenance.marker.v1.MarkerStatus" json:"status,omitempty"` - MarkerType MarkerType `protobuf:"varint,6,opt,name=marker_type,json=markerType,proto3,enum=provenance.marker.v1.MarkerType" json:"marker_type,omitempty"` - AccessList []AccessGrant `protobuf:"bytes,7,rep,name=access_list,json=accessList,proto3" json:"access_list"` - SupplyFixed bool `protobuf:"varint,8,opt,name=supply_fixed,json=supplyFixed,proto3" json:"supply_fixed,omitempty"` - AllowGovernanceControl bool `protobuf:"varint,9,opt,name=allow_governance_control,json=allowGovernanceControl,proto3" json:"allow_governance_control,omitempty"` - AllowForcedTransfer bool `protobuf:"varint,10,opt,name=allow_forced_transfer,json=allowForcedTransfer,proto3" json:"allow_forced_transfer,omitempty"` - RequiredAttributes []string `protobuf:"bytes,11,rep,name=required_attributes,json=requiredAttributes,proto3" json:"required_attributes,omitempty"` - UsdCents uint64 `protobuf:"varint,12,opt,name=usd_cents,json=usdCents,proto3" json:"usd_cents,omitempty"` // Deprecated: Do not use. - Volume uint64 `protobuf:"varint,13,opt,name=volume,proto3" json:"volume,omitempty"` - UsdMills uint64 `protobuf:"varint,14,opt,name=usd_mills,json=usdMills,proto3" json:"usd_mills,omitempty"` + Amount types1.Coin `protobuf:"bytes,1,opt,name=amount,proto3" json:"amount"` + Manager string `protobuf:"bytes,3,opt,name=manager,proto3" json:"manager,omitempty"` + FromAddress string `protobuf:"bytes,4,opt,name=from_address,json=fromAddress,proto3" json:"from_address,omitempty"` + Status MarkerStatus `protobuf:"varint,5,opt,name=status,proto3,enum=provenance.marker.v1.MarkerStatus" json:"status,omitempty"` + MarkerType MarkerType `protobuf:"varint,6,opt,name=marker_type,json=markerType,proto3,enum=provenance.marker.v1.MarkerType" json:"marker_type,omitempty"` + AccessList []AccessGrant `protobuf:"bytes,7,rep,name=access_list,json=accessList,proto3" json:"access_list"` + SupplyFixed bool `protobuf:"varint,8,opt,name=supply_fixed,json=supplyFixed,proto3" json:"supply_fixed,omitempty"` + AllowGovernanceControl bool `protobuf:"varint,9,opt,name=allow_governance_control,json=allowGovernanceControl,proto3" json:"allow_governance_control,omitempty"` + AllowForcedTransfer bool `protobuf:"varint,10,opt,name=allow_forced_transfer,json=allowForcedTransfer,proto3" json:"allow_forced_transfer,omitempty"` + RequiredAttributes []string `protobuf:"bytes,11,rep,name=required_attributes,json=requiredAttributes,proto3" json:"required_attributes,omitempty"` + UsdCents uint64 `protobuf:"varint,12,opt,name=usd_cents,json=usdCents,proto3" json:"usd_cents,omitempty"` // Deprecated: Do not use. + Volume uint64 `protobuf:"varint,13,opt,name=volume,proto3" json:"volume,omitempty"` + UsdMills uint64 `protobuf:"varint,14,opt,name=usd_mills,json=usdMills,proto3" json:"usd_mills,omitempty"` } func (m *MsgAddMarkerRequest) Reset() { *m = MsgAddMarkerRequest{} } @@ -197,6 +198,13 @@ func (m *MsgAddMarkerRequest) XXX_DiscardUnknown() { var xxx_messageInfo_MsgAddMarkerRequest proto.InternalMessageInfo +func (m *MsgAddMarkerRequest) GetAmount() types1.Coin { + if m != nil { + return m.Amount + } + return types1.Coin{} +} + func (m *MsgAddMarkerRequest) GetManager() string { if m != nil { return m.Manager @@ -877,8 +885,8 @@ var xxx_messageInfo_MsgDeleteResponse proto.InternalMessageInfo // MsgMintRequest defines the Msg/Mint request type type MsgMintRequest struct { - Amount github_com_cosmos_cosmos_sdk_types.Coin `protobuf:"bytes,1,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Coin" json:"amount"` - Administrator string `protobuf:"bytes,2,opt,name=administrator,proto3" json:"administrator,omitempty"` + Amount types1.Coin `protobuf:"bytes,1,opt,name=amount,proto3" json:"amount"` + Administrator string `protobuf:"bytes,2,opt,name=administrator,proto3" json:"administrator,omitempty"` } func (m *MsgMintRequest) Reset() { *m = MsgMintRequest{} } @@ -914,6 +922,13 @@ func (m *MsgMintRequest) XXX_DiscardUnknown() { var xxx_messageInfo_MsgMintRequest proto.InternalMessageInfo +func (m *MsgMintRequest) GetAmount() types1.Coin { + if m != nil { + return m.Amount + } + return types1.Coin{} +} + func (m *MsgMintRequest) GetAdministrator() string { if m != nil { return m.Administrator @@ -960,8 +975,8 @@ var xxx_messageInfo_MsgMintResponse proto.InternalMessageInfo // MsgBurnRequest defines the Msg/Burn request type type MsgBurnRequest struct { - Amount github_com_cosmos_cosmos_sdk_types.Coin `protobuf:"bytes,1,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Coin" json:"amount"` - Administrator string `protobuf:"bytes,2,opt,name=administrator,proto3" json:"administrator,omitempty"` + Amount types1.Coin `protobuf:"bytes,1,opt,name=amount,proto3" json:"amount"` + Administrator string `protobuf:"bytes,2,opt,name=administrator,proto3" json:"administrator,omitempty"` } func (m *MsgBurnRequest) Reset() { *m = MsgBurnRequest{} } @@ -997,6 +1012,13 @@ func (m *MsgBurnRequest) XXX_DiscardUnknown() { var xxx_messageInfo_MsgBurnRequest proto.InternalMessageInfo +func (m *MsgBurnRequest) GetAmount() types1.Coin { + if m != nil { + return m.Amount + } + return types1.Coin{} +} + func (m *MsgBurnRequest) GetAdministrator() string { if m != nil { return m.Administrator @@ -1149,10 +1171,10 @@ var xxx_messageInfo_MsgWithdrawResponse proto.InternalMessageInfo // MsgTransferRequest defines the Msg/Transfer request type type MsgTransferRequest struct { - Amount github_com_cosmos_cosmos_sdk_types.Coin `protobuf:"bytes,1,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Coin" json:"amount"` - Administrator string `protobuf:"bytes,3,opt,name=administrator,proto3" json:"administrator,omitempty"` - FromAddress string `protobuf:"bytes,4,opt,name=from_address,json=fromAddress,proto3" json:"from_address,omitempty"` - ToAddress string `protobuf:"bytes,5,opt,name=to_address,json=toAddress,proto3" json:"to_address,omitempty"` + Amount types1.Coin `protobuf:"bytes,1,opt,name=amount,proto3" json:"amount"` + Administrator string `protobuf:"bytes,3,opt,name=administrator,proto3" json:"administrator,omitempty"` + FromAddress string `protobuf:"bytes,4,opt,name=from_address,json=fromAddress,proto3" json:"from_address,omitempty"` + ToAddress string `protobuf:"bytes,5,opt,name=to_address,json=toAddress,proto3" json:"to_address,omitempty"` } func (m *MsgTransferRequest) Reset() { *m = MsgTransferRequest{} } @@ -1188,6 +1210,13 @@ func (m *MsgTransferRequest) XXX_DiscardUnknown() { var xxx_messageInfo_MsgTransferRequest proto.InternalMessageInfo +func (m *MsgTransferRequest) GetAmount() types1.Coin { + if m != nil { + return m.Amount + } + return types1.Coin{} +} + func (m *MsgTransferRequest) GetAdministrator() string { if m != nil { return m.Administrator @@ -1414,18 +1443,18 @@ var xxx_messageInfo_MsgSetDenomMetadataResponse proto.InternalMessageInfo // MsgAddFinalizeActivateMarkerRequest defines the Msg/AddFinalizeActivateMarker request type type MsgAddFinalizeActivateMarkerRequest struct { - Amount github_com_cosmos_cosmos_sdk_types.Coin `protobuf:"bytes,1,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Coin" json:"amount"` - Manager string `protobuf:"bytes,3,opt,name=manager,proto3" json:"manager,omitempty"` - FromAddress string `protobuf:"bytes,4,opt,name=from_address,json=fromAddress,proto3" json:"from_address,omitempty"` - MarkerType MarkerType `protobuf:"varint,5,opt,name=marker_type,json=markerType,proto3,enum=provenance.marker.v1.MarkerType" json:"marker_type,omitempty"` - AccessList []AccessGrant `protobuf:"bytes,6,rep,name=access_list,json=accessList,proto3" json:"access_list"` - SupplyFixed bool `protobuf:"varint,7,opt,name=supply_fixed,json=supplyFixed,proto3" json:"supply_fixed,omitempty"` - AllowGovernanceControl bool `protobuf:"varint,8,opt,name=allow_governance_control,json=allowGovernanceControl,proto3" json:"allow_governance_control,omitempty"` - AllowForcedTransfer bool `protobuf:"varint,9,opt,name=allow_forced_transfer,json=allowForcedTransfer,proto3" json:"allow_forced_transfer,omitempty"` - RequiredAttributes []string `protobuf:"bytes,10,rep,name=required_attributes,json=requiredAttributes,proto3" json:"required_attributes,omitempty"` - UsdCents uint64 `protobuf:"varint,11,opt,name=usd_cents,json=usdCents,proto3" json:"usd_cents,omitempty"` // Deprecated: Do not use. - Volume uint64 `protobuf:"varint,12,opt,name=volume,proto3" json:"volume,omitempty"` - UsdMills uint64 `protobuf:"varint,13,opt,name=usd_mills,json=usdMills,proto3" json:"usd_mills,omitempty"` + Amount types1.Coin `protobuf:"bytes,1,opt,name=amount,proto3" json:"amount"` + Manager string `protobuf:"bytes,3,opt,name=manager,proto3" json:"manager,omitempty"` + FromAddress string `protobuf:"bytes,4,opt,name=from_address,json=fromAddress,proto3" json:"from_address,omitempty"` + MarkerType MarkerType `protobuf:"varint,5,opt,name=marker_type,json=markerType,proto3,enum=provenance.marker.v1.MarkerType" json:"marker_type,omitempty"` + AccessList []AccessGrant `protobuf:"bytes,6,rep,name=access_list,json=accessList,proto3" json:"access_list"` + SupplyFixed bool `protobuf:"varint,7,opt,name=supply_fixed,json=supplyFixed,proto3" json:"supply_fixed,omitempty"` + AllowGovernanceControl bool `protobuf:"varint,8,opt,name=allow_governance_control,json=allowGovernanceControl,proto3" json:"allow_governance_control,omitempty"` + AllowForcedTransfer bool `protobuf:"varint,9,opt,name=allow_forced_transfer,json=allowForcedTransfer,proto3" json:"allow_forced_transfer,omitempty"` + RequiredAttributes []string `protobuf:"bytes,10,rep,name=required_attributes,json=requiredAttributes,proto3" json:"required_attributes,omitempty"` + UsdCents uint64 `protobuf:"varint,11,opt,name=usd_cents,json=usdCents,proto3" json:"usd_cents,omitempty"` // Deprecated: Do not use. + Volume uint64 `protobuf:"varint,12,opt,name=volume,proto3" json:"volume,omitempty"` + UsdMills uint64 `protobuf:"varint,13,opt,name=usd_mills,json=usdMills,proto3" json:"usd_mills,omitempty"` } func (m *MsgAddFinalizeActivateMarkerRequest) Reset() { *m = MsgAddFinalizeActivateMarkerRequest{} } @@ -1461,6 +1490,13 @@ func (m *MsgAddFinalizeActivateMarkerRequest) XXX_DiscardUnknown() { var xxx_messageInfo_MsgAddFinalizeActivateMarkerRequest proto.InternalMessageInfo +func (m *MsgAddFinalizeActivateMarkerRequest) GetAmount() types1.Coin { + if m != nil { + return m.Amount + } + return types1.Coin{} +} + func (m *MsgAddFinalizeActivateMarkerRequest) GetManager() string { if m != nil { return m.Manager @@ -1579,9 +1615,9 @@ var xxx_messageInfo_MsgAddFinalizeActivateMarkerResponse proto.InternalMessageIn // MsgSupplyIncreaseProposalRequest defines a governance proposal to administer a marker and increase total supply of // the marker through minting coin and placing it within the marker or assigning it directly to an account type MsgSupplyIncreaseProposalRequest struct { - Amount github_com_cosmos_cosmos_sdk_types.Coin `protobuf:"bytes,1,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Coin" json:"amount"` - TargetAddress string `protobuf:"bytes,2,opt,name=target_address,json=targetAddress,proto3" json:"target_address,omitempty"` - Authority string `protobuf:"bytes,3,opt,name=authority,proto3" json:"authority,omitempty"` + Amount types1.Coin `protobuf:"bytes,1,opt,name=amount,proto3" json:"amount"` + TargetAddress string `protobuf:"bytes,2,opt,name=target_address,json=targetAddress,proto3" json:"target_address,omitempty"` + Authority string `protobuf:"bytes,3,opt,name=authority,proto3" json:"authority,omitempty"` } func (m *MsgSupplyIncreaseProposalRequest) Reset() { *m = MsgSupplyIncreaseProposalRequest{} } @@ -1617,6 +1653,13 @@ func (m *MsgSupplyIncreaseProposalRequest) XXX_DiscardUnknown() { var xxx_messageInfo_MsgSupplyIncreaseProposalRequest proto.InternalMessageInfo +func (m *MsgSupplyIncreaseProposalRequest) GetAmount() types1.Coin { + if m != nil { + return m.Amount + } + return types1.Coin{} +} + func (m *MsgSupplyIncreaseProposalRequest) GetTargetAddress() string { if m != nil { return m.TargetAddress @@ -2241,131 +2284,132 @@ func init() { func init() { proto.RegisterFile("provenance/marker/v1/tx.proto", fileDescriptor_bcb203fb73175ed3) } var fileDescriptor_bcb203fb73175ed3 = []byte{ - // 1972 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x59, 0xcf, 0x6f, 0x1b, 0x59, - 0x1d, 0xef, 0x34, 0x89, 0x1b, 0x7f, 0xdd, 0xa6, 0xcd, 0xab, 0x93, 0x4c, 0xa6, 0xc4, 0x71, 0xd2, - 0x5f, 0xde, 0x65, 0xe3, 0x69, 0xbc, 0x50, 0xba, 0x11, 0x12, 0xb2, 0x13, 0x5a, 0x2a, 0x30, 0x5a, - 0x39, 0x0b, 0x08, 0x2e, 0xd6, 0x78, 0xe6, 0x65, 0x3a, 0x8a, 0x3d, 0xcf, 0x9d, 0xf7, 0xec, 0x36, - 0x2b, 0x71, 0x81, 0xd3, 0x9e, 0x80, 0x3d, 0x70, 0xe1, 0xc2, 0x89, 0xc3, 0x1e, 0x10, 0x87, 0x15, - 0x7f, 0x00, 0xa7, 0x15, 0x08, 0x69, 0xc5, 0x09, 0x71, 0x58, 0x50, 0x2b, 0xc1, 0x8a, 0x33, 0x17, - 0x2e, 0x08, 0xbd, 0x1f, 0x33, 0xf6, 0xd8, 0x33, 0x93, 0xa4, 0x4d, 0x77, 0xb5, 0xa7, 0x64, 0xde, - 0xf7, 0xf7, 0xe7, 0x7d, 0xde, 0xbc, 0xef, 0x77, 0x0c, 0x6b, 0xfd, 0x80, 0x0c, 0xb1, 0x6f, 0xf9, - 0x36, 0x36, 0x7b, 0x56, 0x70, 0x88, 0x03, 0x73, 0xb8, 0x6d, 0xb2, 0xa7, 0xd5, 0x7e, 0x40, 0x18, - 0x41, 0xc5, 0x91, 0xb8, 0x2a, 0xc5, 0xd5, 0xe1, 0xb6, 0xb1, 0xea, 0x12, 0xe2, 0x76, 0xb1, 0x29, - 0x74, 0x3a, 0x83, 0x03, 0xd3, 0xf2, 0x8f, 0xa4, 0x81, 0xb1, 0x6a, 0x13, 0xda, 0x23, 0xb4, 0x2d, - 0x9e, 0x4c, 0xf9, 0xa0, 0x44, 0x45, 0x97, 0xb8, 0x44, 0xae, 0xf3, 0xff, 0xd4, 0x6a, 0x49, 0xea, - 0x98, 0x1d, 0x8b, 0x62, 0x73, 0xb8, 0xdd, 0xc1, 0xcc, 0xda, 0x36, 0x6d, 0xe2, 0xf9, 0x53, 0x72, - 0xff, 0x30, 0x92, 0xf3, 0x07, 0x25, 0x5f, 0x51, 0xf2, 0x1e, 0x75, 0x79, 0xe6, 0x3d, 0xea, 0x2a, - 0xc1, 0x4d, 0xaf, 0x63, 0x9b, 0x56, 0xbf, 0xdf, 0xf5, 0x6c, 0x8b, 0x79, 0xc4, 0xa7, 0x26, 0x0b, - 0x2c, 0x9f, 0x1e, 0xc4, 0x2b, 0x34, 0x36, 0x12, 0x01, 0x50, 0xb5, 0x4a, 0x95, 0x5b, 0x89, 0x2a, - 0x96, 0x6d, 0x63, 0x4a, 0xdd, 0xc0, 0xf2, 0x99, 0xd4, 0xdb, 0xfc, 0x93, 0x06, 0x7a, 0x93, 0xba, - 0x0f, 0xf8, 0x52, 0xbd, 0xdb, 0x25, 0x4f, 0xb8, 0x45, 0x0b, 0x3f, 0x1e, 0x60, 0xca, 0x50, 0x11, - 0xe6, 0x1c, 0xec, 0x93, 0x9e, 0xae, 0x95, 0xb5, 0x4a, 0xbe, 0x25, 0x1f, 0xd0, 0x0d, 0xb8, 0x64, - 0x39, 0x3d, 0xcf, 0xf7, 0x28, 0x0b, 0x2c, 0x46, 0x02, 0xfd, 0xbc, 0x90, 0xc6, 0x17, 0x91, 0x0e, - 0x17, 0x44, 0x1c, 0x8c, 0xf5, 0x19, 0x21, 0x0f, 0x1f, 0xd1, 0x37, 0x21, 0x6f, 0x85, 0x91, 0xf4, - 0xd9, 0xb2, 0x56, 0x29, 0xd4, 0x8a, 0x55, 0xb9, 0x3b, 0xd5, 0x70, 0x77, 0xaa, 0x75, 0xff, 0xa8, - 0xb1, 0xf8, 0xc7, 0x0f, 0xb7, 0x2e, 0xdd, 0xc7, 0x38, 0xca, 0xeb, 0x61, 0x6b, 0x64, 0xb9, 0x83, - 0x7e, 0xf2, 0xaf, 0xdf, 0xbd, 0x1e, 0x0f, 0xba, 0x79, 0x0d, 0x56, 0x13, 0x8a, 0xa1, 0x7d, 0xe2, - 0x53, 0xbc, 0xf9, 0xc1, 0x1c, 0x5c, 0x6d, 0x52, 0xb7, 0xee, 0x38, 0x4d, 0x01, 0x48, 0x58, 0x65, - 0x07, 0x72, 0x56, 0x8f, 0x0c, 0x7c, 0x26, 0xca, 0x2c, 0xd4, 0x56, 0xab, 0x8a, 0x02, 0x7c, 0x7b, - 0xab, 0x6a, 0xfb, 0xaa, 0xbb, 0xc4, 0xf3, 0x1b, 0xe6, 0x47, 0x9f, 0xac, 0x9f, 0xfb, 0xdb, 0x27, - 0xeb, 0xb7, 0x5d, 0x8f, 0x3d, 0x1a, 0x74, 0xaa, 0x36, 0xe9, 0x29, 0xbe, 0xa8, 0x3f, 0x5b, 0xd4, - 0x39, 0x34, 0xd9, 0x51, 0x1f, 0x53, 0x61, 0xd0, 0x52, 0x9e, 0x39, 0x1a, 0x3d, 0xcb, 0xb7, 0x5c, - 0x1c, 0x84, 0x68, 0xa8, 0x47, 0xb4, 0x01, 0x17, 0x0f, 0x02, 0xd2, 0x6b, 0x5b, 0x8e, 0x13, 0x60, - 0x4a, 0x05, 0x20, 0xf9, 0x56, 0x81, 0xaf, 0xd5, 0xe5, 0x12, 0xda, 0x81, 0x1c, 0x65, 0x16, 0x1b, - 0x50, 0x7d, 0xae, 0xac, 0x55, 0x16, 0x6a, 0x9b, 0xd5, 0x24, 0x86, 0x57, 0x65, 0x55, 0xfb, 0x42, - 0xb3, 0xa5, 0x2c, 0x50, 0x1d, 0x0a, 0x52, 0xa3, 0xcd, 0xb3, 0xd2, 0x73, 0xc2, 0x41, 0x39, 0xcb, - 0xc1, 0x3b, 0x47, 0x7d, 0xdc, 0x82, 0x5e, 0xf4, 0x3f, 0xfa, 0x16, 0x14, 0x24, 0x6f, 0xda, 0x5d, - 0x8f, 0x32, 0xfd, 0x42, 0x79, 0xa6, 0x52, 0xa8, 0x6d, 0x24, 0xbb, 0xa8, 0x0b, 0x45, 0xb1, 0x01, - 0x8d, 0x59, 0x0e, 0x56, 0x0b, 0xa4, 0xed, 0x77, 0x3c, 0xca, 0x78, 0xad, 0x74, 0xd0, 0xef, 0x77, - 0x8f, 0xda, 0x07, 0xde, 0x53, 0xec, 0xe8, 0xf3, 0x65, 0xad, 0x32, 0xdf, 0x2a, 0xc8, 0xb5, 0xfb, - 0x7c, 0x09, 0xdd, 0x03, 0x5d, 0x6c, 0x71, 0xdb, 0x25, 0x43, 0x1c, 0x08, 0xf7, 0x6d, 0x9b, 0xf8, - 0x2c, 0x20, 0x5d, 0x3d, 0x2f, 0xd4, 0x97, 0x85, 0xfc, 0x41, 0x24, 0xde, 0x95, 0x52, 0x54, 0x83, - 0x25, 0x69, 0x79, 0x40, 0x02, 0x1b, 0x3b, 0xed, 0xf0, 0xe4, 0xe8, 0x20, 0xcc, 0xae, 0x0a, 0xe1, - 0x7d, 0x21, 0x7b, 0x47, 0x89, 0x90, 0x09, 0x57, 0x03, 0xfc, 0x78, 0xe0, 0x05, 0xd8, 0x69, 0x5b, - 0x8c, 0x05, 0x5e, 0x67, 0xc0, 0x30, 0xd5, 0x0b, 0xe5, 0x99, 0x4a, 0xbe, 0x85, 0x42, 0x51, 0x3d, - 0x92, 0xa0, 0x75, 0xc8, 0x0f, 0xa8, 0xd3, 0xb6, 0xb1, 0xcf, 0xa8, 0x7e, 0xb1, 0xac, 0x55, 0x66, - 0x1b, 0xe7, 0x75, 0xad, 0x35, 0x3f, 0xa0, 0xce, 0x2e, 0x5f, 0x43, 0xcb, 0x90, 0x1b, 0x92, 0xee, - 0xa0, 0x87, 0xf5, 0x4b, 0x5c, 0xda, 0x52, 0x4f, 0xe8, 0x9a, 0x34, 0xec, 0x79, 0xdd, 0x2e, 0xd5, - 0x17, 0x84, 0x88, 0x1b, 0x35, 0xf9, 0xf3, 0xce, 0x22, 0xa7, 0x72, 0x8c, 0x06, 0x9b, 0xcb, 0x50, - 0x8c, 0x73, 0x55, 0x91, 0xf8, 0x37, 0x5a, 0x48, 0x62, 0x09, 0xf5, 0x59, 0x1c, 0xd5, 0x6f, 0x40, - 0x4e, 0x6e, 0x92, 0x3e, 0x73, 0xba, 0xbd, 0x55, 0x66, 0x89, 0x47, 0x31, 0x2a, 0x20, 0xcc, 0x53, - 0x15, 0xf0, 0x0b, 0x0d, 0x96, 0x9b, 0xd4, 0xdd, 0xc3, 0x5d, 0xcc, 0xf0, 0xd9, 0xd5, 0x70, 0x1b, - 0x2e, 0x07, 0xb8, 0x47, 0x86, 0x7c, 0x23, 0xd5, 0x49, 0x92, 0x07, 0x6d, 0x41, 0x2d, 0xab, 0xc3, - 0x94, 0x98, 0xeb, 0x2a, 0xac, 0x4c, 0xa5, 0xa4, 0xd2, 0x75, 0x00, 0x35, 0xa9, 0x7b, 0xdf, 0xf3, - 0xad, 0xae, 0xf7, 0xee, 0x59, 0xbc, 0x18, 0x13, 0x13, 0x58, 0x12, 0x9b, 0x3a, 0x8a, 0x12, 0x0b, - 0x5e, 0xb7, 0x99, 0x37, 0xb4, 0xd8, 0x2b, 0x0e, 0x3e, 0x8a, 0xa2, 0x82, 0x77, 0xe0, 0x4a, 0x93, - 0xba, 0xbb, 0x9c, 0x04, 0xdd, 0x57, 0x15, 0xfa, 0x2a, 0x2c, 0x8e, 0xc5, 0x88, 0x05, 0x96, 0xbb, - 0xf1, 0x6a, 0x03, 0x87, 0x31, 0x54, 0xe0, 0xdf, 0x6a, 0xb0, 0xd0, 0xa4, 0x6e, 0xd3, 0xf3, 0xd9, - 0x67, 0x79, 0x37, 0xbc, 0x78, 0x15, 0x8b, 0x70, 0x39, 0xca, 0x37, 0x5e, 0x43, 0x63, 0x10, 0xf8, - 0x5f, 0xa4, 0x1a, 0x64, 0xbe, 0xaa, 0x86, 0x4f, 0x35, 0xc1, 0xfb, 0x1f, 0x78, 0xec, 0x91, 0x13, - 0x58, 0x4f, 0xce, 0xe2, 0xf5, 0xb0, 0x06, 0xc0, 0xc8, 0xc4, 0x9b, 0x21, 0xcf, 0x48, 0x78, 0xc3, - 0xda, 0x11, 0x44, 0xb3, 0xe2, 0x0d, 0x98, 0x01, 0xd1, 0x1d, 0x0e, 0xd1, 0x07, 0x7f, 0x5f, 0xaf, - 0x9c, 0x10, 0x22, 0x1a, 0x62, 0x94, 0x71, 0xf6, 0x46, 0x95, 0x2a, 0x04, 0xfe, 0x23, 0x11, 0x08, - 0xef, 0xa9, 0xcf, 0x75, 0x27, 0x67, 0x92, 0xf0, 0x3c, 0x41, 0xd7, 0x12, 0x87, 0x7c, 0x6e, 0x02, - 0xf2, 0x0c, 0x34, 0x46, 0x55, 0x2b, 0x34, 0xfe, 0xa9, 0xc1, 0x52, 0x93, 0xba, 0x0f, 0x3b, 0xf6, - 0x24, 0x20, 0xef, 0x6b, 0x30, 0x1f, 0xdd, 0xf3, 0x12, 0x93, 0xd7, 0xaa, 0x5e, 0xc7, 0xae, 0x8e, - 0xf7, 0xd0, 0xd5, 0x50, 0x43, 0xf4, 0x38, 0x23, 0xff, 0x8d, 0x6f, 0x2b, 0x8c, 0x76, 0xa7, 0x31, - 0xf2, 0x3a, 0xf6, 0x96, 0x4b, 0xcc, 0xe1, 0x3d, 0xb3, 0x47, 0x9c, 0x41, 0x17, 0x53, 0xde, 0x95, - 0x8f, 0x75, 0xe3, 0x12, 0xb8, 0xf1, 0x64, 0xa3, 0x3c, 0x5e, 0xe2, 0x2c, 0xe8, 0xe2, 0x6a, 0x8c, - 0xd5, 0xa9, 0x20, 0xf8, 0xb3, 0x06, 0x46, 0x93, 0xba, 0xfb, 0x98, 0xed, 0x71, 0xd6, 0x37, 0x31, - 0xb3, 0x1c, 0x8b, 0x59, 0x21, 0x0e, 0x03, 0x98, 0xef, 0xa9, 0x25, 0x05, 0xc3, 0xda, 0x88, 0x1a, - 0xfe, 0x61, 0x44, 0x8d, 0xd0, 0xae, 0xb1, 0xa3, 0x4a, 0xaf, 0x65, 0xd2, 0xe3, 0xa9, 0x9c, 0x60, - 0x54, 0xb1, 0x61, 0xcc, 0x28, 0xd4, 0x4b, 0x54, 0xba, 0x06, 0xd7, 0x12, 0xcb, 0x51, 0xe5, 0xfe, - 0x6f, 0x16, 0xae, 0xcb, 0xee, 0x21, 0xbc, 0x13, 0xc3, 0xeb, 0xe9, 0x0b, 0xd6, 0xba, 0x4f, 0xb4, - 0xdf, 0x73, 0x2f, 0xdf, 0x7e, 0xe7, 0xce, 0xae, 0xfd, 0xbe, 0x70, 0xba, 0xf6, 0x7b, 0xfe, 0xc5, - 0xda, 0xef, 0xfc, 0xa9, 0xdb, 0x6f, 0x38, 0x59, 0xfb, 0x5d, 0xc8, 0x6c, 0xbf, 0x2f, 0xa6, 0xb7, - 0xdf, 0x97, 0x8e, 0x6f, 0xbf, 0x6f, 0xc1, 0x8d, 0x6c, 0xfe, 0x29, 0xa2, 0xfe, 0x57, 0x83, 0x32, - 0x27, 0xb2, 0x80, 0xf0, 0xa1, 0x6f, 0x07, 0xd8, 0xa2, 0xf8, 0xed, 0x80, 0xf4, 0x09, 0xb5, 0xba, - 0x9f, 0x25, 0x4b, 0x6f, 0xc2, 0x02, 0xb3, 0x02, 0x17, 0xb3, 0x88, 0x8d, 0xea, 0x2c, 0xca, 0xd5, - 0x90, 0x8f, 0x77, 0x21, 0x6f, 0x0d, 0xd8, 0x23, 0x12, 0x78, 0xec, 0x48, 0xd2, 0xb9, 0xa1, 0xff, - 0xe5, 0xc3, 0xad, 0xa2, 0x4a, 0x48, 0xa9, 0xed, 0xb3, 0xc0, 0xf3, 0xdd, 0xd6, 0x48, 0x75, 0x07, - 0x7d, 0xfa, 0xeb, 0x75, 0x8d, 0xc3, 0x34, 0x5a, 0xdb, 0xbc, 0x0e, 0x1b, 0x19, 0xa5, 0x2b, 0x80, - 0x7e, 0x79, 0x1e, 0x36, 0x9b, 0xd4, 0xfd, 0x5e, 0xdf, 0x51, 0x1d, 0x6c, 0x7c, 0x47, 0xb3, 0xef, - 0xf6, 0xaf, 0x83, 0x21, 0xbb, 0xf7, 0x76, 0x12, 0x4d, 0xce, 0x0b, 0x9a, 0xe8, 0x52, 0x63, 0xda, - 0x35, 0xba, 0x0b, 0x2b, 0x96, 0xe3, 0x24, 0x9a, 0xce, 0x08, 0xd3, 0x25, 0xcb, 0x71, 0x12, 0xec, - 0x1e, 0x00, 0x0a, 0xc9, 0xdb, 0x1e, 0x81, 0x35, 0x7b, 0x0c, 0x58, 0x8b, 0xa1, 0x4d, 0x3d, 0x02, - 0xed, 0x5a, 0x08, 0x5a, 0x82, 0xbf, 0xcd, 0x9b, 0xe2, 0x0d, 0x97, 0x8e, 0x8b, 0xc2, 0xef, 0xf7, - 0x1a, 0x94, 0x22, 0xbd, 0xf8, 0xf1, 0xc9, 0xc6, 0x2e, 0xf5, 0x3c, 0x9e, 0x4f, 0x3f, 0x8f, 0x67, - 0xc9, 0x8e, 0x0d, 0x58, 0x4f, 0xcd, 0x5b, 0xd5, 0xf6, 0x9e, 0xfc, 0xf6, 0xb4, 0x8f, 0x59, 0xdd, - 0xb6, 0x39, 0x8b, 0xf7, 0xc6, 0xae, 0xb4, 0xe4, 0xaa, 0x8a, 0x30, 0x37, 0xb4, 0xba, 0x03, 0xac, - 0xd8, 0x2d, 0x1f, 0xd0, 0x1d, 0xc8, 0x51, 0xcf, 0xf5, 0xc3, 0x37, 0x74, 0x46, 0xd2, 0x4a, 0x6f, - 0xe7, 0x72, 0x98, 0xb1, 0x5a, 0x50, 0x5f, 0x8e, 0x26, 0x53, 0x51, 0x89, 0xfe, 0x5b, 0x83, 0x2f, - 0x45, 0xc5, 0xec, 0x63, 0xdf, 0xd9, 0xc3, 0xfe, 0x11, 0x7f, 0xa5, 0x66, 0x27, 0x7b, 0x17, 0x56, - 0x14, 0x7d, 0x1d, 0xec, 0x7b, 0xa3, 0xc9, 0x34, 0xe2, 0xee, 0x92, 0x14, 0xef, 0x09, 0x69, 0x3d, - 0x14, 0xa2, 0x3b, 0x50, 0xe4, 0xc4, 0x9d, 0x32, 0x92, 0xac, 0x45, 0x96, 0xe3, 0x4c, 0x5a, 0xc4, - 0x36, 0x6e, 0xf6, 0xe5, 0x36, 0x6e, 0x1d, 0xd6, 0x52, 0x6a, 0x55, 0x68, 0xfc, 0x41, 0x13, 0x97, - 0x77, 0xdd, 0x71, 0xbe, 0x8b, 0x59, 0x9d, 0x52, 0xcc, 0xbe, 0xcf, 0x77, 0xe1, 0x4c, 0xc6, 0xf8, - 0x7d, 0xb8, 0xe2, 0xf3, 0x77, 0x18, 0xf7, 0xda, 0x16, 0x9b, 0x1b, 0x7e, 0x94, 0xb8, 0x9e, 0x7c, - 0xe3, 0xc5, 0x52, 0x50, 0x77, 0xde, 0x82, 0x1f, 0xcb, 0x2b, 0xb1, 0x01, 0x29, 0x89, 0x1d, 0x4d, - 0xa8, 0x41, 0x16, 0x59, 0xfb, 0x15, 0x82, 0x99, 0x26, 0x75, 0x51, 0x1b, 0xe6, 0xc3, 0x2b, 0x00, - 0x55, 0x52, 0xee, 0xed, 0xa9, 0xef, 0x03, 0xc6, 0x6b, 0x27, 0xd0, 0x94, 0x81, 0x78, 0x80, 0xf0, - 0x6e, 0xc9, 0x08, 0x30, 0xf1, 0x0d, 0x20, 0x23, 0xc0, 0xe4, 0x1c, 0x8f, 0x7e, 0x08, 0x39, 0x39, - 0x60, 0xa3, 0x5b, 0xa9, 0x46, 0xb1, 0x29, 0xdf, 0xb8, 0x7d, 0xac, 0xde, 0xc8, 0xb5, 0x1c, 0xa1, - 0x33, 0x5c, 0xc7, 0xe6, 0xf8, 0x0c, 0xd7, 0xf1, 0x59, 0x1c, 0xed, 0xc3, 0x2c, 0x9f, 0x6b, 0xd1, - 0x8d, 0x54, 0x83, 0xb1, 0x31, 0xdd, 0xb8, 0x79, 0x8c, 0xd6, 0xc8, 0x29, 0x1f, 0x34, 0x33, 0x9c, - 0x8e, 0xcd, 0xcd, 0x19, 0x4e, 0xc7, 0xa7, 0x55, 0xd4, 0x81, 0x7c, 0xf4, 0x95, 0x0b, 0x65, 0xec, - 0xcb, 0xc4, 0x17, 0x3b, 0xe3, 0xf5, 0x93, 0xa8, 0xaa, 0x18, 0x87, 0x70, 0x71, 0xfc, 0xeb, 0x14, - 0x7a, 0xe3, 0x18, 0x18, 0xe3, 0x91, 0xb6, 0x4e, 0xa8, 0x3d, 0x62, 0x64, 0x38, 0x90, 0x66, 0x30, - 0x72, 0x62, 0x3a, 0xcf, 0x60, 0xe4, 0xe4, 0x74, 0xab, 0x10, 0x93, 0x9d, 0x54, 0x36, 0x62, 0xb1, - 0x6e, 0x3f, 0x1b, 0xb1, 0x78, 0x63, 0xc6, 0x8b, 0x88, 0xae, 0xb5, 0xf4, 0x22, 0x26, 0xae, 0xd2, - 0x8c, 0x22, 0x26, 0x2f, 0x2f, 0xf4, 0x08, 0x0a, 0x63, 0x83, 0x1a, 0xfa, 0x72, 0xaa, 0xe5, 0xf4, - 0xd8, 0x6a, 0xbc, 0x71, 0x32, 0x65, 0x15, 0xe9, 0x09, 0x5c, 0x99, 0x1c, 0x94, 0xd0, 0x9d, 0x54, - 0x0f, 0x29, 0x23, 0xa2, 0xb1, 0x7d, 0x0a, 0x0b, 0x15, 0xf8, 0x31, 0x2c, 0xc4, 0x7f, 0x4a, 0x41, - 0xd5, 0x54, 0x27, 0x89, 0x3f, 0x20, 0x19, 0xe6, 0x89, 0xf5, 0x55, 0xc8, 0xf7, 0x35, 0x58, 0x4d, - 0xed, 0xba, 0xd1, 0x5b, 0x59, 0x04, 0xc8, 0x9c, 0x14, 0x8d, 0x9d, 0x17, 0x31, 0x55, 0x49, 0xbd, - 0xa7, 0xc1, 0x72, 0x72, 0x9b, 0x8b, 0xee, 0xa6, 0xa3, 0x9a, 0x35, 0x12, 0x18, 0x5f, 0x3b, 0xb5, - 0x9d, 0xca, 0xe5, 0x67, 0x1a, 0xe8, 0x69, 0x4d, 0x23, 0xba, 0x97, 0xea, 0xf5, 0x98, 0xfe, 0xdb, - 0x78, 0xeb, 0x05, 0x2c, 0x55, 0x46, 0x3f, 0xd5, 0xa0, 0x98, 0xd4, 0xe6, 0xa1, 0xaf, 0x1c, 0xe3, - 0x33, 0xb1, 0x9b, 0x35, 0xbe, 0x7a, 0x4a, 0xab, 0x11, 0x57, 0xe3, 0xcd, 0x5b, 0x06, 0x57, 0x13, - 0x1b, 0xce, 0x0c, 0xae, 0x26, 0x77, 0x85, 0xe8, 0xc7, 0x80, 0xa6, 0xbb, 0x24, 0x54, 0x3b, 0x26, - 0xff, 0x84, 0xf6, 0xd1, 0x78, 0xf3, 0x54, 0x36, 0x2a, 0xfc, 0xbb, 0xb0, 0x38, 0xd5, 0xbe, 0xa0, - 0xed, 0x2c, 0x9a, 0x27, 0xb6, 0x6b, 0x46, 0xed, 0x34, 0x26, 0x32, 0x76, 0xc3, 0xfd, 0xe8, 0x59, - 0x49, 0xfb, 0xf8, 0x59, 0x49, 0xfb, 0xc7, 0xb3, 0x92, 0xf6, 0xf3, 0xe7, 0xa5, 0x73, 0x1f, 0x3f, - 0x2f, 0x9d, 0xfb, 0xeb, 0xf3, 0xd2, 0x39, 0x58, 0xf1, 0x48, 0xa2, 0xbf, 0xb7, 0xb5, 0x1f, 0x8d, - 0x7f, 0x6b, 0x1a, 0xa9, 0x6c, 0x79, 0x64, 0xec, 0xc9, 0x7c, 0x1a, 0xfe, 0x5a, 0x2d, 0x66, 0xdc, - 0x4e, 0x4e, 0xfc, 0x20, 0xfc, 0xe6, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0x6f, 0xe4, 0x01, 0x58, - 0xf3, 0x1f, 0x00, 0x00, + // 1988 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x59, 0xcd, 0x6f, 0x1c, 0x49, + 0x15, 0x4f, 0xfb, 0x2b, 0x9e, 0x37, 0x89, 0x13, 0x57, 0xfc, 0xd1, 0xee, 0xe0, 0xf1, 0xd8, 0xf9, + 0xd8, 0xd9, 0xb0, 0x9e, 0x8e, 0x67, 0x21, 0x9b, 0xb5, 0x90, 0xd0, 0xd8, 0xc6, 0x21, 0x82, 0x41, + 0xab, 0xf1, 0x02, 0x82, 0xcb, 0xa8, 0xa7, 0xbb, 0xdc, 0x69, 0x79, 0xa6, 0x6b, 0xd2, 0x55, 0x33, + 0xc9, 0xac, 0xc4, 0x85, 0x3d, 0xed, 0x09, 0xd8, 0x03, 0x07, 0xb8, 0x70, 0x42, 0x88, 0xd3, 0x1e, + 0x56, 0xfc, 0x01, 0x9c, 0x16, 0x10, 0x68, 0x05, 0x17, 0xc4, 0x61, 0x41, 0x89, 0x44, 0x10, 0x7f, + 0x04, 0xa0, 0xfa, 0xe8, 0x9e, 0xe9, 0x99, 0xee, 0xb6, 0x1d, 0x3b, 0x62, 0x2f, 0x89, 0xab, 0xde, + 0xe7, 0xef, 0xbd, 0x57, 0x55, 0xef, 0xf5, 0xc0, 0x6a, 0x27, 0x20, 0x3d, 0xec, 0x5b, 0xbe, 0x8d, + 0xcd, 0xb6, 0x15, 0x1c, 0xe1, 0xc0, 0xec, 0x6d, 0x99, 0xec, 0x69, 0xb9, 0x13, 0x10, 0x46, 0xd0, + 0xc2, 0x80, 0x5c, 0x96, 0xe4, 0x72, 0x6f, 0xcb, 0x98, 0xb7, 0xda, 0x9e, 0x4f, 0x4c, 0xf1, 0xaf, + 0x64, 0x34, 0x56, 0x5c, 0x42, 0xdc, 0x16, 0x36, 0xc5, 0xaa, 0xd9, 0x3d, 0x34, 0x2d, 0xbf, 0x1f, + 0x92, 0x6c, 0x42, 0xdb, 0x84, 0x36, 0xc4, 0xca, 0x94, 0x0b, 0x45, 0x5a, 0x70, 0x89, 0x4b, 0xe4, + 0x3e, 0xff, 0x4b, 0xed, 0x16, 0x24, 0x8f, 0xd9, 0xb4, 0x28, 0x36, 0x7b, 0x5b, 0x4d, 0xcc, 0xac, + 0x2d, 0xd3, 0x26, 0x9e, 0x3f, 0x46, 0xf7, 0x8f, 0x22, 0x3a, 0x5f, 0x28, 0xfa, 0xb2, 0xa2, 0xb7, + 0xa9, 0xcb, 0xc1, 0xb4, 0xa9, 0xab, 0x08, 0xb7, 0xbc, 0xa6, 0x6d, 0x5a, 0x9d, 0x4e, 0xcb, 0xb3, + 0x2d, 0xe6, 0x11, 0x9f, 0x9a, 0x2c, 0xb0, 0x7c, 0x7a, 0x18, 0x07, 0x6d, 0xac, 0x27, 0xc6, 0x44, + 0xc1, 0x97, 0x2c, 0xb7, 0x13, 0x59, 0x2c, 0xdb, 0xc6, 0x94, 0xba, 0x81, 0xe5, 0x33, 0xc9, 0xb7, + 0xf1, 0x07, 0x0d, 0xf4, 0x1a, 0x75, 0x1f, 0xf0, 0xad, 0x6a, 0xab, 0x45, 0x9e, 0x70, 0x89, 0x3a, + 0x7e, 0xdc, 0xc5, 0x94, 0xa1, 0x05, 0x98, 0x76, 0xb0, 0x4f, 0xda, 0xba, 0x56, 0xd4, 0x4a, 0xb9, + 0xba, 0x5c, 0xa0, 0x9b, 0x70, 0xd9, 0x72, 0xda, 0x9e, 0xef, 0x51, 0x16, 0x58, 0x8c, 0x04, 0xfa, + 0x84, 0xa0, 0xc6, 0x37, 0x91, 0x0e, 0x17, 0x85, 0x1d, 0x8c, 0xf5, 0x49, 0x41, 0x0f, 0x97, 0xe8, + 0x6b, 0x90, 0xb3, 0x42, 0x4b, 0xfa, 0x54, 0x51, 0x2b, 0xe5, 0x2b, 0x0b, 0x65, 0x99, 0x9d, 0x72, + 0x98, 0x9d, 0x72, 0xd5, 0xef, 0xef, 0xcc, 0xff, 0xfe, 0xe3, 0xcd, 0xcb, 0xfb, 0x18, 0x47, 0x7e, + 0x3d, 0xac, 0x0f, 0x24, 0xb7, 0xd1, 0x0f, 0x5f, 0x7c, 0x74, 0x27, 0x6e, 0x74, 0xe3, 0x3a, 0xac, + 0x24, 0x80, 0xa1, 0x1d, 0xe2, 0x53, 0xbc, 0xf1, 0xdf, 0x29, 0xb8, 0x56, 0xa3, 0x6e, 0xd5, 0x71, + 0x6a, 0x22, 0x20, 0x21, 0xca, 0xb7, 0x60, 0xc6, 0x6a, 0x93, 0xae, 0xcf, 0x04, 0xcc, 0x7c, 0x65, + 0xa5, 0xac, 0x4a, 0x80, 0xa7, 0xb7, 0xac, 0xd2, 0x57, 0xde, 0x25, 0x9e, 0xbf, 0x33, 0xf5, 0xc9, + 0x67, 0x6b, 0x17, 0xea, 0x8a, 0x9d, 0x43, 0x6c, 0x5b, 0xbe, 0xe5, 0xe2, 0x20, 0x84, 0xa8, 0x96, + 0x68, 0x1d, 0x2e, 0x1d, 0x06, 0xa4, 0xdd, 0xb0, 0x1c, 0x27, 0xc0, 0x94, 0x0a, 0x94, 0xb9, 0x7a, + 0x9e, 0xef, 0x55, 0xe5, 0x16, 0xda, 0x86, 0x19, 0xca, 0x2c, 0xd6, 0xa5, 0xfa, 0x74, 0x51, 0x2b, + 0xcd, 0x55, 0x36, 0xca, 0x49, 0x95, 0x5c, 0x96, 0xae, 0x1e, 0x08, 0xce, 0xba, 0x92, 0x40, 0x55, + 0xc8, 0x4b, 0x8e, 0x06, 0xeb, 0x77, 0xb0, 0x3e, 0x23, 0x14, 0x14, 0xb3, 0x14, 0xbc, 0xdb, 0xef, + 0xe0, 0x3a, 0xb4, 0xa3, 0xbf, 0xd1, 0xd7, 0x21, 0x2f, 0x8b, 0xa1, 0xd1, 0xf2, 0x28, 0xd3, 0x2f, + 0x16, 0x27, 0x4b, 0xf9, 0xca, 0x7a, 0xb2, 0x8a, 0xaa, 0x60, 0x14, 0x51, 0x55, 0x11, 0x00, 0x29, + 0xfb, 0x4d, 0x8f, 0x32, 0x8e, 0x95, 0x76, 0x3b, 0x9d, 0x56, 0xbf, 0x71, 0xe8, 0x3d, 0xc5, 0x8e, + 0x3e, 0x5b, 0xd4, 0x4a, 0xb3, 0xf5, 0xbc, 0xdc, 0xdb, 0xe7, 0x5b, 0xe8, 0x3e, 0xe8, 0x22, 0x6f, + 0x0d, 0x97, 0xf4, 0x70, 0x20, 0xd4, 0x37, 0x6c, 0xe2, 0xb3, 0x80, 0xb4, 0xf4, 0x9c, 0x60, 0x5f, + 0x12, 0xf4, 0x07, 0x11, 0x79, 0x57, 0x52, 0x51, 0x05, 0x16, 0xa5, 0xe4, 0x21, 0x09, 0x6c, 0xec, + 0x34, 0xc2, 0xe3, 0xa0, 0x83, 0x10, 0xbb, 0x26, 0x88, 0xfb, 0x82, 0xf6, 0xae, 0x22, 0x21, 0x13, + 0xae, 0x05, 0xf8, 0x71, 0xd7, 0x0b, 0xb0, 0xd3, 0xb0, 0x18, 0x0b, 0xbc, 0x66, 0x97, 0x61, 0xaa, + 0xe7, 0x8b, 0x93, 0xa5, 0x5c, 0x1d, 0x85, 0xa4, 0x6a, 0x44, 0x41, 0x6b, 0x90, 0xeb, 0x52, 0xa7, + 0x61, 0x63, 0x9f, 0x51, 0xfd, 0x52, 0x51, 0x2b, 0x4d, 0xed, 0x4c, 0xe8, 0x5a, 0x7d, 0xb6, 0x4b, + 0x9d, 0x5d, 0xbe, 0x87, 0x96, 0x60, 0xa6, 0x47, 0x5a, 0xdd, 0x36, 0xd6, 0x2f, 0x73, 0x6a, 0x5d, + 0xad, 0xd0, 0x75, 0x29, 0xd8, 0xf6, 0x5a, 0x2d, 0xaa, 0xcf, 0x09, 0x12, 0x17, 0xaa, 0xf1, 0xf5, + 0xf6, 0x3c, 0xaf, 0xcf, 0x58, 0x19, 0x6c, 0x2c, 0xc1, 0x42, 0xbc, 0x00, 0x55, 0x65, 0xfe, 0x52, + 0x0b, 0x2b, 0x53, 0x86, 0xfa, 0x3c, 0xce, 0xdf, 0x57, 0x61, 0x46, 0x26, 0x49, 0x9f, 0x3c, 0x5d, + 0x6e, 0x95, 0x58, 0xe2, 0xf9, 0x8a, 0x00, 0x84, 0x7e, 0x2a, 0x00, 0x3f, 0xd1, 0x60, 0xa9, 0x46, + 0xdd, 0x3d, 0xdc, 0xc2, 0x0c, 0x9f, 0x1f, 0x86, 0xd7, 0xe0, 0x4a, 0x80, 0xdb, 0xa4, 0xc7, 0x13, + 0xa9, 0x4e, 0x92, 0x3c, 0x68, 0x73, 0x6a, 0x5b, 0x1d, 0xa6, 0x44, 0x5f, 0x57, 0x60, 0x79, 0xcc, + 0x25, 0xe5, 0xae, 0x03, 0xa8, 0x46, 0xdd, 0x7d, 0xcf, 0xb7, 0x5a, 0xde, 0x7b, 0xe7, 0x71, 0xdb, + 0x25, 0x3a, 0xb0, 0x28, 0x92, 0x3a, 0xb0, 0x12, 0x33, 0x5e, 0xb5, 0x99, 0xd7, 0xb3, 0xd8, 0x2b, + 0x36, 0x3e, 0xb0, 0xa2, 0x8c, 0x37, 0xe1, 0x6a, 0x8d, 0xba, 0xbb, 0xbc, 0x08, 0x5a, 0xaf, 0xca, + 0xf4, 0x35, 0x98, 0x1f, 0xb2, 0x11, 0x33, 0x2c, 0xb3, 0xf1, 0x6a, 0x0d, 0x87, 0x36, 0x94, 0xe1, + 0xf7, 0x35, 0x98, 0xab, 0x51, 0xb7, 0xe6, 0xf9, 0xec, 0xcc, 0x17, 0xfe, 0xcb, 0xbb, 0x36, 0x0f, + 0x57, 0x22, 0x27, 0xe2, 0x8e, 0xed, 0x74, 0x03, 0xff, 0xff, 0xee, 0x98, 0x74, 0x42, 0x39, 0xf6, + 0x1f, 0x4d, 0x54, 0xe8, 0x77, 0x3d, 0xf6, 0xc8, 0x09, 0xac, 0x27, 0xe7, 0x71, 0x90, 0x57, 0x01, + 0x18, 0x19, 0x39, 0xc3, 0x39, 0x46, 0xc2, 0xb7, 0xb0, 0x1f, 0xe1, 0x9e, 0x12, 0x77, 0x55, 0x06, + 0xee, 0x7d, 0x8e, 0xfb, 0xd7, 0x7f, 0x5f, 0x2b, 0xb9, 0x1e, 0x7b, 0xd4, 0x6d, 0x96, 0x6d, 0xd2, + 0x56, 0x1d, 0x9b, 0xfa, 0x6f, 0x93, 0x3a, 0x47, 0x26, 0x7f, 0x16, 0xa9, 0x10, 0xa0, 0x3f, 0xe3, + 0xb7, 0x70, 0x0b, 0xbb, 0x96, 0xdd, 0x6f, 0xf0, 0x16, 0x8d, 0xfe, 0xea, 0xc5, 0x47, 0x77, 0xb4, + 0x30, 0x72, 0x19, 0x67, 0x67, 0x80, 0x5f, 0xc5, 0xe5, 0x77, 0x32, 0x2e, 0xe1, 0x3b, 0x73, 0xfe, + 0x49, 0x9b, 0x4c, 0x0a, 0xdd, 0x09, 0x5a, 0x89, 0x78, 0x74, 0xa7, 0x47, 0xa2, 0x9b, 0x01, 0x71, + 0x00, 0x45, 0x41, 0xfc, 0xa7, 0x06, 0x8b, 0x35, 0xea, 0x3e, 0x6c, 0xda, 0xa3, 0x28, 0x3f, 0xd4, + 0x60, 0x36, 0x7a, 0x7c, 0x25, 0xd0, 0xd7, 0xcb, 0x5e, 0xd3, 0x2e, 0x0f, 0x77, 0xab, 0xe5, 0x90, + 0x43, 0x34, 0x1e, 0x03, 0xfd, 0x3b, 0xdf, 0xe0, 0xc0, 0xff, 0xf6, 0xd9, 0xda, 0xee, 0x78, 0xd6, + 0xbc, 0xa6, 0xbd, 0xe9, 0x12, 0xb3, 0x77, 0xdf, 0x6c, 0x13, 0xa7, 0xdb, 0xc2, 0x94, 0xf7, 0xbf, + 0x43, 0x7d, 0xaf, 0x4c, 0xe5, 0xb0, 0xb3, 0x91, 0x1f, 0x67, 0x28, 0x7b, 0x5d, 0xbc, 0x57, 0x31, + 0x9c, 0x2a, 0x04, 0x7f, 0xd4, 0xc0, 0xa8, 0x51, 0xf7, 0x00, 0xb3, 0x3d, 0x5e, 0xe0, 0x35, 0xcc, + 0x2c, 0xc7, 0x62, 0x56, 0x18, 0x87, 0x2e, 0xcc, 0xb6, 0xd5, 0x96, 0x0a, 0xc3, 0xea, 0x20, 0xdf, + 0xfe, 0x51, 0x94, 0xef, 0x50, 0x6e, 0x67, 0x5b, 0x41, 0xaf, 0x64, 0x16, 0xec, 0x53, 0x39, 0x2b, + 0x28, 0xb0, 0xa1, 0xcd, 0xc8, 0xd4, 0x19, 0x90, 0xae, 0xc2, 0xf5, 0x44, 0x38, 0x0a, 0xee, 0x5f, + 0xa6, 0xe0, 0x86, 0x7c, 0xd2, 0xc3, 0x87, 0x2a, 0x7c, 0x33, 0x3e, 0x0f, 0x4d, 0xf2, 0x48, 0xa3, + 0x3b, 0x7d, 0xf6, 0x46, 0x77, 0xe6, 0xfc, 0x1a, 0xdd, 0x8b, 0xa7, 0x6b, 0x74, 0x67, 0x5f, 0xae, + 0xd1, 0xcd, 0x9d, 0xba, 0xd1, 0x85, 0x93, 0x35, 0xba, 0xf9, 0xcc, 0x46, 0xf7, 0x52, 0x7a, 0xa3, + 0x7b, 0xf9, 0xf8, 0x46, 0xf7, 0x36, 0xdc, 0xcc, 0x2e, 0x2a, 0x55, 0x7d, 0x7f, 0xd2, 0xa0, 0xc8, + 0xab, 0x53, 0x84, 0xf0, 0xa1, 0x6f, 0x07, 0xd8, 0xa2, 0xf8, 0x9d, 0x80, 0x74, 0x08, 0xb5, 0x5a, + 0x67, 0x2e, 0xbd, 0x5b, 0x30, 0xc7, 0xac, 0xc0, 0xc5, 0x2c, 0x2a, 0x31, 0x75, 0x6a, 0xe4, 0x6e, + 0x58, 0x64, 0xf7, 0x20, 0x67, 0x75, 0xd9, 0x23, 0x12, 0x78, 0xac, 0x2f, 0x6b, 0x74, 0x47, 0xff, + 0xf3, 0xc7, 0x9b, 0x0b, 0xca, 0x8a, 0x62, 0x3b, 0x60, 0x81, 0xe7, 0xbb, 0xf5, 0x01, 0xeb, 0x36, + 0xfa, 0xd7, 0x2f, 0xd6, 0x34, 0x8e, 0x7d, 0xb0, 0xb7, 0x71, 0x03, 0xd6, 0x33, 0xf0, 0x28, 0xd4, + 0x3f, 0x9d, 0x80, 0x8d, 0x1a, 0x75, 0xbf, 0xdd, 0x71, 0x54, 0x03, 0x18, 0x4f, 0x53, 0xf6, 0x83, + 0xfb, 0x15, 0x30, 0x64, 0xf3, 0xdb, 0x48, 0xca, 0xfd, 0x84, 0xc8, 0xbd, 0x2e, 0x39, 0xc6, 0x55, + 0xa3, 0x7b, 0xb0, 0x6c, 0x39, 0x4e, 0xa2, 0xe8, 0xa4, 0x10, 0x5d, 0xb4, 0x1c, 0x27, 0x41, 0xee, + 0x01, 0xa0, 0xb0, 0x22, 0x1b, 0x83, 0x60, 0x4d, 0x1d, 0x13, 0xac, 0xf9, 0x50, 0xa6, 0x1a, 0x05, + 0xed, 0x7a, 0x18, 0xb4, 0x04, 0x7d, 0x1b, 0xb7, 0xc4, 0x5d, 0x94, 0x1e, 0x17, 0x15, 0xbf, 0xdf, + 0x68, 0x50, 0x88, 0xf8, 0xe2, 0x67, 0x22, 0x3b, 0x76, 0xa9, 0x87, 0x6c, 0x22, 0xfd, 0x90, 0x9d, + 0x67, 0x75, 0xac, 0xc3, 0x5a, 0xaa, 0xdf, 0x0a, 0xdb, 0x07, 0xf2, 0x7b, 0xcc, 0x01, 0x66, 0x55, + 0xdb, 0xe6, 0x55, 0xbc, 0x37, 0xf4, 0xf8, 0x24, 0xa3, 0x5a, 0x80, 0xe9, 0x9e, 0xd5, 0xea, 0x62, + 0x55, 0xdd, 0x72, 0x81, 0xee, 0xc2, 0x0c, 0xf5, 0x5c, 0x3f, 0xbc, 0x76, 0x33, 0x9c, 0x56, 0x7c, + 0xdb, 0x57, 0x42, 0x8f, 0xd5, 0x86, 0xfa, 0x9a, 0x32, 0xea, 0x8a, 0x72, 0xf4, 0xdf, 0x1a, 0x7c, + 0x21, 0x02, 0x73, 0x80, 0x7d, 0x67, 0x0f, 0xfb, 0x7d, 0x7e, 0x4f, 0x66, 0x3b, 0x7b, 0x0f, 0x96, + 0x55, 0xf9, 0x3a, 0xd8, 0xf7, 0x06, 0x83, 0x5d, 0x54, 0xbb, 0x8b, 0x92, 0xbc, 0x27, 0xa8, 0xd5, + 0x90, 0x88, 0xee, 0xc2, 0x02, 0x2f, 0xdc, 0x31, 0x21, 0x59, 0xb5, 0xc8, 0x72, 0x9c, 0x51, 0x89, + 0x58, 0xe2, 0xa6, 0xce, 0x96, 0xb8, 0x35, 0x58, 0x4d, 0xc1, 0xaa, 0xa2, 0xf1, 0x5b, 0x4d, 0x3c, + 0xb3, 0x55, 0xc7, 0xf9, 0x16, 0x66, 0x55, 0x4a, 0x31, 0xfb, 0x0e, 0xcf, 0xc2, 0xb9, 0x4c, 0xc1, + 0x07, 0x70, 0xd5, 0xe7, 0x77, 0x18, 0xd7, 0xda, 0x10, 0xc9, 0x0d, 0x67, 0xfa, 0x1b, 0xc9, 0xcf, + 0x58, 0xcc, 0x05, 0x75, 0x27, 0xce, 0xf9, 0x31, 0xbf, 0x12, 0x5b, 0x85, 0x82, 0xc8, 0x68, 0x02, + 0x06, 0x09, 0xb2, 0xf2, 0x73, 0x04, 0x93, 0x35, 0xea, 0xa2, 0x06, 0xcc, 0x86, 0xf7, 0x3a, 0x2a, + 0xa5, 0x3c, 0xc6, 0x63, 0xe3, 0xb5, 0xf1, 0xfa, 0x09, 0x38, 0xa5, 0x21, 0x6e, 0x20, 0x7c, 0x30, + 0x32, 0x0c, 0x8c, 0x8c, 0xd0, 0x19, 0x06, 0x46, 0xc7, 0x60, 0xf4, 0x3d, 0x98, 0x91, 0xf3, 0x29, + 0xba, 0x9d, 0x2a, 0x14, 0x1b, 0x92, 0x8d, 0xd7, 0x8e, 0xe5, 0x1b, 0xa8, 0x96, 0x13, 0x68, 0x86, + 0xea, 0xd8, 0x18, 0x9c, 0xa1, 0x3a, 0x3e, 0xca, 0xa2, 0x03, 0x98, 0xe2, 0x13, 0x24, 0xba, 0x99, + 0x2a, 0x30, 0x34, 0xe5, 0x1a, 0xb7, 0x8e, 0xe1, 0x1a, 0x28, 0xe5, 0xd3, 0x5f, 0x86, 0xd2, 0xa1, + 0x09, 0x35, 0x43, 0xe9, 0xf0, 0x08, 0x89, 0x9a, 0x90, 0x8b, 0x3e, 0x12, 0xa1, 0x8c, 0xbc, 0x8c, + 0x7c, 0xf0, 0x32, 0xee, 0x9c, 0x84, 0x55, 0xd9, 0x38, 0x82, 0x4b, 0xc3, 0x1f, 0x77, 0xd0, 0x1b, + 0xc7, 0x84, 0x31, 0x6e, 0x69, 0xf3, 0x84, 0xdc, 0x83, 0x8a, 0x0c, 0xe7, 0xc1, 0x8c, 0x8a, 0x1c, + 0x19, 0x99, 0x33, 0x2a, 0x72, 0x74, 0xb8, 0x54, 0x11, 0x93, 0xed, 0x51, 0x76, 0xc4, 0x62, 0x7d, + 0x79, 0x76, 0xc4, 0xe2, 0xdd, 0x16, 0x07, 0x11, 0x3d, 0x6b, 0xe9, 0x20, 0x46, 0x9e, 0xd2, 0x0c, + 0x10, 0xa3, 0x8f, 0x17, 0x7a, 0x04, 0xf9, 0xa1, 0x91, 0x0a, 0x7d, 0x31, 0x55, 0x72, 0x7c, 0xc0, + 0x34, 0xde, 0x38, 0x19, 0xb3, 0xb2, 0xf4, 0x04, 0xae, 0x8e, 0x8e, 0x34, 0xe8, 0x6e, 0xaa, 0x86, + 0x94, 0x61, 0xce, 0xd8, 0x3a, 0x85, 0x84, 0x32, 0xfc, 0x18, 0xe6, 0xe2, 0x3f, 0x2f, 0xa0, 0x72, + 0xaa, 0x92, 0xc4, 0x1f, 0x55, 0x0c, 0xf3, 0xc4, 0xfc, 0xca, 0xe4, 0x87, 0x1a, 0xac, 0xa4, 0xb6, + 0xd2, 0xe8, 0xed, 0xac, 0x02, 0xc8, 0x9c, 0xe9, 0x8c, 0xed, 0x97, 0x11, 0x55, 0x4e, 0x7d, 0xa0, + 0xc1, 0x52, 0x72, 0x9b, 0x8b, 0xee, 0xa5, 0x47, 0x35, 0xab, 0xcf, 0x37, 0xde, 0x3a, 0xb5, 0x9c, + 0xf2, 0xe5, 0x47, 0x1a, 0xe8, 0x69, 0x4d, 0x23, 0xba, 0x9f, 0xaa, 0xf5, 0x98, 0xfe, 0xdb, 0x78, + 0xfb, 0x25, 0x24, 0x95, 0x47, 0xef, 0x6b, 0xb0, 0x90, 0xd4, 0xe6, 0xa1, 0x2f, 0x1d, 0xa3, 0x33, + 0xb1, 0x9b, 0x35, 0xbe, 0x7c, 0x4a, 0xa9, 0x41, 0xad, 0xc6, 0x9b, 0xb7, 0x8c, 0x5a, 0x4d, 0x6c, + 0x38, 0x33, 0x6a, 0x35, 0xb9, 0x2b, 0x44, 0x3f, 0x00, 0x34, 0xde, 0x25, 0xa1, 0xca, 0x31, 0xfe, + 0x27, 0xb4, 0x8f, 0xc6, 0x9b, 0xa7, 0x92, 0x51, 0xe6, 0xdf, 0x83, 0xf9, 0xb1, 0xf6, 0x05, 0x6d, + 0x65, 0x95, 0x79, 0x62, 0xbb, 0x66, 0x54, 0x4e, 0x23, 0x22, 0x6d, 0xef, 0xb8, 0x9f, 0x3c, 0x2b, + 0x68, 0x9f, 0x3e, 0x2b, 0x68, 0xff, 0x78, 0x56, 0xd0, 0x7e, 0xfc, 0xbc, 0x70, 0xe1, 0xd3, 0xe7, + 0x85, 0x0b, 0x7f, 0x7d, 0x5e, 0xb8, 0x00, 0xcb, 0x1e, 0x49, 0xd4, 0xf7, 0x8e, 0xf6, 0xfd, 0xe1, + 0xaf, 0x42, 0x03, 0x96, 0x4d, 0x8f, 0x0c, 0xad, 0xcc, 0xa7, 0xe1, 0x2f, 0xb8, 0xe2, 0xf3, 0x50, + 0x73, 0x46, 0xfc, 0x48, 0xfa, 0xe6, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x23, 0x58, 0xa2, 0xd4, + 0x1a, 0x1f, 0x00, 0x00, } func (this *MsgSupplyIncreaseProposalRequest) Equal(that interface{}) bool { @@ -2387,7 +2431,7 @@ func (this *MsgSupplyIncreaseProposalRequest) Equal(that interface{}) bool { } else if this == nil { return false } - if !this.Amount.Equal(that1.Amount) { + if !this.Amount.Equal(&that1.Amount) { return false } if this.TargetAddress != that1.TargetAddress { @@ -3583,11 +3627,11 @@ func (m *MsgAddMarkerRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x1a } { - size := m.Amount.Size() - i -= size - if _, err := m.Amount.MarshalTo(dAtA[i:]); err != nil { + size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { return 0, err } + i -= size i = encodeVarintTx(dAtA, i, uint64(size)) } i-- @@ -4027,11 +4071,11 @@ func (m *MsgMintRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x12 } { - size := m.Amount.Size() - i -= size - if _, err := m.Amount.MarshalTo(dAtA[i:]); err != nil { + size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { return 0, err } + i -= size i = encodeVarintTx(dAtA, i, uint64(size)) } i-- @@ -4090,11 +4134,11 @@ func (m *MsgBurnRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x12 } { - size := m.Amount.Size() - i -= size - if _, err := m.Amount.MarshalTo(dAtA[i:]); err != nil { + size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { return 0, err } + i -= size i = encodeVarintTx(dAtA, i, uint64(size)) } i-- @@ -4248,11 +4292,11 @@ func (m *MsgTransferRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x1a } { - size := m.Amount.Size() - i -= size - if _, err := m.Amount.MarshalTo(dAtA[i:]); err != nil { + size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { return 0, err } + i -= size i = encodeVarintTx(dAtA, i, uint64(size)) } i-- @@ -4517,11 +4561,11 @@ func (m *MsgAddFinalizeActivateMarkerRequest) MarshalToSizedBuffer(dAtA []byte) dAtA[i] = 0x1a } { - size := m.Amount.Size() - i -= size - if _, err := m.Amount.MarshalTo(dAtA[i:]); err != nil { + size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { return 0, err } + i -= size i = encodeVarintTx(dAtA, i, uint64(size)) } i-- @@ -4587,11 +4631,11 @@ func (m *MsgSupplyIncreaseProposalRequest) MarshalToSizedBuffer(dAtA []byte) (in dAtA[i] = 0x12 } { - size := m.Amount.Size() - i -= size - if _, err := m.Amount.MarshalTo(dAtA[i:]); err != nil { + size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { return 0, err } + i -= size i = encodeVarintTx(dAtA, i, uint64(size)) } i-- diff --git a/x/msgfees/types/proposals.pb.go b/x/msgfees/types/proposals.pb.go index 1b4d80020e..a80dc34d26 100644 --- a/x/msgfees/types/proposals.pb.go +++ b/x/msgfees/types/proposals.pb.go @@ -33,7 +33,7 @@ type AddMsgFeeProposal struct { // type url of msg to add fee MsgTypeUrl string `protobuf:"bytes,3,opt,name=msg_type_url,json=msgTypeUrl,proto3" json:"msg_type_url,omitempty"` // additional fee for msg type - AdditionalFee types.Coin `protobuf:"bytes,4,opt,name=additional_fee,json=additionalFee,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"additional_fee"` + AdditionalFee types.Coin `protobuf:"bytes,4,opt,name=additional_fee,json=additionalFee,proto3" json:"additional_fee"` // optional recipient to recieve basis points Recipient string `protobuf:"bytes,5,opt,name=recipient,proto3" json:"recipient,omitempty"` // basis points to use when recipient is present (1 - 10,000) @@ -124,7 +124,7 @@ type UpdateMsgFeeProposal struct { // type url of msg to update fee MsgTypeUrl string `protobuf:"bytes,3,opt,name=msg_type_url,json=msgTypeUrl,proto3" json:"msg_type_url,omitempty"` // additional fee for msg type - AdditionalFee types.Coin `protobuf:"bytes,4,opt,name=additional_fee,json=additionalFee,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"additional_fee"` + AdditionalFee types.Coin `protobuf:"bytes,4,opt,name=additional_fee,json=additionalFee,proto3" json:"additional_fee"` // optional recipient to recieve basis points Recipient string `protobuf:"bytes,5,opt,name=recipient,proto3" json:"recipient,omitempty"` // basis points to use when recipient is present (1 - 10,000) @@ -407,39 +407,37 @@ func init() { } var fileDescriptor_a2e168825d6c34a4 = []byte{ - // 504 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x94, 0xc1, 0x6e, 0xd3, 0x4c, - 0x10, 0xc7, 0xe3, 0x7c, 0x69, 0xa5, 0x6c, 0x3f, 0x2a, 0xd5, 0x32, 0xc8, 0x54, 0x95, 0x13, 0x55, - 0x42, 0x0a, 0x87, 0x7a, 0x1b, 0xca, 0x89, 0x1b, 0x29, 0xca, 0xad, 0x28, 0x8a, 0xc8, 0x85, 0x8b, - 0x65, 0x7b, 0xa7, 0xce, 0x0a, 0x7b, 0x77, 0xb5, 0xb3, 0xb1, 0xe8, 0x13, 0x70, 0x45, 0x3c, 0x01, - 0x67, 0x5e, 0x01, 0x89, 0x73, 0x8f, 0x3d, 0x72, 0x02, 0x94, 0x5c, 0x78, 0x0c, 0xe4, 0xb5, 0x95, - 0x04, 0xf5, 0x46, 0x25, 0x4e, 0x9c, 0xec, 0xd9, 0xf9, 0x7b, 0xfe, 0x3f, 0xcf, 0x8e, 0x86, 0x3c, - 0x52, 0x5a, 0x96, 0x20, 0x62, 0x91, 0x02, 0x2d, 0x30, 0xbb, 0x04, 0x40, 0x5a, 0x0e, 0xa9, 0xd2, - 0x52, 0x49, 0x8c, 0x73, 0x0c, 0x95, 0x96, 0x46, 0xba, 0xf7, 0x37, 0xb2, 0xb0, 0x91, 0x85, 0xe5, - 0xf0, 0xd0, 0xcb, 0x64, 0x26, 0xad, 0x82, 0x56, 0x6f, 0xb5, 0xf8, 0x30, 0x48, 0x25, 0x16, 0x12, - 0x69, 0x12, 0x23, 0xd0, 0x72, 0x98, 0x80, 0x89, 0x87, 0x34, 0x95, 0x5c, 0xd4, 0xf9, 0xe3, 0xcf, - 0x6d, 0x72, 0xf0, 0x9c, 0xb1, 0x0b, 0xcc, 0xc6, 0x00, 0x93, 0xc6, 0xc9, 0xf5, 0xc8, 0x8e, 0xe1, - 0x26, 0x07, 0xdf, 0xe9, 0x3b, 0x83, 0xee, 0xb4, 0x0e, 0xdc, 0x3e, 0xd9, 0x63, 0x80, 0xa9, 0xe6, - 0xca, 0x70, 0x29, 0xfc, 0xb6, 0xcd, 0x6d, 0x1f, 0xb9, 0x7d, 0xf2, 0x7f, 0x81, 0x59, 0x64, 0xae, - 0x14, 0x44, 0x0b, 0x9d, 0xfb, 0xff, 0x59, 0x09, 0x29, 0x30, 0x7b, 0x75, 0xa5, 0x60, 0xa6, 0x73, - 0x57, 0x93, 0xfd, 0x98, 0x31, 0x5e, 0xa9, 0xe3, 0x3c, 0xba, 0x04, 0xf0, 0x3b, 0x7d, 0x67, 0xb0, - 0xf7, 0xe4, 0x61, 0x58, 0x83, 0x86, 0x15, 0x68, 0xd8, 0x80, 0x86, 0xe7, 0x92, 0x8b, 0xd1, 0xe9, - 0xf5, 0xb7, 0x5e, 0xeb, 0xd3, 0xf7, 0xde, 0x20, 0xe3, 0x66, 0xbe, 0x48, 0xc2, 0x54, 0x16, 0xb4, - 0xf9, 0xab, 0xfa, 0x71, 0x82, 0xec, 0x0d, 0xad, 0x3c, 0xd1, 0x7e, 0x80, 0xd3, 0x7b, 0x1b, 0x8b, - 0x31, 0x80, 0x7b, 0x44, 0xba, 0x1a, 0x52, 0xae, 0x38, 0x08, 0xe3, 0xef, 0x58, 0xa4, 0xcd, 0x81, - 0xfb, 0x94, 0x3c, 0x58, 0x07, 0x51, 0x12, 0x23, 0xc7, 0x48, 0x49, 0x2e, 0x0c, 0xfa, 0xbb, 0x56, - 0xea, 0xad, 0xb3, 0xa3, 0x2a, 0x39, 0xb1, 0xb9, 0x67, 0x9d, 0x9f, 0x1f, 0x7b, 0xce, 0xf1, 0x97, - 0x36, 0xf1, 0x66, 0x8a, 0xc5, 0x06, 0xfe, 0x35, 0xf0, 0x8f, 0x1a, 0x58, 0x12, 0x6f, 0x0a, 0x85, - 0x2c, 0xff, 0x5a, 0xff, 0x1a, 0xdf, 0x77, 0x0e, 0x39, 0xaa, 0x2f, 0xee, 0xe5, 0x3c, 0xc6, 0xf9, - 0x04, 0xf4, 0x0c, 0xd9, 0x05, 0xcf, 0xef, 0x0c, 0xf0, 0x98, 0x1c, 0x88, 0xaa, 0x62, 0xa4, 0x40, - 0x47, 0x0b, 0x64, 0x51, 0xc1, 0x6b, 0x8a, 0xce, 0x74, 0x5f, 0xfc, 0x66, 0xd5, 0x90, 0x7c, 0x70, - 0x48, 0xbf, 0x26, 0x39, 0x97, 0xa2, 0x04, 0x8d, 0x5c, 0x8a, 0x31, 0xc0, 0x0b, 0x10, 0xb2, 0xb8, - 0x33, 0xcd, 0x29, 0xf1, 0xd2, 0x75, 0xd5, 0x6a, 0x58, 0x22, 0x56, 0xd5, 0xb5, 0x23, 0xd3, 0x9d, - 0xba, 0xe9, 0x2d, 0xc7, 0x1a, 0x6a, 0xc4, 0xaf, 0x97, 0x81, 0x73, 0xb3, 0x0c, 0x9c, 0x1f, 0xcb, - 0xc0, 0x79, 0xbf, 0x0a, 0x5a, 0x37, 0xab, 0xa0, 0xf5, 0x75, 0x15, 0xb4, 0x88, 0xcf, 0xed, 0x66, - 0xb9, 0xbd, 0x7f, 0x26, 0xce, 0xeb, 0xb3, 0xad, 0xf9, 0xda, 0x68, 0x4e, 0xb8, 0xdc, 0x8a, 0xe8, - 0xdb, 0xf5, 0x6a, 0xb3, 0x03, 0x97, 0xec, 0xda, 0x3d, 0x74, 0xf6, 0x2b, 0x00, 0x00, 0xff, 0xff, - 0x6c, 0x1e, 0xf0, 0xe9, 0xfd, 0x04, 0x00, 0x00, + // 478 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x54, 0x4d, 0x6f, 0xd3, 0x40, + 0x10, 0xcd, 0x86, 0xb4, 0x52, 0xb6, 0x50, 0xa9, 0x96, 0x41, 0xa6, 0xaa, 0x5c, 0xab, 0x12, 0x52, + 0x39, 0x60, 0x13, 0xca, 0x89, 0x1b, 0x29, 0xca, 0xad, 0x28, 0xb2, 0xc8, 0x85, 0x8b, 0xe5, 0x8f, + 0xa9, 0xb3, 0x92, 0xbd, 0xb3, 0xda, 0xd9, 0x58, 0xf4, 0x17, 0x70, 0x04, 0xf1, 0x0b, 0xf8, 0x39, + 0x3d, 0xf6, 0xc8, 0x09, 0xa1, 0xe4, 0xc2, 0xcf, 0x40, 0xb6, 0x83, 0x53, 0xd4, 0x63, 0x24, 0x4e, + 0xbd, 0x79, 0xf6, 0x3d, 0xcf, 0x7b, 0x9a, 0x19, 0x3d, 0xfe, 0x4c, 0x69, 0xac, 0x40, 0xc6, 0x32, + 0x85, 0xa0, 0xa4, 0xfc, 0x12, 0x80, 0x82, 0x6a, 0x14, 0x28, 0x8d, 0x0a, 0x29, 0x2e, 0xc8, 0x57, + 0x1a, 0x0d, 0x5a, 0x8f, 0x37, 0x34, 0x7f, 0x4d, 0xf3, 0xab, 0xd1, 0xa1, 0x9d, 0x63, 0x8e, 0x0d, + 0x23, 0xa8, 0xbf, 0x5a, 0xf2, 0xa1, 0x9b, 0x22, 0x95, 0x48, 0x41, 0x12, 0x13, 0x04, 0xd5, 0x28, + 0x01, 0x13, 0x8f, 0x82, 0x14, 0x85, 0x6c, 0xf1, 0x93, 0x2f, 0x7d, 0x7e, 0xf0, 0x36, 0xcb, 0x2e, + 0x28, 0x9f, 0x00, 0x4c, 0xd7, 0x4a, 0x96, 0xcd, 0x77, 0x8c, 0x30, 0x05, 0x38, 0xcc, 0x63, 0xa7, + 0xc3, 0xb0, 0x2d, 0x2c, 0x8f, 0xef, 0x65, 0x40, 0xa9, 0x16, 0xca, 0x08, 0x94, 0x4e, 0xbf, 0xc1, + 0x6e, 0x3f, 0x59, 0x1e, 0x7f, 0x58, 0x52, 0x1e, 0x99, 0x2b, 0x05, 0xd1, 0x42, 0x17, 0xce, 0x83, + 0x86, 0xc2, 0x4b, 0xca, 0x3f, 0x5c, 0x29, 0x98, 0xe9, 0xc2, 0x9a, 0xf0, 0xfd, 0x38, 0xcb, 0x44, + 0xcd, 0x8e, 0x8b, 0xe8, 0x12, 0xc0, 0x19, 0x78, 0xec, 0x74, 0xef, 0xd5, 0x53, 0xbf, 0x35, 0xea, + 0xd7, 0x46, 0xfd, 0xb5, 0x51, 0xff, 0x1c, 0x85, 0x1c, 0x0f, 0xae, 0x7f, 0x1e, 0xf7, 0xc2, 0x47, + 0x9b, 0xdf, 0x26, 0x00, 0xd6, 0x11, 0x1f, 0x6a, 0x48, 0x85, 0x12, 0x20, 0x8d, 0xb3, 0xd3, 0xc8, + 0x6c, 0x1e, 0xac, 0xd7, 0xfc, 0x49, 0x57, 0x44, 0x49, 0x4c, 0x82, 0x22, 0x85, 0x42, 0x1a, 0x72, + 0x76, 0x1b, 0xaa, 0xdd, 0xa1, 0xe3, 0x1a, 0x9c, 0x36, 0xd8, 0x9b, 0xc1, 0xef, 0xef, 0xc7, 0xec, + 0xe4, 0x5b, 0x9f, 0xdb, 0x33, 0x95, 0xc5, 0x06, 0xee, 0x87, 0xd2, 0x0d, 0xa5, 0xe2, 0x76, 0x08, + 0x25, 0x56, 0xff, 0x6d, 0x26, 0x6b, 0xdd, 0xcf, 0x8c, 0x1f, 0xb5, 0xcb, 0x78, 0x3f, 0x8f, 0x69, + 0x3e, 0x05, 0x3d, 0xa3, 0xec, 0x42, 0x14, 0x5b, 0x1b, 0x78, 0xce, 0x0f, 0x64, 0xdd, 0x31, 0x52, + 0xa0, 0xa3, 0x05, 0x65, 0x51, 0x29, 0x5a, 0x17, 0x83, 0x70, 0x5f, 0xfe, 0x23, 0xf5, 0xf7, 0x2c, + 0x18, 0xf7, 0x5a, 0x27, 0xe7, 0x28, 0x2b, 0xd0, 0x24, 0x50, 0x4e, 0x00, 0xde, 0x81, 0xc4, 0x72, + 0x6b, 0x37, 0x2f, 0xb9, 0x9d, 0x76, 0x5d, 0xeb, 0x03, 0x88, 0xb2, 0xba, 0x6f, 0x73, 0x06, 0xc3, + 0xd0, 0x4a, 0xef, 0x28, 0xb6, 0xa6, 0xc6, 0xe2, 0x7a, 0xe9, 0xb2, 0x9b, 0xa5, 0xcb, 0x7e, 0x2d, + 0x5d, 0xf6, 0x75, 0xe5, 0xf6, 0x6e, 0x56, 0x6e, 0xef, 0xc7, 0xca, 0xed, 0x71, 0x47, 0x34, 0x09, + 0x70, 0x37, 0x27, 0xa6, 0xec, 0xe3, 0x59, 0x2e, 0xcc, 0x7c, 0x91, 0xf8, 0x29, 0x96, 0xc1, 0x86, + 0xf3, 0x42, 0xe0, 0xad, 0x2a, 0xf8, 0xd4, 0x45, 0x50, 0xbd, 0x24, 0x4a, 0x76, 0x9b, 0xbc, 0x38, + 0xfb, 0x13, 0x00, 0x00, 0xff, 0xff, 0x25, 0xa7, 0x25, 0xea, 0xa5, 0x04, 0x00, 0x00, } func (this *AddMsgFeeProposal) Equal(that interface{}) bool { diff --git a/x/msgfees/types/query.pb.go b/x/msgfees/types/query.pb.go index 894c510d5d..98b8f3aa6b 100644 --- a/x/msgfees/types/query.pb.go +++ b/x/msgfees/types/query.pb.go @@ -10,6 +10,7 @@ import ( github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" @@ -358,50 +359,52 @@ func init() { func init() { proto.RegisterFile("provenance/msgfees/v1/query.proto", fileDescriptor_73f2d53a5aebf81b) } var fileDescriptor_73f2d53a5aebf81b = []byte{ - // 682 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x94, 0xbf, 0x53, 0x13, 0x4f, - 0x18, 0xc6, 0xb3, 0x81, 0x2f, 0x3f, 0xf6, 0xcb, 0x0f, 0x67, 0x45, 0x08, 0x19, 0x38, 0xf0, 0x18, - 0x14, 0x18, 0xb9, 0x35, 0x60, 0xe1, 0x68, 0x45, 0x70, 0xa0, 0x72, 0x06, 0x6f, 0xac, 0x6c, 0xce, - 0x4d, 0x6e, 0x59, 0x0f, 0xef, 0x6e, 0x8f, 0xec, 0x26, 0x13, 0x5a, 0x0b, 0xc7, 0xd2, 0x19, 0x2d, - 0x2d, 0xac, 0x2c, 0xfc, 0x4b, 0x28, 0x99, 0xb1, 0xb1, 0x52, 0x07, 0xfc, 0x43, 0x9c, 0xdd, 0xbd, - 0x24, 0x17, 0x92, 0x20, 0x85, 0x15, 0x64, 0xf7, 0x79, 0xf7, 0xf9, 0xbc, 0x6f, 0x9e, 0x37, 0xf0, - 0x76, 0x52, 0xe3, 0x0d, 0x1a, 0x93, 0xb8, 0x4a, 0x71, 0x24, 0xd8, 0x21, 0xa5, 0x02, 0x37, 0x4a, - 0xf8, 0xb8, 0x4e, 0x6b, 0x27, 0x4e, 0x52, 0xe3, 0x92, 0xa3, 0x5b, 0x1d, 0x89, 0x93, 0x4a, 0x9c, - 0x46, 0xa9, 0x38, 0xc3, 0x38, 0xe3, 0x5a, 0x81, 0xd5, 0x7f, 0x46, 0x5c, 0x5c, 0x60, 0x9c, 0xb3, - 0x90, 0x62, 0x92, 0x04, 0x98, 0xc4, 0x31, 0x97, 0x44, 0x06, 0x3c, 0x16, 0xe9, 0xed, 0x4a, 0x7f, - 0xb7, 0xd6, 0xab, 0x46, 0x64, 0x55, 0xb9, 0x88, 0xb8, 0xc0, 0x15, 0x22, 0x28, 0x6e, 0x94, 0x2a, - 0x54, 0x92, 0x12, 0xae, 0xf2, 0x20, 0x4e, 0xef, 0x37, 0xb2, 0xf7, 0x1a, 0xb4, 0xad, 0x4a, 0x08, - 0x0b, 0x62, 0xed, 0x68, 0xb4, 0xf6, 0x0c, 0x44, 0xcf, 0x94, 0xe2, 0x80, 0xd4, 0x48, 0x24, 0x5c, - 0x7a, 0x5c, 0xa7, 0x42, 0xda, 0x2e, 0xbc, 0xd9, 0x75, 0x2a, 0x12, 0x1e, 0x0b, 0x8a, 0x1e, 0xc3, - 0x91, 0x44, 0x9f, 0x14, 0xc0, 0x32, 0x58, 0xfb, 0x7f, 0x6b, 0xd1, 0xe9, 0xdb, 0xb9, 0x63, 0xca, - 0xca, 0xc3, 0xa7, 0x3f, 0x96, 0x72, 0x6e, 0x5a, 0x62, 0xbf, 0x84, 0xb3, 0xfa, 0xcd, 0x9d, 0x30, - 0x7c, 0x2a, 0xd8, 0x1e, 0xa5, 0x2d, 0x37, 0xb4, 0x07, 0x61, 0x87, 0xab, 0x90, 0xd7, 0x4f, 0xdf, - 0x71, 0x4c, 0x13, 0x8e, 0x6a, 0xc2, 0x31, 0xd3, 0x4e, 0x9b, 0x70, 0x0e, 0x08, 0xa3, 0x69, 0xad, - 0x9b, 0xa9, 0xb4, 0x3f, 0x01, 0x38, 0xd7, 0x63, 0x91, 0xa2, 0x3f, 0x84, 0x63, 0x91, 0x60, 0x9e, - 0x22, 0x2c, 0x80, 0xe5, 0xa1, 0x2b, 0xe0, 0x4d, 0xa5, 0x3b, 0x1a, 0x99, 0x17, 0xd0, 0x7e, 0x1f, - 0xba, 0xbb, 0x7f, 0xa5, 0x33, 0xb6, 0x5d, 0x78, 0xef, 0x00, 0x9c, 0xdd, 0x25, 0x61, 0xb5, 0x1e, - 0x12, 0x49, 0x9f, 0x37, 0xb3, 0x13, 0x98, 0x87, 0x63, 0xb2, 0xe9, 0x55, 0x4e, 0x24, 0x35, 0xa3, - 0x9d, 0x70, 0x47, 0x65, 0xb3, 0xac, 0x3e, 0xa2, 0x7b, 0x10, 0xf9, 0xf4, 0x90, 0xd4, 0x43, 0xe9, - 0x29, 0x33, 0xcf, 0xa7, 0x31, 0x8f, 0x34, 0xc6, 0xb8, 0x7b, 0x23, 0xbd, 0x29, 0x13, 0x41, 0x9f, - 0xa8, 0x73, 0xb4, 0x0a, 0xa7, 0x18, 0x11, 0x1e, 0xf1, 0x8f, 0xea, 0x42, 0x46, 0x34, 0x96, 0x85, - 0xa1, 0x65, 0xb0, 0x96, 0x77, 0x27, 0x19, 0x11, 0x3b, 0xed, 0x43, 0xfb, 0x73, 0x1e, 0xce, 0xf5, - 0xa0, 0xa4, 0x93, 0x92, 0x70, 0x9a, 0xf8, 0x7e, 0xa0, 0x90, 0x49, 0x98, 0x1d, 0xd8, 0x7c, 0x57, - 0xd3, 0xad, 0x76, 0x77, 0x79, 0x10, 0x97, 0xef, 0xab, 0x6f, 0xfa, 0xeb, 0xcf, 0xa5, 0x35, 0x16, - 0xc8, 0x57, 0xf5, 0x8a, 0x53, 0xe5, 0x11, 0x4e, 0x43, 0x68, 0xfe, 0x6c, 0x0a, 0xff, 0x35, 0x96, - 0x27, 0x09, 0x15, 0xba, 0x40, 0xb8, 0x53, 0x1d, 0x0f, 0x3d, 0xe5, 0x23, 0x08, 0x25, 0x97, 0x2d, - 0xc3, 0xfc, 0xbf, 0x37, 0x1c, 0xd7, 0xcf, 0x6b, 0xaf, 0x15, 0x38, 0x49, 0x85, 0x0c, 0x22, 0x22, - 0xa9, 0xef, 0x31, 0x22, 0xf4, 0x8c, 0x86, 0xdd, 0x89, 0xf6, 0xe1, 0x3e, 0x11, 0x5b, 0x67, 0x43, - 0xf0, 0x3f, 0x1d, 0x26, 0xf4, 0x16, 0xc0, 0x11, 0x93, 0x68, 0xb4, 0x3e, 0x20, 0x33, 0xbd, 0x2b, - 0x54, 0xdc, 0xb8, 0x8e, 0xd4, 0x8c, 0xdc, 0x5e, 0x7d, 0xf3, 0xed, 0xf7, 0x87, 0xfc, 0x12, 0x5a, - 0xc4, 0xfd, 0xd7, 0xdf, 0x6c, 0x10, 0xfa, 0x08, 0xe0, 0xf4, 0xa5, 0x7c, 0xa3, 0xcd, 0xab, 0x6c, - 0x7a, 0x56, 0xad, 0xe8, 0x5c, 0x57, 0x9e, 0x92, 0xd9, 0x9a, 0x6c, 0x01, 0x15, 0x07, 0x90, 0x91, - 0x30, 0x44, 0x5f, 0x00, 0x9c, 0xbe, 0x14, 0xa6, 0x81, 0x58, 0xfd, 0xf3, 0x3f, 0x10, 0x6b, 0x40, - 0x46, 0xed, 0x07, 0x1a, 0xcb, 0x79, 0x04, 0x36, 0xec, 0xf5, 0x2c, 0x99, 0x6c, 0x2a, 0xa8, 0x6a, - 0xab, 0xca, 0x53, 0x2b, 0xaf, 0xc2, 0xe3, 0xab, 0x58, 0x95, 0x83, 0xd3, 0x73, 0x0b, 0x9c, 0x9d, - 0x5b, 0xe0, 0xd7, 0xb9, 0x05, 0xde, 0x5f, 0x58, 0xb9, 0xb3, 0x0b, 0x2b, 0xf7, 0xfd, 0xc2, 0xca, - 0xc1, 0x42, 0xc0, 0xfb, 0x13, 0x1c, 0x80, 0x17, 0xdb, 0x99, 0x88, 0x75, 0x34, 0x9b, 0x01, 0xcf, - 0x1a, 0x37, 0xdb, 0x43, 0xd1, 0x99, 0xab, 0x8c, 0xe8, 0x5f, 0xd7, 0xed, 0x3f, 0x01, 0x00, 0x00, - 0xff, 0xff, 0x11, 0xa8, 0x5e, 0xca, 0x3e, 0x06, 0x00, 0x00, + // 718 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x94, 0xcf, 0x4f, 0x13, 0x4d, + 0x18, 0xc7, 0x3b, 0x85, 0x97, 0x1f, 0xf3, 0xf2, 0xe3, 0x7d, 0x47, 0x84, 0xd2, 0x40, 0xc1, 0x25, + 0x28, 0x34, 0xb2, 0x9b, 0x82, 0x07, 0xa3, 0x27, 0x8a, 0x81, 0x93, 0x09, 0x6e, 0x3c, 0x79, 0x59, + 0xa7, 0xbb, 0xc3, 0xb8, 0xba, 0xbb, 0xb3, 0x74, 0xa6, 0x4d, 0x7b, 0x33, 0x1e, 0x8c, 0xf1, 0x64, + 0xa2, 0x27, 0xe3, 0xd9, 0x18, 0x4f, 0xfc, 0x19, 0x9c, 0x0c, 0x89, 0x17, 0x4f, 0x6a, 0xc0, 0x84, + 0x7f, 0xc3, 0xcc, 0xcc, 0xb6, 0x5d, 0x68, 0x8b, 0x9c, 0xbc, 0xc0, 0xf6, 0x99, 0xe7, 0x99, 0xef, + 0x67, 0x9e, 0xf9, 0x3e, 0x03, 0xaf, 0xc5, 0x55, 0x56, 0x27, 0x11, 0x8e, 0x5c, 0x62, 0x85, 0x9c, + 0xee, 0x11, 0xc2, 0xad, 0x7a, 0xc9, 0xda, 0xaf, 0x91, 0x6a, 0xd3, 0x8c, 0xab, 0x4c, 0x30, 0x74, + 0xb5, 0x93, 0x62, 0x26, 0x29, 0x66, 0xbd, 0x94, 0xff, 0x1f, 0x87, 0x7e, 0xc4, 0x2c, 0xf5, 0x57, + 0x67, 0xe6, 0xa7, 0x28, 0xa3, 0x4c, 0x7d, 0x5a, 0xf2, 0x2b, 0x89, 0xce, 0x51, 0xc6, 0x68, 0x40, + 0x2c, 0x1c, 0xfb, 0x16, 0x8e, 0x22, 0x26, 0xb0, 0xf0, 0x59, 0xc4, 0x93, 0xd5, 0xa5, 0xde, 0x00, + 0x2d, 0x21, 0x9d, 0x54, 0x70, 0x19, 0x0f, 0x19, 0xb7, 0x2a, 0x98, 0x13, 0xab, 0x5e, 0xaa, 0x10, + 0x81, 0x4b, 0x96, 0xcb, 0xfc, 0x28, 0x59, 0x2f, 0xa6, 0xd7, 0x15, 0x7b, 0x3b, 0x2b, 0xc6, 0xd4, + 0x8f, 0x94, 0xa2, 0xce, 0x35, 0xa6, 0x20, 0x7a, 0x20, 0x33, 0x76, 0x71, 0x15, 0x87, 0xdc, 0x26, + 0xfb, 0x35, 0xc2, 0x85, 0x61, 0xc3, 0x2b, 0x67, 0xa2, 0x3c, 0x66, 0x11, 0x27, 0xe8, 0x2e, 0x1c, + 0x8a, 0x55, 0x24, 0x07, 0x16, 0xc1, 0xca, 0xbf, 0xeb, 0xf3, 0x66, 0xcf, 0x66, 0x98, 0xba, 0xac, + 0x3c, 0x78, 0xf8, 0x7d, 0x21, 0x63, 0x27, 0x25, 0xc6, 0x63, 0x38, 0xad, 0xf6, 0xdc, 0x0c, 0x82, + 0xfb, 0x9c, 0x6e, 0x13, 0xd2, 0x52, 0x43, 0xdb, 0x10, 0x76, 0xb8, 0x72, 0x59, 0xb5, 0xf5, 0x75, + 0x53, 0x1f, 0xc2, 0x94, 0x87, 0x30, 0xf5, 0x05, 0x24, 0x87, 0x30, 0x77, 0x31, 0x25, 0x49, 0xad, + 0x9d, 0xaa, 0x34, 0x3e, 0x00, 0x38, 0xd3, 0x25, 0x91, 0xa0, 0xdf, 0x86, 0x23, 0x21, 0xa7, 0x8e, + 0x24, 0xcc, 0x81, 0xc5, 0x81, 0x0b, 0xe0, 0x75, 0xa5, 0x3d, 0x1c, 0xea, 0x1d, 0xd0, 0x4e, 0x0f, + 0xba, 0x1b, 0x7f, 0xa4, 0xd3, 0xb2, 0x67, 0xf0, 0x5e, 0x01, 0x38, 0xbd, 0x85, 0x03, 0xb7, 0x16, + 0x60, 0x41, 0x1e, 0x36, 0xd2, 0x1d, 0x98, 0x85, 0x23, 0xa2, 0xe1, 0x54, 0x9a, 0x82, 0xe8, 0xd6, + 0x8e, 0xd9, 0xc3, 0xa2, 0x51, 0x96, 0x3f, 0xd1, 0x4d, 0x88, 0x3c, 0xb2, 0x87, 0x6b, 0x81, 0x70, + 0xa4, 0x98, 0xe3, 0x91, 0x88, 0x85, 0x0a, 0x63, 0xd4, 0xfe, 0x2f, 0x59, 0x29, 0x63, 0x4e, 0xee, + 0xc9, 0x38, 0x5a, 0x86, 0x13, 0x14, 0x73, 0x07, 0x7b, 0x4f, 0x6b, 0x5c, 0x84, 0x24, 0x12, 0xb9, + 0x81, 0x45, 0xb0, 0x92, 0xb5, 0xc7, 0x29, 0xe6, 0x9b, 0xed, 0xa0, 0xf1, 0x25, 0x0b, 0x67, 0xba, + 0x50, 0x92, 0x4e, 0xbd, 0x06, 0x70, 0x12, 0x7b, 0x9e, 0x2f, 0x99, 0x71, 0x90, 0xee, 0xd8, 0xec, + 0x99, 0x53, 0xb7, 0xce, 0xbb, 0xc5, 0xfc, 0xa8, 0xbc, 0x2d, 0xaf, 0xfa, 0xf3, 0x8f, 0x85, 0x15, + 0xea, 0x8b, 0x27, 0xb5, 0x8a, 0xe9, 0xb2, 0xd0, 0x4a, 0x5c, 0xa8, 0xff, 0xad, 0x71, 0xef, 0x99, + 0x25, 0x9a, 0x31, 0xe1, 0xaa, 0x80, 0xbf, 0x3f, 0x3d, 0x28, 0x8e, 0x05, 0x84, 0x62, 0xb7, 0xe9, + 0x48, 0xeb, 0xf2, 0x4f, 0xa7, 0x07, 0x45, 0x60, 0x4f, 0x74, 0x94, 0x55, 0xf3, 0x9f, 0x03, 0x08, + 0x05, 0x13, 0x2d, 0x8e, 0xec, 0xdf, 0xe2, 0x18, 0x55, 0xa2, 0x0a, 0x61, 0x09, 0x8e, 0x13, 0x2e, + 0xfc, 0x10, 0x0b, 0xe2, 0x39, 0x14, 0x73, 0xd5, 0xd1, 0x41, 0x7b, 0xac, 0x1d, 0xdc, 0xc1, 0x7c, + 0xfd, 0x68, 0x00, 0xfe, 0xa3, 0xac, 0x87, 0x5e, 0x02, 0x38, 0xa4, 0xfd, 0x8f, 0x56, 0xfb, 0x38, + 0xac, 0x7b, 0xe0, 0xf2, 0xc5, 0xcb, 0xa4, 0xea, 0x0b, 0x32, 0x96, 0x5f, 0x7c, 0xfd, 0xf5, 0x36, + 0xbb, 0x80, 0xe6, 0xad, 0xde, 0x8f, 0x85, 0x9e, 0x37, 0xf4, 0x0e, 0xc0, 0xc9, 0x73, 0xd3, 0x80, + 0xd6, 0x2e, 0x92, 0xe9, 0x1a, 0xcc, 0xbc, 0x79, 0xd9, 0xf4, 0x84, 0xcc, 0x50, 0x64, 0x73, 0x28, + 0xdf, 0x87, 0x0c, 0x07, 0x01, 0xfa, 0x08, 0xe0, 0xe4, 0x39, 0xeb, 0xf5, 0xc5, 0xea, 0x3d, 0x2d, + 0x7d, 0xb1, 0xfa, 0x38, 0xda, 0xb8, 0xa5, 0xb0, 0xcc, 0x3b, 0xa0, 0x68, 0xac, 0xa6, 0xc9, 0x44, + 0x43, 0x42, 0xb9, 0xad, 0x2a, 0x47, 0x3e, 0x10, 0xd2, 0x52, 0x9e, 0x34, 0x5b, 0xd9, 0x3f, 0x3c, + 0x2e, 0x80, 0xa3, 0xe3, 0x02, 0xf8, 0x79, 0x5c, 0x00, 0x6f, 0x4e, 0x0a, 0x99, 0xa3, 0x93, 0x42, + 0xe6, 0xdb, 0x49, 0x21, 0x03, 0x73, 0x3e, 0xeb, 0x4d, 0xb0, 0x0b, 0x1e, 0x6d, 0xa4, 0x8c, 0xd7, + 0xc9, 0x59, 0xf3, 0x59, 0x5a, 0xb8, 0xd1, 0x6e, 0x8a, 0x72, 0x62, 0x65, 0x48, 0xbd, 0xc5, 0x1b, + 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x36, 0xb4, 0xcd, 0xe3, 0x7f, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/msgfees/types/tx.pb.go b/x/msgfees/types/tx.pb.go index e910a4fcf6..18071f1c96 100644 --- a/x/msgfees/types/tx.pb.go +++ b/x/msgfees/types/tx.pb.go @@ -9,6 +9,7 @@ import ( _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/cosmos-sdk/types/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" @@ -235,7 +236,7 @@ type MsgUpdateMsgFeeProposalRequest struct { MsgTypeUrl string `protobuf:"bytes,1,opt,name=msg_type_url,json=msgTypeUrl,proto3" json:"msg_type_url,omitempty"` // additional fee for msg type AdditionalFee types.Coin `protobuf:"bytes,2,opt,name=additional_fee,json=additionalFee,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"additional_fee"` - // optional recipient to recieve basis points + // optional recipient to receive basis points Recipient string `protobuf:"bytes,3,opt,name=recipient,proto3" json:"recipient,omitempty"` // basis points to use when recipient is present (1 - 10,000) RecipientBasisPoints string `protobuf:"bytes,4,opt,name=recipient_basis_points,json=recipientBasisPoints,proto3" json:"recipient_basis_points,omitempty"` @@ -654,57 +655,59 @@ func init() { func init() { proto.RegisterFile("provenance/msgfees/v1/tx.proto", fileDescriptor_4c6bb65eaf858b5f) } var fileDescriptor_4c6bb65eaf858b5f = []byte{ - // 791 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x56, 0xcf, 0x6b, 0x13, 0x4f, - 0x14, 0xcf, 0xa6, 0xf9, 0x16, 0x3a, 0x5f, 0x2d, 0x74, 0x88, 0x9a, 0xc6, 0xba, 0x89, 0x39, 0x68, - 0x5b, 0xc9, 0x6e, 0xd3, 0xd4, 0x0a, 0x05, 0x85, 0xa6, 0xd2, 0x5b, 0x24, 0x44, 0x7b, 0xf1, 0xb2, - 0x6c, 0xb2, 0xd3, 0xcd, 0x60, 0x76, 0x66, 0xdd, 0x37, 0x09, 0x2d, 0x08, 0x82, 0x20, 0x88, 0x27, - 0xef, 0x22, 0xf4, 0x24, 0xe8, 0xc9, 0x83, 0x7f, 0x44, 0x6f, 0x96, 0x9e, 0x3c, 0x69, 0x69, 0x41, - 0xfd, 0x33, 0x64, 0x77, 0xc7, 0xa4, 0x6d, 0x92, 0x8d, 0xfd, 0x71, 0xf4, 0x94, 0x9d, 0x7c, 0x3e, - 0xef, 0xbd, 0xcf, 0xfb, 0xec, 0xbc, 0x99, 0x45, 0xaa, 0xeb, 0xf1, 0x36, 0x61, 0x26, 0xab, 0x13, - 0xdd, 0x01, 0x7b, 0x9d, 0x10, 0xd0, 0xdb, 0x05, 0x5d, 0x6c, 0x68, 0xae, 0xc7, 0x05, 0xc7, 0x97, - 0xba, 0xb8, 0x26, 0x71, 0xad, 0x5d, 0x48, 0x27, 0x6d, 0x6e, 0xf3, 0x80, 0xa1, 0xfb, 0x4f, 0x21, - 0x39, 0x3d, 0x59, 0xe7, 0xe0, 0x70, 0x30, 0x42, 0x20, 0x5c, 0x48, 0x48, 0x0d, 0x57, 0x7a, 0xcd, - 0x04, 0xa2, 0xb7, 0x0b, 0x35, 0x22, 0xcc, 0x82, 0x5e, 0xe7, 0x94, 0x49, 0xfc, 0x8a, 0xc4, 0x1d, - 0xb0, 0xfd, 0xfa, 0x0e, 0xd8, 0x21, 0x90, 0xfb, 0xa1, 0xa0, 0xa9, 0x32, 0xd8, 0xcb, 0x00, 0x04, - 0x60, 0xa5, 0x05, 0x82, 0x3b, 0x65, 0xb0, 0x57, 0x09, 0xa9, 0x92, 0xa7, 0x2d, 0x02, 0x02, 0x63, - 0x94, 0x60, 0xa6, 0x43, 0x52, 0x4a, 0x56, 0x99, 0x1e, 0xab, 0x06, 0xcf, 0xf8, 0x0e, 0x1a, 0x35, - 0x1d, 0xde, 0x62, 0x22, 0x15, 0xcf, 0x2a, 0xd3, 0xff, 0xcf, 0x4f, 0x6a, 0x52, 0x8c, 0x5f, 0x5e, - 0x93, 0xe5, 0xb5, 0x15, 0x4e, 0x59, 0x29, 0xb1, 0xfd, 0x2d, 0x13, 0xab, 0x4a, 0x3a, 0x9e, 0x42, - 0x63, 0x1e, 0xa9, 0x53, 0x97, 0x12, 0x26, 0x52, 0x23, 0x41, 0xc6, 0xee, 0x1f, 0x7e, 0xa9, 0x75, - 0x8f, 0x3b, 0xa9, 0x44, 0x58, 0xca, 0x7f, 0xc6, 0x0b, 0xe8, 0x72, 0x87, 0x60, 0xd4, 0x4c, 0xa0, - 0x60, 0xb8, 0x9c, 0x32, 0x01, 0xa9, 0xff, 0x02, 0x56, 0xb2, 0x83, 0x96, 0x7c, 0xb0, 0x12, 0x60, - 0x4b, 0x13, 0xaf, 0xb6, 0x32, 0xb1, 0x5f, 0x5b, 0x99, 0xd8, 0x8b, 0x9f, 0x9f, 0x66, 0x83, 0x44, - 0xb9, 0x0c, 0xba, 0x36, 0xa0, 0x4f, 0x70, 0x39, 0x03, 0x92, 0xfb, 0x12, 0x47, 0x57, 0x7d, 0x86, - 0x65, 0x85, 0x40, 0xc5, 0xe3, 0x2e, 0x07, 0xb3, 0xf9, 0xc7, 0x88, 0x2c, 0xba, 0xe0, 0x80, 0x6d, - 0x88, 0x4d, 0x97, 0x18, 0x2d, 0xaf, 0x29, 0x0d, 0x41, 0x0e, 0xd8, 0x8f, 0x36, 0x5d, 0xb2, 0xe6, - 0x35, 0xb1, 0x87, 0xc6, 0x4d, 0xcb, 0xa2, 0x82, 0x72, 0x66, 0x36, 0x8d, 0x75, 0x42, 0x86, 0xdb, - 0x33, 0xe7, 0xdb, 0xf3, 0xf1, 0x7b, 0x66, 0xda, 0xa6, 0xa2, 0xd1, 0xaa, 0x69, 0x75, 0xee, 0xc8, - 0x17, 0x2b, 0x7f, 0xf2, 0x60, 0x3d, 0xd1, 0xfd, 0x9a, 0x10, 0x04, 0x40, 0xf5, 0x62, 0xb7, 0xc4, - 0x2a, 0x21, 0x43, 0x1c, 0x1d, 0xec, 0x5e, 0x62, 0xb0, 0x7b, 0x78, 0x11, 0x8d, 0x99, 0x2d, 0xd1, - 0xe0, 0x1e, 0x15, 0x9b, 0xa1, 0xcd, 0xa5, 0xd4, 0xee, 0xe7, 0x7c, 0x52, 0x76, 0xb1, 0x6c, 0x59, - 0x1e, 0x01, 0x78, 0x28, 0x3c, 0xca, 0xec, 0x6a, 0x97, 0xba, 0x34, 0xee, 0xbb, 0xdd, 0x5d, 0xe7, - 0xd4, 0x70, 0x6b, 0xf5, 0x1a, 0x2a, 0x1d, 0xdf, 0x8d, 0x23, 0xb5, 0x0c, 0xf6, 0x9a, 0x6b, 0x99, - 0x82, 0xfc, 0x33, 0xfd, 0x7c, 0x4c, 0xbf, 0x8e, 0x32, 0x03, 0x3d, 0x95, 0xbe, 0xbf, 0x56, 0x02, - 0xdf, 0xab, 0xc4, 0xe1, 0xed, 0x53, 0xfb, 0x7e, 0x44, 0x6f, 0xfc, 0xac, 0x7a, 0xfb, 0x6b, 0x91, - 0x7a, 0xdf, 0x2a, 0xe8, 0x46, 0xa7, 0xa7, 0x07, 0x0d, 0x13, 0x1a, 0x15, 0xe2, 0xad, 0x81, 0x55, - 0xa6, 0xcd, 0xe3, 0xba, 0x67, 0xd0, 0x04, 0xf3, 0x09, 0x86, 0x4b, 0x3c, 0xa3, 0x05, 0x96, 0xe1, - 0xd0, 0x50, 0x7c, 0xa2, 0x3a, 0xce, 0x8e, 0x44, 0x9e, 0x5b, 0x03, 0x33, 0xe8, 0xe6, 0x50, 0x71, - 0xb2, 0x91, 0xf7, 0x0a, 0x9a, 0xed, 0x70, 0x57, 0x38, 0x6b, 0x13, 0x0f, 0x28, 0x67, 0xab, 0x84, - 0xdc, 0x27, 0x8c, 0x3b, 0xc7, 0x9b, 0x99, 0x43, 0xc9, 0x7a, 0x87, 0xe4, 0x6f, 0x6d, 0xc3, 0xf2, - 0x69, 0xf2, 0x65, 0xe0, 0x7a, 0x4f, 0x82, 0x73, 0xeb, 0x29, 0x8f, 0x6e, 0xfd, 0x95, 0xce, 0xb0, - 0xaf, 0xf9, 0xbd, 0x51, 0x34, 0x52, 0x06, 0x1b, 0x3f, 0x47, 0xb8, 0xf7, 0x80, 0xc5, 0x45, 0xad, - 0xef, 0x25, 0xa7, 0x45, 0x5d, 0x3b, 0xe9, 0x85, 0x93, 0x05, 0x85, 0x42, 0xf0, 0x33, 0x34, 0xd1, - 0x73, 0xdc, 0xe0, 0xf9, 0x88, 0x54, 0x03, 0x0e, 0xfb, 0x74, 0xf1, 0x44, 0x31, 0xb2, 0xfa, 0x4b, - 0x05, 0x25, 0xfb, 0x0d, 0x1e, 0xbe, 0x3d, 0x38, 0x5b, 0xc4, 0xe1, 0x97, 0x5e, 0x3c, 0x69, 0xd8, - 0x21, 0x1d, 0xfd, 0x06, 0x2a, 0x4a, 0x47, 0xc4, 0x61, 0x10, 0xa5, 0x23, 0x6a, 0x6e, 0xf1, 0x3b, - 0x05, 0x4d, 0x45, 0xcd, 0x05, 0xbe, 0x3b, 0xac, 0xc1, 0xc8, 0x61, 0x4f, 0xdf, 0x3b, 0x6d, 0xb8, - 0xd4, 0xf7, 0x41, 0x41, 0xd9, 0x61, 0x7b, 0x1c, 0x2f, 0x0f, 0x2b, 0x32, 0x74, 0x8e, 0xd3, 0xa5, - 0xb3, 0xa4, 0x08, 0xb5, 0x96, 0xe8, 0xf6, 0xbe, 0xaa, 0xec, 0xec, 0xab, 0xca, 0xde, 0xbe, 0xaa, - 0xbc, 0x39, 0x50, 0x63, 0x3b, 0x07, 0x6a, 0xec, 0xeb, 0x81, 0x1a, 0x43, 0x29, 0xca, 0xfb, 0xe7, - 0xaf, 0x28, 0x8f, 0x8b, 0x87, 0x6e, 0xb8, 0x2e, 0x27, 0x4f, 0xf9, 0xa1, 0x95, 0xbe, 0xd1, 0xf9, - 0x32, 0x0d, 0xae, 0xbc, 0xda, 0x68, 0xf0, 0x65, 0x58, 0xfc, 0x1d, 0x00, 0x00, 0xff, 0xff, 0x70, - 0xa1, 0xb7, 0xa3, 0xbc, 0x0a, 0x00, 0x00, + // 827 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x56, 0xcf, 0x6f, 0xe3, 0x44, + 0x14, 0xce, 0xa4, 0xa1, 0x52, 0x87, 0x52, 0x29, 0xa3, 0x00, 0x69, 0x28, 0x4e, 0xc8, 0x01, 0xda, + 0xa0, 0xd8, 0xa4, 0x29, 0x45, 0xaa, 0x04, 0x52, 0x53, 0x94, 0x5b, 0x50, 0x14, 0xe8, 0x85, 0x8b, + 0xe5, 0xd8, 0x53, 0x67, 0x44, 0x3c, 0x63, 0xfc, 0x9c, 0xa8, 0x91, 0x90, 0x90, 0x90, 0x90, 0x2a, + 0x4e, 0x9c, 0x41, 0x48, 0x3d, 0x21, 0xe0, 0xd4, 0x03, 0x7f, 0x44, 0x8f, 0xd5, 0x9e, 0xf6, 0xb4, + 0x5b, 0xb5, 0x52, 0xbb, 0xfb, 0x5f, 0xac, 0x6c, 0xcf, 0x26, 0x6d, 0x93, 0x38, 0xdb, 0x1f, 0x7b, + 0xdb, 0x4b, 0x32, 0xe3, 0xef, 0x7b, 0xef, 0x7d, 0xef, 0x3d, 0xbf, 0x19, 0x63, 0xc5, 0xf5, 0x44, + 0x9f, 0x72, 0x83, 0x9b, 0x54, 0x73, 0xc0, 0xde, 0xa3, 0x14, 0xb4, 0x7e, 0x45, 0xf3, 0xf7, 0x55, + 0xd7, 0x13, 0xbe, 0x20, 0xef, 0x8e, 0x70, 0x55, 0xe2, 0x6a, 0xbf, 0x92, 0x4b, 0x1b, 0x0e, 0xe3, + 0x42, 0x0b, 0x7f, 0x23, 0x66, 0x2e, 0x63, 0x0b, 0x5b, 0x84, 0x4b, 0x2d, 0x58, 0xc9, 0xa7, 0xcb, + 0xa6, 0x00, 0x47, 0x80, 0x1e, 0x01, 0xd1, 0x46, 0x42, 0x4a, 0xb4, 0xd3, 0xda, 0x06, 0x50, 0xad, + 0x5f, 0x69, 0x53, 0xdf, 0xa8, 0x68, 0xa6, 0x60, 0x5c, 0xe2, 0xef, 0x4b, 0xdc, 0x01, 0x3b, 0x90, + 0xe4, 0x80, 0x1d, 0x01, 0xc5, 0x0b, 0x84, 0x57, 0x1a, 0x60, 0x6f, 0x03, 0x50, 0x80, 0x9d, 0x1e, + 0xf8, 0xc2, 0x69, 0x80, 0x5d, 0xa7, 0xb4, 0x45, 0x7f, 0xec, 0x51, 0xf0, 0x09, 0xc1, 0x29, 0x6e, + 0x38, 0x34, 0x8b, 0x0a, 0x68, 0x75, 0xa1, 0x15, 0xae, 0xc9, 0x17, 0x78, 0xde, 0x70, 0x44, 0x8f, + 0xfb, 0xd9, 0x64, 0x01, 0xad, 0xbe, 0xbd, 0xbe, 0xac, 0x4a, 0x31, 0x41, 0x78, 0x55, 0x86, 0x57, + 0x77, 0x04, 0xe3, 0xb5, 0xd4, 0xf1, 0x93, 0x7c, 0xa2, 0x25, 0xe9, 0x64, 0x05, 0x2f, 0x78, 0xd4, + 0x64, 0x2e, 0xa3, 0xdc, 0xcf, 0xce, 0x85, 0x1e, 0x47, 0x0f, 0x82, 0x50, 0x7b, 0x9e, 0x70, 0xb2, + 0xa9, 0x28, 0x54, 0xb0, 0x26, 0x1b, 0xf8, 0xbd, 0x21, 0x41, 0x6f, 0x1b, 0xc0, 0x40, 0x77, 0x05, + 0xe3, 0x3e, 0x64, 0xdf, 0x0a, 0x59, 0x99, 0x21, 0x5a, 0x0b, 0xc0, 0x66, 0x88, 0x6d, 0xa5, 0x0f, + 0x0e, 0xf3, 0x89, 0x67, 0x87, 0xf9, 0xc4, 0x2f, 0x97, 0x47, 0xa5, 0xd0, 0x51, 0x31, 0x8f, 0x3f, + 0x9c, 0x92, 0x27, 0xb8, 0x82, 0x03, 0x2d, 0x5e, 0x24, 0xf1, 0x07, 0x01, 0xc3, 0xb2, 0x22, 0xa0, + 0xe9, 0x09, 0x57, 0x80, 0xd1, 0x7d, 0x59, 0x88, 0x02, 0x5e, 0x74, 0xc0, 0xd6, 0xfd, 0x81, 0x4b, + 0xf5, 0x9e, 0xd7, 0x95, 0x05, 0xc1, 0x0e, 0xd8, 0xdf, 0x0d, 0x5c, 0xba, 0xeb, 0x75, 0xc9, 0x01, + 0xc2, 0x4b, 0x86, 0x65, 0x31, 0x9f, 0x09, 0x6e, 0x74, 0xf5, 0x3d, 0x4a, 0x67, 0xd7, 0xa7, 0x1e, + 0xd4, 0xe7, 0xbf, 0xa7, 0xf9, 0x55, 0x9b, 0xf9, 0x9d, 0x5e, 0x5b, 0x35, 0x85, 0x23, 0x3b, 0x2b, + 0xff, 0xca, 0x60, 0xfd, 0xa0, 0x05, 0x41, 0x21, 0x34, 0x80, 0x3f, 0x2e, 0x8f, 0x4a, 0x8b, 0x5d, + 0x6a, 0x1b, 0xe6, 0x40, 0x0f, 0x1a, 0x0c, 0xff, 0x5c, 0x1e, 0x95, 0x50, 0xeb, 0x9d, 0x51, 0xe0, + 0x3a, 0xa5, 0x33, 0x0a, 0x3d, 0xbd, 0xa8, 0xa9, 0xe9, 0x45, 0x25, 0x9b, 0x78, 0xc1, 0xe8, 0xf9, + 0x1d, 0xe1, 0x31, 0x7f, 0x10, 0x55, 0xbf, 0x96, 0x7d, 0xf4, 0x7f, 0x39, 0x23, 0x73, 0xdb, 0xb6, + 0x2c, 0x8f, 0x02, 0x7c, 0xeb, 0x7b, 0x8c, 0xdb, 0xad, 0x11, 0x75, 0x6b, 0x29, 0x68, 0xc2, 0x68, + 0x5f, 0x54, 0xa2, 0x37, 0x6e, 0xbc, 0xce, 0xb2, 0x11, 0xcf, 0x93, 0x58, 0x69, 0x80, 0xbd, 0xeb, + 0x5a, 0x86, 0x4f, 0xdf, 0xf4, 0xe2, 0xb5, 0xf6, 0xe2, 0x23, 0x9c, 0x9f, 0x5a, 0x6a, 0xd9, 0x8e, + 0xdf, 0x50, 0xd8, 0x8e, 0x16, 0x75, 0x44, 0xff, 0xce, 0xed, 0xb8, 0xa6, 0x37, 0x79, 0x5f, 0xbd, + 0x93, 0xb5, 0x48, 0xbd, 0x7f, 0x22, 0xfc, 0xf1, 0x30, 0xa7, 0x6f, 0x3a, 0x06, 0x74, 0x9a, 0xd4, + 0xdb, 0x05, 0xab, 0xc1, 0xba, 0x37, 0x75, 0xaf, 0xe1, 0x34, 0x0f, 0x08, 0xba, 0x4b, 0x3d, 0xbd, + 0x07, 0x96, 0xee, 0xb0, 0x48, 0x7c, 0xaa, 0xb5, 0xc4, 0xaf, 0x59, 0x3e, 0x58, 0x02, 0x6b, 0xf8, + 0x93, 0x99, 0xe2, 0x64, 0x22, 0x7f, 0x23, 0x5c, 0x1a, 0x72, 0x77, 0x04, 0xef, 0x53, 0x0f, 0x98, + 0xe0, 0x75, 0x4a, 0xbf, 0xa6, 0x5c, 0x38, 0x37, 0x93, 0xf9, 0x0c, 0x67, 0xcc, 0x21, 0x29, 0x78, + 0xe1, 0x75, 0x2b, 0xa0, 0xc9, 0x66, 0x10, 0x73, 0xcc, 0xc1, 0x83, 0xe5, 0x54, 0xc6, 0x9f, 0xbe, + 0x92, 0xce, 0x28, 0xaf, 0xf5, 0xd3, 0x79, 0x3c, 0xd7, 0x00, 0x9b, 0xfc, 0x8c, 0xc9, 0xf8, 0x71, + 0x4c, 0xaa, 0xea, 0xc4, 0x5b, 0x52, 0x8d, 0xbb, 0xa4, 0x72, 0x1b, 0xb7, 0x33, 0x8a, 0x84, 0x90, + 0x9f, 0x70, 0x7a, 0xec, 0x14, 0x22, 0xeb, 0x31, 0xae, 0xa6, 0x5c, 0x0d, 0xb9, 0xea, 0xad, 0x6c, + 0x64, 0xf4, 0x5f, 0x11, 0xce, 0x4c, 0x1a, 0x3c, 0xf2, 0xf9, 0x74, 0x6f, 0x31, 0x67, 0x62, 0x6e, + 0xf3, 0xb6, 0x66, 0x57, 0x74, 0x4c, 0x1a, 0xa8, 0x38, 0x1d, 0x31, 0x87, 0x41, 0x9c, 0x8e, 0xb8, + 0xb9, 0x25, 0x7f, 0x21, 0xbc, 0x12, 0x37, 0x17, 0xe4, 0xcb, 0x59, 0x09, 0xc6, 0x0e, 0x7b, 0xee, + 0xab, 0xbb, 0x9a, 0x4b, 0x7d, 0xff, 0x22, 0x5c, 0x98, 0xf5, 0x8e, 0x93, 0xed, 0x59, 0x41, 0x66, + 0xce, 0x71, 0xae, 0x76, 0x1f, 0x17, 0x91, 0xd6, 0x1a, 0x3b, 0x3e, 0x53, 0xd0, 0xc9, 0x99, 0x82, + 0x4e, 0xcf, 0x14, 0xf4, 0xfb, 0xb9, 0x92, 0x38, 0x39, 0x57, 0x12, 0x8f, 0xcf, 0x95, 0x04, 0xce, + 0x32, 0x31, 0xd9, 0x7f, 0x13, 0x7d, 0x5f, 0xbd, 0x72, 0xef, 0x8d, 0x38, 0x65, 0x26, 0xae, 0xec, + 0xb4, 0xfd, 0xe1, 0xa7, 0x6d, 0x78, 0x11, 0xb6, 0xe7, 0xc3, 0xef, 0xc8, 0xea, 0x8b, 0x00, 0x00, + 0x00, 0xff, 0xff, 0xa5, 0xdc, 0x57, 0x6b, 0xfd, 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/quarantine/events.pb.go b/x/quarantine/events.pb.go index 5eff7461d5..472077ed50 100644 --- a/x/quarantine/events.pb.go +++ b/x/quarantine/events.pb.go @@ -8,6 +8,7 @@ import ( _ "github.com/cosmos/cosmos-proto" 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/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" @@ -234,28 +235,30 @@ func init() { } var fileDescriptor_33c74f079d23a045 = []byte{ - // 336 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x92, 0xb1, 0x4e, 0x3a, 0x41, - 0x10, 0xc6, 0x6f, 0xff, 0xff, 0x68, 0xc2, 0xd2, 0x5d, 0x30, 0x01, 0x8a, 0x85, 0x50, 0x18, 0x1a, - 0xee, 0x40, 0x0b, 0x6b, 0x31, 0x90, 0x68, 0x43, 0xc4, 0xce, 0x86, 0xec, 0xdd, 0x6d, 0xce, 0x8d, - 0xb2, 0x73, 0xde, 0xec, 0x11, 0x7d, 0x0b, 0x9f, 0xc3, 0xca, 0x44, 0x1f, 0x82, 0x92, 0x58, 0x59, - 0xa9, 0x81, 0x17, 0x31, 0x77, 0xbb, 0x08, 0x35, 0x95, 0xd5, 0xdd, 0xcc, 0x7c, 0xdf, 0x6f, 0x27, - 0x5f, 0x86, 0x1e, 0x86, 0x80, 0x53, 0x40, 0xff, 0x3e, 0xe3, 0x29, 0x57, 0x5a, 0x2a, 0xe1, 0xcf, - 0x7a, 0x81, 0xd0, 0xbc, 0xe7, 0x8b, 0x99, 0x50, 0x1a, 0xbd, 0x24, 0x05, 0x0d, 0x6e, 0xcd, 0xe8, - 0xbc, 0x8d, 0xce, 0xb3, 0xba, 0x3a, 0xb3, 0x88, 0x80, 0xe3, 0xc6, 0x1c, 0x82, 0x54, 0xc6, 0x5a, - 0xb7, 0xd6, 0x49, 0x51, 0xf9, 0x96, 0x63, 0x46, 0x95, 0x18, 0x62, 0x30, 0xfd, 0xfc, 0xcf, 0x74, - 0x5b, 0x03, 0x4a, 0x07, 0xf9, 0xdb, 0xa3, 0x44, 0x9f, 0x2b, 0xf7, 0x84, 0x52, 0x0d, 0x13, 0x1e, - 0x45, 0xa9, 0x40, 0xac, 0x92, 0x26, 0x69, 0x97, 0xfa, 0xd5, 0xf7, 0xb7, 0x4e, 0xc5, 0x92, 0x4e, - 0xcd, 0xe4, 0x4a, 0xa7, 0x52, 0xc5, 0xe3, 0x92, 0x06, 0xdb, 0x68, 0x0d, 0x69, 0x79, 0x8d, 0x19, - 0x65, 0x7a, 0x77, 0xce, 0x2b, 0xa1, 0x07, 0x05, 0x68, 0x98, 0xa9, 0x08, 0x2f, 0x7f, 0x03, 0x88, - 0x76, 0x46, 0xba, 0x9c, 0xee, 0xe5, 0x01, 0x61, 0xf5, 0x5f, 0xf3, 0x7f, 0xbb, 0x7c, 0x54, 0xf3, - 0xac, 0x21, 0x8f, 0x70, 0x9d, 0xab, 0x77, 0x06, 0x52, 0xf5, 0xbb, 0xf3, 0xcf, 0x86, 0xf3, 0xfc, - 0xd5, 0x68, 0xc7, 0x52, 0xdf, 0x64, 0x81, 0x17, 0xc2, 0xd4, 0x46, 0x68, 0x3f, 0x1d, 0x8c, 0x6e, - 0x7d, 0xfd, 0x98, 0x08, 0x2c, 0x0c, 0x38, 0x36, 0xe4, 0xd6, 0x0b, 0xa1, 0xee, 0x66, 0xeb, 0xb1, - 0xb8, 0x13, 0x1c, 0xff, 0xf6, 0xca, 0xfd, 0x8b, 0xf9, 0x92, 0x91, 0xc5, 0x92, 0x91, 0xef, 0x25, - 0x23, 0x4f, 0x2b, 0xe6, 0x2c, 0x56, 0xcc, 0xf9, 0x58, 0x31, 0xe7, 0xba, 0xbb, 0x85, 0x4a, 0x52, - 0x98, 0x09, 0xc5, 0x55, 0x28, 0x3a, 0x12, 0xb6, 0x2a, 0xff, 0x61, 0xeb, 0x88, 0x83, 0xfd, 0xe2, - 0x94, 0x8e, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x9c, 0xcc, 0x9c, 0x03, 0xe0, 0x02, 0x00, 0x00, + // 368 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4b, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x2f, 0x2c, 0x4d, 0x2c, 0x4a, 0xcc, 0x2b, 0xc9, 0xcc, 0x4b, 0xd5, 0x2f, 0x33, + 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x2d, 0x4b, 0xcd, 0x2b, 0x29, 0xd6, 0x2b, 0x28, 0xca, + 0x2f, 0xc9, 0x17, 0x92, 0x84, 0xa8, 0xd3, 0x43, 0xa8, 0xd3, 0x83, 0xaa, 0x93, 0x12, 0x4c, 0xcc, + 0xcd, 0xcc, 0xcb, 0xd7, 0x07, 0x93, 0x10, 0xd5, 0x52, 0x72, 0x50, 0x53, 0x93, 0x12, 0x8b, 0x11, + 0xe6, 0x25, 0xe7, 0x67, 0xe6, 0x41, 0xe5, 0xa1, 0xa6, 0xc5, 0x83, 0x79, 0xfa, 0x50, 0xa3, 0x21, + 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x10, 0x71, 0x10, 0x0b, 0x22, 0xaa, 0xe4, 0xca, 0xc5, 0xe5, + 0x0a, 0x72, 0x8e, 0x7f, 0x41, 0x89, 0x67, 0x9e, 0x90, 0x39, 0x17, 0x57, 0x49, 0x7e, 0x7c, 0x62, + 0x4a, 0x4a, 0x51, 0x6a, 0x71, 0xb1, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xa7, 0x93, 0xc4, 0xa5, 0x2d, + 0xba, 0x22, 0x50, 0x93, 0x1c, 0x21, 0x32, 0xc1, 0x25, 0x45, 0x99, 0x79, 0xe9, 0x41, 0x9c, 0x25, + 0xf9, 0x50, 0x01, 0x25, 0x37, 0x2e, 0x6e, 0x98, 0x31, 0xfe, 0xa5, 0x25, 0xe4, 0x9b, 0x73, 0x92, + 0x91, 0x4b, 0x14, 0x6c, 0x90, 0x5b, 0x69, 0x5e, 0x4a, 0x71, 0x20, 0x3c, 0x4c, 0x52, 0xc8, 0x36, + 0x52, 0xa8, 0x9c, 0x8b, 0x15, 0x14, 0x40, 0xc5, 0x12, 0x4c, 0x0a, 0xcc, 0x1a, 0xdc, 0x46, 0x92, + 0x7a, 0x50, 0x0d, 0xa0, 0x20, 0x84, 0x05, 0xb5, 0x9e, 0x73, 0x7e, 0x66, 0x9e, 0x93, 0xdb, 0x89, + 0x7b, 0xf2, 0x0c, 0xab, 0xee, 0xcb, 0x6b, 0xa4, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, + 0xe7, 0x42, 0x83, 0x10, 0x4a, 0xe9, 0x16, 0xa7, 0x64, 0xeb, 0x97, 0x54, 0x16, 0xa4, 0x16, 0x83, + 0x35, 0x14, 0xcf, 0x7a, 0xbe, 0x41, 0x8b, 0x27, 0x27, 0x35, 0x3d, 0x31, 0xb9, 0x32, 0x1e, 0x6c, + 0xc7, 0x8a, 0xe7, 0x1b, 0xb4, 0x18, 0x83, 0x20, 0xf6, 0x29, 0x1d, 0x63, 0xe4, 0x12, 0x42, 0xf8, + 0x25, 0x28, 0x35, 0x27, 0x35, 0xb1, 0x78, 0x28, 0x7a, 0xc4, 0xc9, 0xeb, 0xc4, 0x23, 0x39, 0xc6, + 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, + 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x0c, 0x90, 0x2c, 0x28, 0x28, 0xca, 0x2f, 0x4b, 0xcd, 0x4b, + 0xcc, 0x4b, 0x4e, 0xd5, 0xcd, 0xcc, 0x47, 0xe2, 0xe9, 0x57, 0x20, 0xe5, 0x81, 0x24, 0x36, 0x70, + 0xb2, 0x33, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x22, 0x32, 0x90, 0x8f, 0x1f, 0x03, 0x00, 0x00, } func (m *EventOptIn) Marshal() (dAtA []byte, err error) { diff --git a/x/quarantine/quarantine.pb.go b/x/quarantine/quarantine.pb.go index 64e8892c60..ea3f8c6274 100644 --- a/x/quarantine/quarantine.pb.go +++ b/x/quarantine/quarantine.pb.go @@ -8,6 +8,7 @@ import ( _ "github.com/cosmos/cosmos-proto" 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/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" @@ -385,43 +386,45 @@ func init() { } var fileDescriptor_0b055d4922680476 = []byte{ - // 574 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x54, 0x31, 0x6f, 0xd3, 0x40, - 0x18, 0xf5, 0x25, 0x05, 0xb5, 0xd7, 0xaa, 0x84, 0x53, 0xab, 0x3a, 0x41, 0xb8, 0x56, 0x97, 0x5a, - 0x95, 0xe2, 0x34, 0x65, 0x60, 0x60, 0x72, 0x5c, 0x47, 0x0a, 0x42, 0x69, 0x70, 0x92, 0x85, 0xc5, - 0x72, 0xec, 0x4b, 0x6a, 0x41, 0xee, 0xcc, 0xdd, 0xb9, 0x4a, 0xff, 0x01, 0x23, 0x13, 0x33, 0x12, - 0x1b, 0x33, 0x3f, 0xa2, 0x13, 0xaa, 0x98, 0x98, 0x0a, 0x4a, 0x46, 0xfe, 0x01, 0x13, 0x4a, 0xec, - 0x24, 0x0e, 0xa8, 0x01, 0x65, 0x62, 0x4a, 0xee, 0x7b, 0xf7, 0xde, 0x3d, 0xbf, 0x7b, 0x3a, 0x78, - 0xe4, 0x51, 0xde, 0xa7, 0xbc, 0xf4, 0x3a, 0x72, 0x99, 0x4b, 0x44, 0x40, 0x70, 0xe9, 0xa2, 0xdc, - 0xc1, 0xc2, 0x2d, 0xa7, 0x46, 0x7a, 0xc8, 0xa8, 0xa0, 0x28, 0x1f, 0xef, 0xd5, 0x53, 0x40, 0xb2, - 0xb7, 0xa0, 0x24, 0x32, 0x1d, 0x97, 0xcf, 0x05, 0x3c, 0x1a, 0x90, 0x98, 0x5a, 0x48, 0xa8, 0xce, - 0x64, 0x55, 0x4a, 0x74, 0x62, 0x68, 0xa7, 0x47, 0x7b, 0x34, 0x9e, 0x8f, 0xff, 0xc5, 0xd3, 0x83, - 0xf7, 0x19, 0x98, 0x7b, 0x3e, 0x3b, 0xc7, 0xaf, 0x46, 0xc4, 0xe7, 0xe8, 0x31, 0x84, 0x82, 0x3a, - 0xae, 0xef, 0x33, 0xcc, 0xb9, 0x0c, 0x54, 0xa0, 0x6d, 0x54, 0xe4, 0x2f, 0x9f, 0x8a, 0x3b, 0x89, - 0xa0, 0x11, 0x23, 0x4d, 0xc1, 0x02, 0xd2, 0xb3, 0x37, 0x04, 0x4d, 0x06, 0xa8, 0x05, 0xf3, 0x11, - 0x71, 0x3d, 0x0f, 0x87, 0x02, 0xfb, 0x4e, 0x97, 0xd1, 0xfe, 0x54, 0x05, 0x73, 0x39, 0xa3, 0x66, - 0x97, 0xea, 0xec, 0xcd, 0xa9, 0x55, 0x46, 0xfb, 0xc6, 0x94, 0x88, 0x5c, 0x78, 0x67, 0xfc, 0x89, - 0x5c, 0xce, 0xaa, 0x59, 0x6d, 0xf3, 0x24, 0xaf, 0x27, 0xf4, 0x71, 0x08, 0xd3, 0x64, 0x74, 0x93, - 0x06, 0xa4, 0x72, 0x7c, 0x75, 0xb3, 0x2f, 0x7d, 0xfc, 0xb6, 0xaf, 0xf5, 0x02, 0x71, 0x1e, 0x75, - 0x74, 0x8f, 0xf6, 0x93, 0x10, 0x92, 0x9f, 0x22, 0xf7, 0x5f, 0x96, 0xc4, 0x65, 0x88, 0xf9, 0x84, - 0xc0, 0xed, 0x58, 0x19, 0x15, 0xe0, 0xba, 0x8f, 0xbd, 0x57, 0xe3, 0x08, 0xe4, 0x35, 0x15, 0x68, - 0xeb, 0xf6, 0x6c, 0x7d, 0xf0, 0x19, 0xc0, 0xfb, 0x46, 0x24, 0xa8, 0x8d, 0x79, 0x48, 0x09, 0xc7, - 0x16, 0x11, 0xec, 0x72, 0xf5, 0x8c, 0x9e, 0xc0, 0xad, 0x74, 0x30, 0x72, 0xe6, 0x2f, 0xd4, 0xcd, - 0xee, 0x3c, 0x0c, 0x64, 0xc2, 0x75, 0x96, 0xd8, 0x90, 0xb3, 0x2a, 0xd0, 0xb6, 0x4f, 0x0e, 0xf5, - 0x5b, 0xdb, 0xa2, 0xa7, 0x5d, 0xdb, 0x33, 0xe2, 0xc1, 0x3b, 0x00, 0x51, 0x1a, 0x6a, 0x87, 0xbe, - 0x2b, 0xf0, 0x1f, 0xc6, 0xc0, 0xaa, 0xc6, 0x32, 0xab, 0x1a, 0xfb, 0xb1, 0x50, 0x46, 0x1b, 0x7b, - 0x94, 0xf9, 0xa8, 0xbf, 0xac, 0x53, 0x40, 0xcd, 0x6a, 0x5b, 0x95, 0xf2, 0xcf, 0x9b, 0xfd, 0xe2, - 0x3f, 0x5c, 0xb9, 0xe1, 0x79, 0x89, 0xdf, 0xdb, 0xcb, 0x16, 0xc0, 0xbd, 0x65, 0x05, 0x5e, 0xe9, - 0xb0, 0xdd, 0xff, 0xb2, 0xd7, 0x55, 0xf8, 0xe0, 0xf7, 0xb0, 0x9b, 0x51, 0xb7, 0x1b, 0x0c, 0x6a, - 0xc4, 0xc7, 0x03, 0x74, 0x08, 0xef, 0xb1, 0xc9, 0xd0, 0xe1, 0x93, 0xe9, 0x34, 0x6d, 0x7b, 0x9b, - 0xa5, 0xf6, 0x62, 0x7e, 0x74, 0x0e, 0xb7, 0xd2, 0xf7, 0x89, 0x1e, 0xc2, 0xbc, 0xd1, 0x6e, 0x9d, - 0x39, 0xb6, 0xd5, 0x6c, 0x9c, 0xd5, 0x9b, 0x96, 0xd3, 0xae, 0x37, 0x1b, 0x96, 0x59, 0xab, 0xd6, - 0xac, 0xd3, 0x9c, 0x84, 0x64, 0xb8, 0xb3, 0x08, 0x1b, 0xa6, 0x69, 0x35, 0x5a, 0x39, 0x80, 0xf2, - 0x70, 0x77, 0x11, 0x39, 0xb5, 0xcc, 0x67, 0xb5, 0xba, 0x95, 0xcb, 0x14, 0xd6, 0xde, 0x7c, 0x50, - 0xa4, 0xca, 0xd3, 0xab, 0xa1, 0x02, 0xae, 0x87, 0x0a, 0xf8, 0x3e, 0x54, 0xc0, 0xdb, 0x91, 0x22, - 0x5d, 0x8f, 0x14, 0xe9, 0xeb, 0x48, 0x91, 0x5e, 0x1c, 0xa7, 0x82, 0x09, 0x19, 0xbd, 0xc0, 0xc4, - 0x25, 0x1e, 0x2e, 0x06, 0x34, 0xb5, 0x2a, 0x0d, 0x52, 0x4f, 0x6d, 0xe7, 0xee, 0xe4, 0xfd, 0x7b, - 0xf4, 0x2b, 0x00, 0x00, 0xff, 0xff, 0xfc, 0x9c, 0x19, 0x99, 0x99, 0x05, 0x00, 0x00, + // 608 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x54, 0x31, 0x6f, 0xd3, 0x40, + 0x14, 0xce, 0x25, 0x05, 0xb5, 0xd7, 0xa8, 0xa4, 0xa7, 0x56, 0x75, 0x82, 0x70, 0xa3, 0x2e, 0xb5, + 0x22, 0xc5, 0xa6, 0x65, 0x60, 0x60, 0x72, 0x5c, 0x47, 0x0a, 0x42, 0x6d, 0x71, 0xda, 0x85, 0xc5, + 0x72, 0xec, 0x4b, 0x6a, 0x51, 0xdf, 0x99, 0xbb, 0x73, 0x69, 0x47, 0x36, 0x46, 0x26, 0x06, 0x56, + 0x16, 0xc4, 0xd4, 0x01, 0xf1, 0x1b, 0x3a, 0xa1, 0x8a, 0x89, 0xa9, 0xa0, 0x76, 0xe8, 0x7f, 0x60, + 0x42, 0xb1, 0x2f, 0xad, 0x0b, 0x6a, 0x41, 0xd9, 0x58, 0x6c, 0xdf, 0xfb, 0xde, 0xfb, 0xde, 0xf3, + 0xf7, 0x3e, 0x1d, 0x6c, 0xf8, 0x94, 0x47, 0x94, 0x1b, 0x2f, 0x12, 0x8f, 0x79, 0x44, 0x84, 0x04, + 0x1b, 0x7b, 0x2b, 0x3d, 0x2c, 0xbc, 0x95, 0x5c, 0x48, 0x8f, 0x19, 0x15, 0x14, 0x55, 0xb3, 0x5c, + 0x3d, 0x07, 0xc8, 0xdc, 0xda, 0xac, 0x17, 0x85, 0x84, 0x1a, 0xe9, 0x33, 0xcb, 0xae, 0xa9, 0x92, + 0xb9, 0xe7, 0xf1, 0x4b, 0x4e, 0x9f, 0x86, 0x44, 0xe2, 0x92, 0xcd, 0x4d, 0x4f, 0x86, 0xa4, 0xce, + 0xa0, 0xb9, 0x01, 0x1d, 0xd0, 0x2c, 0x3e, 0xfc, 0xca, 0xa2, 0x4b, 0x9f, 0x8b, 0xb0, 0xf2, 0xf4, + 0xa2, 0x75, 0xd0, 0x4e, 0x48, 0xc0, 0xd1, 0x43, 0x08, 0x05, 0x75, 0xbd, 0x20, 0x60, 0x98, 0x73, + 0x05, 0xd4, 0x81, 0x36, 0xd5, 0x52, 0xbe, 0x7e, 0x6a, 0xce, 0x49, 0x42, 0x33, 0x43, 0xba, 0x82, + 0x85, 0x64, 0xe0, 0x4c, 0x09, 0x2a, 0x03, 0x68, 0x0b, 0x56, 0x13, 0xe2, 0xf9, 0x3e, 0x8e, 0x05, + 0x0e, 0xdc, 0x3e, 0xa3, 0xd1, 0x88, 0x05, 0x73, 0xa5, 0x58, 0x2f, 0xdd, 0xc8, 0xb3, 0x70, 0x59, + 0xda, 0x66, 0x34, 0x32, 0x47, 0x85, 0xe8, 0x25, 0xbc, 0x35, 0xfc, 0x45, 0xae, 0x94, 0xea, 0x25, + 0x6d, 0x7a, 0xb5, 0xaa, 0xcb, 0xf2, 0xa1, 0x08, 0x23, 0xb1, 0x74, 0x8b, 0x86, 0xa4, 0xd5, 0x3e, + 0x3a, 0x59, 0x2c, 0x7c, 0xfc, 0xbe, 0xa8, 0x0d, 0x42, 0xb1, 0x93, 0xf4, 0x74, 0x9f, 0x46, 0x52, + 0x04, 0xf9, 0x6a, 0xf2, 0xe0, 0xb9, 0x21, 0x0e, 0x62, 0xcc, 0xd3, 0x02, 0xfe, 0xee, 0xfc, 0xb0, + 0x51, 0xde, 0xc5, 0x03, 0xcf, 0x3f, 0x70, 0xd3, 0x1e, 0x1f, 0xce, 0x0f, 0x1b, 0xc0, 0xc9, 0xfa, + 0xa1, 0x1a, 0x9c, 0x0c, 0xb0, 0xbf, 0x3b, 0x14, 0x46, 0x99, 0xa8, 0x03, 0x6d, 0xd2, 0xb9, 0x38, + 0x2f, 0x7d, 0x01, 0x70, 0xd6, 0x4c, 0x04, 0x75, 0x30, 0x8f, 0x29, 0xe1, 0xd8, 0x26, 0x82, 0x1d, + 0x8c, 0xaf, 0xdc, 0x23, 0x58, 0xce, 0xcb, 0xa5, 0x14, 0xff, 0x52, 0x3a, 0xdd, 0xbf, 0x94, 0x08, + 0x59, 0x70, 0x92, 0xc9, 0x31, 0x94, 0x52, 0x1d, 0x68, 0x33, 0xab, 0xcb, 0xfa, 0xb5, 0xb6, 0xd2, + 0xf3, 0x53, 0x3b, 0x17, 0x85, 0x4b, 0x6f, 0x01, 0x44, 0x79, 0x68, 0x3b, 0x0e, 0x3c, 0x81, 0xff, + 0x18, 0x0c, 0x8c, 0x3b, 0x58, 0x71, 0xdc, 0xc1, 0x5e, 0x95, 0xf2, 0x16, 0x75, 0xb0, 0x4f, 0x59, + 0x80, 0xa2, 0x9b, 0x9c, 0x06, 0xea, 0x25, 0xad, 0xdc, 0x5a, 0xf9, 0x79, 0xb2, 0xd8, 0xfc, 0x07, + 0x23, 0x98, 0xbe, 0x2f, 0xe7, 0xbd, 0xde, 0x82, 0x21, 0x5c, 0xb8, 0xc9, 0xd6, 0x63, 0x35, 0x9b, + 0xff, 0x8f, 0xdc, 0xde, 0x86, 0x77, 0x7f, 0x5f, 0x41, 0x37, 0xe9, 0xf7, 0xc3, 0xfd, 0x0e, 0x09, + 0xf0, 0x3e, 0x5a, 0x86, 0x77, 0x58, 0x1a, 0x74, 0x79, 0x1a, 0x1d, 0xed, 0xc0, 0x99, 0x61, 0xb9, + 0x5c, 0xcc, 0x1b, 0x3b, 0xb0, 0x9c, 0xdf, 0x32, 0xba, 0x07, 0xab, 0xe6, 0xf6, 0xd6, 0x86, 0xeb, + 0xd8, 0xdd, 0xcd, 0x8d, 0xf5, 0xae, 0xed, 0x6e, 0xaf, 0x77, 0x37, 0x6d, 0xab, 0xd3, 0xee, 0xd8, + 0x6b, 0x95, 0x02, 0x52, 0xe0, 0xdc, 0x55, 0xd8, 0xb4, 0x2c, 0x7b, 0x73, 0xab, 0x02, 0x50, 0x15, + 0xce, 0x5f, 0x45, 0xd6, 0x6c, 0xeb, 0x49, 0x67, 0xdd, 0xae, 0x14, 0x6b, 0x13, 0xaf, 0xdf, 0xab, + 0x85, 0xd6, 0xe3, 0xa3, 0x53, 0x15, 0x1c, 0x9f, 0xaa, 0xe0, 0xc7, 0xa9, 0x0a, 0xde, 0x9c, 0xa9, + 0x85, 0xe3, 0x33, 0xb5, 0xf0, 0xed, 0x4c, 0x2d, 0x3c, 0xbb, 0x9f, 0x93, 0x2b, 0x66, 0x74, 0x0f, + 0x13, 0x8f, 0xf8, 0xb8, 0x19, 0xd2, 0xdc, 0xc9, 0xd8, 0xcf, 0xdd, 0xd4, 0xbd, 0xdb, 0xe9, 0x5d, + 0xf9, 0xe0, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6c, 0xd9, 0x7b, 0x9e, 0xd8, 0x05, 0x00, 0x00, } func (m *QuarantinedFunds) Marshal() (dAtA []byte, err error) { diff --git a/x/quarantine/tx.pb.go b/x/quarantine/tx.pb.go index 3b1ce9daab..e8d8a2c37c 100644 --- a/x/quarantine/tx.pb.go +++ b/x/quarantine/tx.pb.go @@ -11,6 +11,7 @@ import ( types "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/cosmos-sdk/types/msgservice" _ "github.com/cosmos/cosmos-sdk/types/query" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" @@ -524,45 +525,47 @@ func init() { } var fileDescriptor_d2d4535ca5d9aa17 = []byte{ - // 608 bytes of a gzipped FileDescriptorProto + // 640 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x55, 0x3f, 0x6f, 0xd3, 0x40, - 0x14, 0xcf, 0x11, 0x68, 0x9b, 0xab, 0x5a, 0xc0, 0x8d, 0x20, 0xb5, 0x90, 0x1b, 0x05, 0x90, 0xa2, - 0x40, 0xec, 0x26, 0x0c, 0x08, 0x16, 0x94, 0x80, 0x84, 0x40, 0x8a, 0x22, 0x19, 0x3a, 0x80, 0x90, - 0xa2, 0x8b, 0x7d, 0x35, 0x16, 0xcd, 0x9d, 0xeb, 0x3b, 0x47, 0xed, 0x4a, 0x07, 0x56, 0x3e, 0x07, - 0x2c, 0x0c, 0xe5, 0x3b, 0x74, 0xac, 0x98, 0x98, 0x00, 0x25, 0x03, 0x5f, 0x03, 0xc5, 0x77, 0xe7, - 0x58, 0x34, 0x4d, 0x42, 0xc5, 0xd2, 0xc9, 0xe7, 0x7b, 0xbf, 0x7f, 0x2f, 0x7a, 0x2f, 0x86, 0x25, - 0x87, 0xb2, 0x1e, 0x65, 0xd6, 0x6e, 0x84, 0x42, 0x44, 0xb8, 0x4f, 0xb0, 0xd5, 0xaf, 0x75, 0x31, - 0x47, 0x35, 0x8b, 0xef, 0x99, 0x41, 0x48, 0x39, 0xd5, 0xd6, 0x05, 0xc6, 0x1c, 0x63, 0x4c, 0x89, - 0xd1, 0x2b, 0x92, 0xde, 0x45, 0x0c, 0x5b, 0xbb, 0x11, 0x0e, 0xf7, 0x13, 0x7a, 0x80, 0x3c, 0x9f, - 0x20, 0xee, 0x53, 0x22, 0x64, 0x74, 0x23, 0x8d, 0x55, 0x28, 0x87, 0xfa, 0xaa, 0x7e, 0x5d, 0xd6, - 0x7b, 0xcc, 0xb3, 0xfa, 0xb5, 0xd1, 0x43, 0x16, 0x2a, 0xa7, 0x67, 0x4c, 0x45, 0x12, 0x58, 0x99, - 0xb5, 0x13, 0xbf, 0x59, 0x32, 0xb8, 0x28, 0xe5, 0x3d, 0xea, 0x51, 0x71, 0x3f, 0x3a, 0x89, 0xdb, - 0xd2, 0x4b, 0xb8, 0xd4, 0x62, 0x5e, 0x3b, 0xe0, 0xcf, 0x88, 0x76, 0x1f, 0x42, 0x4e, 0x3b, 0xc8, - 0x75, 0x43, 0xcc, 0x58, 0x01, 0x14, 0x41, 0x39, 0xd7, 0x2c, 0x7c, 0x3b, 0xac, 0xe6, 0xa5, 0x4e, - 0x43, 0x54, 0x5e, 0xf0, 0xd0, 0x27, 0x9e, 0x9d, 0xe3, 0x54, 0x5e, 0x3c, 0xbc, 0xfc, 0xfe, 0xf7, - 0x97, 0x4a, 0x8a, 0x5b, 0xd2, 0xe0, 0x15, 0xa5, 0x6a, 0x63, 0x16, 0x50, 0xc2, 0x70, 0x69, 0x0b, - 0xe6, 0xc4, 0x5d, 0x3b, 0xe2, 0xff, 0xd1, 0x6a, 0x0d, 0x5e, 0x4d, 0x64, 0x13, 0xaf, 0x43, 0x10, - 0x9b, 0x35, 0x1c, 0x07, 0x07, 0x67, 0x37, 0xd3, 0x1e, 0xc1, 0xd5, 0xed, 0x90, 0xf6, 0x14, 0x15, - 0xb3, 0xc2, 0x85, 0x62, 0x76, 0x2a, 0x79, 0x65, 0x84, 0x6f, 0x28, 0xb8, 0x76, 0x03, 0xe6, 0x02, - 0x1c, 0xf6, 0x10, 0xc1, 0x84, 0x17, 0xb2, 0x45, 0x50, 0x5e, 0xb2, 0xc7, 0x17, 0x27, 0x7b, 0xf9, - 0x00, 0xe2, 0x66, 0x44, 0x6c, 0xd5, 0x8c, 0x16, 0xc2, 0xd5, 0xed, 0x88, 0xb8, 0xac, 0x13, 0xe2, - 0x1d, 0x8c, 0x18, 0x76, 0x0b, 0xa0, 0x98, 0x2d, 0x2f, 0xd7, 0xd7, 0x4d, 0x19, 0x61, 0x34, 0x51, - 0x6a, 0x24, 0xcd, 0xc7, 0xd4, 0x27, 0xcd, 0xcd, 0xa3, 0x1f, 0x1b, 0x99, 0x4f, 0x3f, 0x37, 0xca, - 0x9e, 0xcf, 0xdf, 0x46, 0x5d, 0xd3, 0xa1, 0x3d, 0x39, 0x0c, 0xf2, 0x51, 0x65, 0xee, 0x3b, 0x8b, - 0xef, 0x07, 0x98, 0xc5, 0x04, 0x66, 0xaf, 0xc4, 0x16, 0xb6, 0x74, 0x28, 0x7d, 0x05, 0x10, 0xb6, - 0x98, 0xf7, 0x04, 0x3b, 0x3b, 0x3e, 0xc1, 0xe7, 0xe7, 0x17, 0xcc, 0x43, 0x6d, 0x1c, 0x3b, 0x19, - 0x87, 0xcf, 0x00, 0x5e, 0x6b, 0x31, 0x6f, 0x2b, 0x70, 0x11, 0xc7, 0x8d, 0x88, 0x53, 0x55, 0x61, - 0x67, 0xef, 0xec, 0x29, 0x5c, 0x8c, 0x62, 0x3d, 0xd1, 0xd2, 0x72, 0xbd, 0x6a, 0x9e, 0xfa, 0x3f, - 0x61, 0xa6, 0x3d, 0x45, 0x0a, 0x5b, 0xb1, 0x4f, 0xf6, 0x50, 0x84, 0xc6, 0xe4, 0xb0, 0xea, 0x50, - 0x3f, 0xb8, 0x08, 0xb3, 0x2d, 0xe6, 0x69, 0xaf, 0xe0, 0x25, 0xb1, 0xb9, 0x37, 0xa7, 0x78, 0xab, - 0x45, 0xd4, 0xef, 0xcc, 0x01, 0x4a, 0x86, 0xee, 0x0d, 0x5c, 0x90, 0xab, 0x7a, 0x6b, 0x26, 0xad, - 0x1d, 0x71, 0xfd, 0xee, 0x3c, 0xa8, 0xb4, 0xba, 0xdc, 0xcd, 0x19, 0xea, 0x02, 0x35, 0x4b, 0xfd, - 0xaf, 0x85, 0xe9, 0xc0, 0x45, 0x35, 0xb8, 0xb7, 0xa7, 0x13, 0x25, 0x4c, 0xaf, 0xce, 0x05, 0x4b, - 0x0c, 0x0e, 0x00, 0x5c, 0x9b, 0x34, 0x4c, 0xb5, 0xe9, 0x32, 0x13, 0x28, 0xfa, 0x83, 0x7f, 0xa6, - 0xa8, 0x43, 0xf3, 0xf9, 0xd1, 0xc0, 0x00, 0xc7, 0x03, 0x03, 0xfc, 0x1a, 0x18, 0xe0, 0xe3, 0xd0, - 0xc8, 0x1c, 0x0f, 0x8d, 0xcc, 0xf7, 0xa1, 0x91, 0x79, 0xbd, 0x99, 0x5a, 0xfb, 0x20, 0xa4, 0x7d, - 0x4c, 0x10, 0x71, 0x70, 0xd5, 0xa7, 0xa9, 0x37, 0x6b, 0x2f, 0xf5, 0xf5, 0xe8, 0x2e, 0xc4, 0x5f, - 0x83, 0x7b, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x68, 0x04, 0x42, 0x0f, 0x10, 0x07, 0x00, 0x00, + 0x14, 0xcf, 0x11, 0x68, 0x9b, 0x2b, 0x2d, 0xd4, 0xad, 0x20, 0xb5, 0x90, 0x1b, 0x05, 0x90, 0xa2, + 0x40, 0x6c, 0x52, 0x06, 0x04, 0x0b, 0x4a, 0x41, 0x20, 0x90, 0xa2, 0x4a, 0x86, 0x0e, 0x20, 0xa4, + 0xe8, 0x62, 0x5f, 0x8d, 0x45, 0x7d, 0xe7, 0xfa, 0xce, 0x55, 0xbb, 0xd2, 0x85, 0x91, 0x99, 0x81, + 0x19, 0xc1, 0xd2, 0xa1, 0x7c, 0x87, 0x8e, 0x15, 0x13, 0x13, 0xa0, 0x66, 0xc8, 0xd7, 0x40, 0xf1, + 0xdd, 0x39, 0x56, 0x1b, 0x92, 0x50, 0xb1, 0xb0, 0xc4, 0xe7, 0xf7, 0x7e, 0x7f, 0xde, 0x8b, 0xde, + 0xf3, 0xc1, 0xb2, 0x43, 0x59, 0x40, 0x99, 0xb5, 0x19, 0xa3, 0x08, 0x11, 0xee, 0x13, 0x6c, 0x6d, + 0xd5, 0xdb, 0x98, 0xa3, 0xba, 0xc5, 0xb7, 0xcd, 0x30, 0xa2, 0x9c, 0x6a, 0x8b, 0x02, 0x63, 0xf6, + 0x31, 0xa6, 0xc4, 0xe8, 0x73, 0x28, 0xf0, 0x09, 0xb5, 0x92, 0x5f, 0x81, 0xd6, 0xab, 0x52, 0xb1, + 0x8d, 0x18, 0xb6, 0x36, 0x63, 0x1c, 0xed, 0xa4, 0x8a, 0x21, 0xf2, 0x7c, 0x82, 0xb8, 0x4f, 0x89, + 0xc4, 0x1a, 0x59, 0xac, 0x42, 0x39, 0xd4, 0x57, 0xf9, 0xcb, 0x32, 0x1f, 0x30, 0xcf, 0xda, 0xaa, + 0xf7, 0x1e, 0xc7, 0x4c, 0x06, 0x94, 0x9d, 0xa9, 0x52, 0x60, 0x65, 0xf9, 0xad, 0xe4, 0xcd, 0x92, + 0xbd, 0x88, 0xd4, 0x82, 0x47, 0x3d, 0x2a, 0xe2, 0xbd, 0x93, 0x88, 0x96, 0x9f, 0xc3, 0xa9, 0x26, + 0xf3, 0x56, 0x43, 0xfe, 0x84, 0x68, 0x77, 0x20, 0xe4, 0xb4, 0x85, 0x5c, 0x37, 0xc2, 0x8c, 0x15, + 0x41, 0x09, 0x54, 0x0a, 0x2b, 0xc5, 0x6f, 0xfb, 0xb5, 0x05, 0xa9, 0xd3, 0x10, 0x99, 0x67, 0x3c, + 0xf2, 0x89, 0x67, 0x17, 0x38, 0x95, 0x81, 0x7b, 0x17, 0xde, 0x76, 0xf7, 0xaa, 0x19, 0x6e, 0x59, + 0x83, 0x17, 0x95, 0xaa, 0x8d, 0x59, 0x48, 0x09, 0xc3, 0xe5, 0x35, 0x58, 0x10, 0xb1, 0xd5, 0x98, + 0xff, 0x43, 0xab, 0x79, 0x38, 0x97, 0xca, 0xa6, 0x5e, 0xfb, 0x20, 0x31, 0x6b, 0x38, 0x0e, 0x0e, + 0x4f, 0x6f, 0xa6, 0xdd, 0x87, 0xb3, 0xeb, 0x11, 0x0d, 0x14, 0x15, 0xb3, 0xe2, 0x99, 0x52, 0x7e, + 0x28, 0x79, 0xa6, 0x87, 0x6f, 0x28, 0xb8, 0x76, 0x05, 0x16, 0x42, 0x1c, 0x05, 0x88, 0x60, 0xc2, + 0x8b, 0xf9, 0x12, 0xa8, 0x4c, 0xd9, 0xfd, 0xc0, 0xc9, 0x5e, 0x3e, 0x82, 0xa4, 0x19, 0x51, 0xb6, + 0x6a, 0x46, 0x7b, 0x07, 0xe0, 0xec, 0x7a, 0x4c, 0x5c, 0xd6, 0x8a, 0xf0, 0x06, 0x46, 0x0c, 0xbb, + 0x45, 0x50, 0xca, 0x57, 0xa6, 0x97, 0x17, 0x4d, 0x59, 0x43, 0x6f, 0xa4, 0xd4, 0x98, 0x9a, 0x0f, + 0xa8, 0x4f, 0x56, 0x1e, 0x1d, 0xfc, 0x58, 0xca, 0x7d, 0xfe, 0xb9, 0x54, 0xf1, 0x7c, 0xfe, 0x3a, + 0x6e, 0x9b, 0x0e, 0x0d, 0xe4, 0x34, 0xc8, 0x47, 0x8d, 0xb9, 0x6f, 0x2c, 0xbe, 0x13, 0x62, 0x96, + 0x10, 0xd8, 0x87, 0xee, 0x5e, 0xf5, 0xfc, 0x06, 0xf6, 0x90, 0xb3, 0xd3, 0xea, 0x0d, 0x25, 0xfb, + 0xd4, 0xdd, 0xab, 0x02, 0x7b, 0x26, 0x31, 0xb6, 0xa5, 0x6f, 0xf9, 0x2b, 0x80, 0xb0, 0xc9, 0xbc, + 0x87, 0xd8, 0xd9, 0xf0, 0x09, 0xfe, 0x7f, 0xfe, 0xd8, 0x05, 0xa8, 0xf5, 0xcb, 0x4e, 0xa7, 0xe4, + 0x0b, 0x80, 0x97, 0x9a, 0xcc, 0x5b, 0x0b, 0x5d, 0xc4, 0x71, 0x23, 0xe6, 0x54, 0x65, 0xd8, 0xe9, + 0x3b, 0x7b, 0x0c, 0x27, 0xe3, 0x44, 0x4f, 0xb4, 0x34, 0xbd, 0x5c, 0x33, 0xff, 0xf8, 0x45, 0x31, + 0xb3, 0x9e, 0xa2, 0x0a, 0x5b, 0xb1, 0x4f, 0xf6, 0x50, 0x82, 0xc6, 0xe0, 0x62, 0xd5, 0x61, 0x79, + 0xf7, 0x2c, 0xcc, 0x37, 0x99, 0xa7, 0xbd, 0x80, 0xe7, 0xc4, 0x42, 0x5f, 0x1d, 0xe2, 0xad, 0xf6, + 0x53, 0xbf, 0x31, 0x06, 0x28, 0x9d, 0xc5, 0x57, 0x70, 0x42, 0x6e, 0xf0, 0xb5, 0x91, 0xb4, 0xd5, + 0x98, 0xeb, 0x37, 0xc7, 0x41, 0x65, 0xd5, 0xe5, 0xca, 0x8e, 0x50, 0x17, 0xa8, 0x51, 0xea, 0xc7, + 0xf6, 0xa8, 0x05, 0x27, 0xd5, 0xe0, 0x5e, 0x1f, 0x4e, 0x94, 0x30, 0xbd, 0x36, 0x16, 0x2c, 0x35, + 0xd8, 0x05, 0x70, 0x7e, 0xd0, 0x30, 0xd5, 0x87, 0xcb, 0x0c, 0xa0, 0xe8, 0x77, 0xff, 0x9a, 0xa2, + 0x0e, 0x2b, 0x4f, 0x0f, 0x8e, 0x0c, 0x70, 0x78, 0x64, 0x80, 0x5f, 0x47, 0x06, 0x78, 0xdf, 0x31, + 0x72, 0x87, 0x1d, 0x23, 0xf7, 0xbd, 0x63, 0xe4, 0x5e, 0xde, 0xca, 0x7c, 0x0c, 0xc2, 0x88, 0x6e, + 0x61, 0x82, 0x88, 0x83, 0x6b, 0x3e, 0xcd, 0xbc, 0x59, 0xdb, 0x99, 0x4b, 0xa5, 0x3d, 0x91, 0x5c, + 0x12, 0xb7, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0xbf, 0x3e, 0x70, 0x53, 0x3a, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/sanction/sanction.pb.go b/x/sanction/sanction.pb.go index 1e1fe5e08b..828c43fe0d 100644 --- a/x/sanction/sanction.pb.go +++ b/x/sanction/sanction.pb.go @@ -8,6 +8,7 @@ import ( _ "github.com/cosmos/cosmos-proto" 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/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" @@ -194,37 +195,38 @@ func init() { } var fileDescriptor_9e632afabc7910f0 = []byte{ - // 466 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0x4f, 0x8b, 0xd3, 0x40, - 0x18, 0xc6, 0x33, 0xdd, 0xa5, 0xe2, 0x2c, 0x2c, 0xcb, 0xb0, 0xb8, 0xd9, 0xae, 0x4e, 0xc3, 0x0a, - 0x12, 0x84, 0x26, 0x6e, 0x3d, 0x7a, 0xea, 0x9f, 0x88, 0x3d, 0x6c, 0x2d, 0x4d, 0x7a, 0xf1, 0x12, - 0xa6, 0xc9, 0x50, 0x07, 0xcd, 0x4c, 0x98, 0x99, 0x2e, 0xf6, 0x1b, 0x78, 0xdc, 0x83, 0x9f, 0x40, - 0x6f, 0x1e, 0xc5, 0x0f, 0xb1, 0xc7, 0xc5, 0x93, 0x27, 0x95, 0xf6, 0x8b, 0x48, 0x9b, 0x69, 0x52, - 0x44, 0x6f, 0x9e, 0xda, 0x79, 0x9e, 0xf7, 0x79, 0x9f, 0x1f, 0xe1, 0x85, 0x8f, 0x12, 0xa1, 0x32, - 0xa1, 0x7c, 0x45, 0x78, 0xa2, 0x99, 0xe0, 0xfe, 0xd5, 0xc5, 0x94, 0x6a, 0x72, 0x51, 0x0a, 0x5e, - 0x2e, 0x85, 0x16, 0xe8, 0xa4, 0x98, 0xf3, 0x4a, 0xd9, 0xcc, 0x35, 0xb0, 0x59, 0x30, 0x25, 0x8a, - 0x96, 0xe1, 0x44, 0x30, 0x13, 0x6c, 0x9c, 0x16, 0x7e, 0xbc, 0x79, 0xf9, 0x66, 0x4b, 0x61, 0x1d, - 0xcf, 0xc4, 0x4c, 0x14, 0xfa, 0xfa, 0x5f, 0xa1, 0x9e, 0x7f, 0xa9, 0xc1, 0xfa, 0x88, 0x48, 0x92, - 0x29, 0x74, 0x0d, 0x20, 0x66, 0x59, 0x46, 0x53, 0x46, 0x34, 0x8d, 0xb7, 0xd5, 0x71, 0xc6, 0x78, - 0x9c, 0xd2, 0x5c, 0x28, 0xa6, 0x6d, 0xe0, 0xec, 0xb9, 0x07, 0xed, 0x53, 0xcf, 0x2c, 0x5e, 0x53, - 0x6c, 0xd1, 0xbc, 0x9e, 0x60, 0xbc, 0xfb, 0xe4, 0xe6, 0x47, 0xd3, 0xfa, 0xfc, 0xb3, 0xe9, 0xce, - 0x98, 0x7e, 0x3d, 0x9f, 0x7a, 0x89, 0xc8, 0x0c, 0x85, 0xf9, 0x69, 0xa9, 0xf4, 0x8d, 0xaf, 0x17, - 0x39, 0x55, 0x9b, 0x80, 0x1a, 0x9f, 0x95, 0x95, 0xa1, 0x69, 0xbc, 0x64, 0xbc, 0x5f, 0xf4, 0xa1, - 0x0f, 0x00, 0x3a, 0x15, 0xd2, 0x9c, 0xff, 0x15, 0xaa, 0xf6, 0xff, 0xa1, 0x1e, 0x94, 0xa5, 0x93, - 0xb2, 0xb3, 0xc2, 0x3a, 0xff, 0x08, 0xe0, 0x61, 0x44, 0xb3, 0x5c, 0x48, 0x22, 0x17, 0x01, 0xd7, - 0x72, 0x81, 0xda, 0xf0, 0x0e, 0x49, 0x53, 0x49, 0x95, 0xb2, 0x81, 0x03, 0xdc, 0xbb, 0x5d, 0xfb, - 0xdb, 0xd7, 0xd6, 0xb1, 0x41, 0xea, 0x14, 0x4e, 0xa8, 0x25, 0xe3, 0xb3, 0xf1, 0x76, 0x10, 0x35, - 0xe1, 0x41, 0x2e, 0x45, 0x2e, 0x14, 0x79, 0x1b, 0xb3, 0xd4, 0xae, 0x39, 0xc0, 0xdd, 0x1f, 0xc3, - 0xad, 0x34, 0x48, 0xd1, 0x33, 0x58, 0x57, 0x9a, 0xe8, 0xb9, 0xb2, 0xf7, 0x1c, 0xe0, 0x1e, 0xb6, - 0x1f, 0x7a, 0xff, 0xb8, 0x0b, 0x6f, 0x4d, 0x13, 0x6e, 0x46, 0xc7, 0x26, 0xf2, 0x98, 0x41, 0x58, - 0xa9, 0xe8, 0x0c, 0x9e, 0x44, 0xc1, 0xe5, 0x28, 0x0e, 0xa3, 0x4e, 0x34, 0x09, 0xe3, 0xc9, 0x30, - 0x1c, 0x05, 0xbd, 0xc1, 0xf3, 0x41, 0xd0, 0x3f, 0xb2, 0x50, 0x03, 0xde, 0xdb, 0x35, 0xc3, 0xce, - 0xb0, 0x17, 0x0d, 0x5e, 0x0e, 0x83, 0xfe, 0x11, 0x40, 0xf7, 0xa1, 0xfd, 0x47, 0xb0, 0x72, 0x6b, - 0x8d, 0xfd, 0xf7, 0x9f, 0xb0, 0xd5, 0x7d, 0x71, 0xb3, 0xc4, 0xe0, 0x76, 0x89, 0xc1, 0xaf, 0x25, - 0x06, 0xd7, 0x2b, 0x6c, 0xdd, 0xae, 0xb0, 0xf5, 0x7d, 0x85, 0xad, 0x57, 0xde, 0xce, 0x27, 0xcf, - 0xa5, 0xb8, 0xa2, 0x9c, 0xf0, 0x84, 0xb6, 0x98, 0xd8, 0x79, 0xf9, 0xef, 0xca, 0xf3, 0x9f, 0xd6, - 0x37, 0x57, 0xf9, 0xf4, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9b, 0x29, 0x02, 0xd5, 0x29, 0x03, - 0x00, 0x00, + // 496 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x93, 0x3f, 0x6f, 0xd3, 0x40, + 0x18, 0xc6, 0x7d, 0x69, 0x15, 0xc4, 0x15, 0x55, 0xc5, 0xaa, 0xa8, 0x9b, 0x82, 0x63, 0x15, 0x09, + 0x59, 0x91, 0x62, 0xab, 0x61, 0x64, 0xca, 0x1f, 0x57, 0x64, 0x68, 0x88, 0x62, 0x67, 0x61, 0xb1, + 0x2e, 0xf6, 0xc9, 0x9c, 0xa8, 0xef, 0xac, 0xbb, 0x4b, 0x45, 0xbe, 0x01, 0x23, 0x33, 0x23, 0x48, + 0x08, 0x75, 0xea, 0xc0, 0x87, 0xe8, 0x58, 0x31, 0x31, 0x15, 0x94, 0x0c, 0xfd, 0x1a, 0x28, 0xf6, + 0xc5, 0x89, 0x10, 0xac, 0x2c, 0xb6, 0xef, 0x79, 0x9e, 0xf7, 0xd1, 0xcf, 0xf2, 0x6b, 0xf8, 0x2c, + 0x62, 0x22, 0x65, 0xc2, 0x15, 0x88, 0x46, 0x92, 0x30, 0xea, 0x5e, 0x9c, 0x4c, 0xb0, 0x44, 0x27, + 0xa5, 0xe0, 0x64, 0x9c, 0x49, 0xa6, 0x1f, 0x14, 0x39, 0xa7, 0x94, 0x55, 0xae, 0xf6, 0x10, 0xa5, + 0x84, 0x32, 0x37, 0xbf, 0x16, 0xd9, 0x9a, 0xa9, 0x3a, 0x27, 0x48, 0xe0, 0xb2, 0x2f, 0x62, 0x44, + 0x75, 0xd5, 0x0e, 0x0b, 0x3f, 0xcc, 0x4f, 0xae, 0x2a, 0x2e, 0xac, 0xfd, 0x84, 0x25, 0xac, 0xd0, + 0x97, 0x4f, 0x85, 0x7a, 0x7c, 0x5b, 0x81, 0xd5, 0x21, 0xe2, 0x28, 0x15, 0xfa, 0x17, 0x00, 0x4d, + 0x92, 0xa6, 0x38, 0x26, 0x48, 0xe2, 0x70, 0x45, 0x13, 0xa6, 0x84, 0x86, 0x31, 0xce, 0x98, 0x20, + 0xd2, 0x00, 0xd6, 0x96, 0xbd, 0xd3, 0x3a, 0x74, 0x54, 0xf1, 0x92, 0x62, 0x45, 0xeb, 0x74, 0x19, + 0xa1, 0x9d, 0xd3, 0xeb, 0xdb, 0xba, 0x76, 0xf9, 0xb3, 0x6e, 0x27, 0x44, 0xbe, 0x99, 0x4e, 0x9c, + 0x88, 0xa5, 0x8a, 0x42, 0xdd, 0x9a, 0x22, 0x7e, 0xeb, 0xca, 0x59, 0x86, 0x45, 0x3e, 0x20, 0x3e, + 0xde, 0x5d, 0x35, 0x1e, 0x9c, 0xe3, 0x04, 0x45, 0xb3, 0x70, 0xf9, 0x1e, 0xe2, 0xeb, 0xdd, 0x55, + 0x03, 0x8c, 0x8e, 0x4a, 0x10, 0x5f, 0x71, 0x9c, 0x11, 0xda, 0x2b, 0x28, 0xf4, 0x4b, 0x00, 0xad, + 0x35, 0xe8, 0x94, 0xfe, 0x15, 0xb5, 0xf2, 0xbf, 0x50, 0x9f, 0x94, 0x28, 0xe3, 0x92, 0x64, 0x0d, + 0x7b, 0xfc, 0x09, 0xc0, 0xdd, 0x00, 0xa7, 0x19, 0xe3, 0x88, 0xcf, 0x3c, 0x2a, 0xf9, 0x4c, 0x6f, + 0xc1, 0x7b, 0x28, 0x8e, 0x39, 0x16, 0xc2, 0x00, 0x16, 0xb0, 0xef, 0x77, 0x8c, 0xef, 0xdf, 0x9a, + 0xfb, 0x0a, 0xb4, 0x5d, 0x38, 0xbe, 0xe4, 0x84, 0x26, 0xa3, 0x55, 0x50, 0xaf, 0xc3, 0x9d, 0x8c, + 0xb3, 0x8c, 0x09, 0x74, 0x1e, 0x92, 0xd8, 0xa8, 0x58, 0xc0, 0xde, 0x1e, 0xc1, 0x95, 0xd4, 0x8f, + 0xf5, 0x17, 0xb0, 0x2a, 0x24, 0x92, 0x53, 0x61, 0x6c, 0x59, 0xc0, 0xde, 0x6d, 0x3d, 0x75, 0xfe, + 0xb1, 0x56, 0xce, 0x92, 0xc6, 0xcf, 0xa3, 0x23, 0x35, 0xd2, 0x20, 0x10, 0xae, 0x55, 0xfd, 0x08, + 0x1e, 0x04, 0xde, 0xd9, 0x30, 0xf4, 0x83, 0x76, 0x30, 0xf6, 0xc3, 0xf1, 0xc0, 0x1f, 0x7a, 0xdd, + 0xfe, 0x69, 0xdf, 0xeb, 0xed, 0x69, 0x7a, 0x0d, 0x3e, 0xda, 0x34, 0xfd, 0xf6, 0xa0, 0x1b, 0xf4, + 0x5f, 0x0d, 0xbc, 0xde, 0x1e, 0xd0, 0x1f, 0x43, 0xe3, 0x8f, 0xc1, 0xb5, 0x5b, 0xa9, 0x6d, 0xbf, + 0xff, 0x6c, 0x6a, 0x9d, 0x97, 0xd7, 0x73, 0x13, 0xdc, 0xcc, 0x4d, 0xf0, 0x6b, 0x6e, 0x82, 0x0f, + 0x0b, 0x53, 0xbb, 0x59, 0x98, 0xda, 0x8f, 0x85, 0xa9, 0xbd, 0x76, 0x36, 0x3e, 0x44, 0xc6, 0xd9, + 0x05, 0xa6, 0x88, 0x46, 0xb8, 0x49, 0xd8, 0xc6, 0xc9, 0x7d, 0x57, 0xfe, 0x3d, 0x93, 0x6a, 0xbe, + 0xc1, 0xcf, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0x4e, 0x31, 0x26, 0x2e, 0x68, 0x03, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) {