diff --git a/ante/ante_test.go b/ante/ante_test.go index 99bcc42e01..5f04375b84 100644 --- a/ante/ante_test.go +++ b/ante/ante_test.go @@ -16,7 +16,7 @@ import ( tmrand "github.com/tendermint/tendermint/libs/rand" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - umeeapp "github.com/umee-network/umee/app" + umeeapp "github.com/umee-network/umee/v2/app" ) type IntegrationTestSuite struct { diff --git a/ante/fee.go b/ante/fee.go index 87193216df..631200c9ae 100644 --- a/ante/fee.go +++ b/ante/fee.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - oracletypes "github.com/umee-network/umee/x/oracle/types" + oracletypes "github.com/umee-network/umee/v2/x/oracle/types" ) // MaxOracleMsgGasUsage defines the maximum gas allowed for an oracle transaction. diff --git a/ante/fee_test.go b/ante/fee_test.go index 7cbe2bdd01..48d484bd6a 100644 --- a/ante/fee_test.go +++ b/ante/fee_test.go @@ -4,8 +4,8 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" "github.com/cosmos/cosmos-sdk/testutil/testdata" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/umee-network/umee/ante" - oracletypes "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/ante" + oracletypes "github.com/umee-network/umee/v2/x/oracle/types" ) func (suite *IntegrationTestSuite) TestMempoolFee() { diff --git a/ante/spam_prevention.go b/ante/spam_prevention.go index 6522802320..2567243c98 100644 --- a/ante/spam_prevention.go +++ b/ante/spam_prevention.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - oracletypes "github.com/umee-network/umee/x/oracle/types" + oracletypes "github.com/umee-network/umee/v2/x/oracle/types" ) // SpamPreventionDecorator defines a custom Umee AnteHandler decorator that is diff --git a/ante/spam_prevention_test.go b/ante/spam_prevention_test.go index 3c7ef31a6c..b62178962a 100644 --- a/ante/spam_prevention_test.go +++ b/ante/spam_prevention_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/umee-network/umee/ante" - oracletypes "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/ante" + oracletypes "github.com/umee-network/umee/v2/x/oracle/types" ) func (suite *IntegrationTestSuite) TestOracleSpam() { diff --git a/app/app.go b/app/app.go index b007b141e0..982fedac64 100644 --- a/app/app.go +++ b/app/app.go @@ -96,19 +96,19 @@ import ( "github.com/osmosis-labs/bech32-ibc/x/bech32ibc" bech32ibckeeper "github.com/osmosis-labs/bech32-ibc/x/bech32ibc/keeper" bech32ibctypes "github.com/osmosis-labs/bech32-ibc/x/bech32ibc/types" - customante "github.com/umee-network/umee/ante" - appparams "github.com/umee-network/umee/app/params" - "github.com/umee-network/umee/app/upgrades" - "github.com/umee-network/umee/app/upgrades/calypso" - uibctransfer "github.com/umee-network/umee/x/ibctransfer" - uibctransferkeeper "github.com/umee-network/umee/x/ibctransfer/keeper" - "github.com/umee-network/umee/x/leverage" - leverageclient "github.com/umee-network/umee/x/leverage/client" - leveragekeeper "github.com/umee-network/umee/x/leverage/keeper" - leveragetypes "github.com/umee-network/umee/x/leverage/types" - "github.com/umee-network/umee/x/oracle" - oraclekeeper "github.com/umee-network/umee/x/oracle/keeper" - oracletypes "github.com/umee-network/umee/x/oracle/types" + customante "github.com/umee-network/umee/v2/ante" + appparams "github.com/umee-network/umee/v2/app/params" + "github.com/umee-network/umee/v2/app/upgrades" + "github.com/umee-network/umee/v2/app/upgrades/calypso" + uibctransfer "github.com/umee-network/umee/v2/x/ibctransfer" + uibctransferkeeper "github.com/umee-network/umee/v2/x/ibctransfer/keeper" + "github.com/umee-network/umee/v2/x/leverage" + leverageclient "github.com/umee-network/umee/v2/x/leverage/client" + leveragekeeper "github.com/umee-network/umee/v2/x/leverage/keeper" + leveragetypes "github.com/umee-network/umee/v2/x/leverage/types" + "github.com/umee-network/umee/v2/x/oracle" + oraclekeeper "github.com/umee-network/umee/v2/x/oracle/keeper" + oracletypes "github.com/umee-network/umee/v2/x/oracle/types" ) const ( diff --git a/app/encoding.go b/app/encoding.go index 9c93478397..1245153e17 100644 --- a/app/encoding.go +++ b/app/encoding.go @@ -3,7 +3,7 @@ package app import ( "github.com/cosmos/cosmos-sdk/std" - "github.com/umee-network/umee/app/params" + "github.com/umee-network/umee/v2/app/params" ) // MakeEncodingConfig returns the application's encoding configuration with all diff --git a/app/test_helpers.go b/app/test_helpers.go index 337c3d8f97..86ed264425 100644 --- a/app/test_helpers.go +++ b/app/test_helpers.go @@ -19,8 +19,8 @@ import ( tmtypes "github.com/tendermint/tendermint/types" dbm "github.com/tendermint/tm-db" - leveragetypes "github.com/umee-network/umee/x/leverage/types" - oracletypes "github.com/umee-network/umee/x/oracle/types" + leveragetypes "github.com/umee-network/umee/v2/x/leverage/types" + oracletypes "github.com/umee-network/umee/v2/x/oracle/types" ) // DefaultConsensusParams defines the default Tendermint consensus params used diff --git a/app/upgrades/calypso/handler.go b/app/upgrades/calypso/handler.go index 32a4eba1e8..9d34240b46 100644 --- a/app/upgrades/calypso/handler.go +++ b/app/upgrades/calypso/handler.go @@ -11,12 +11,12 @@ import ( stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" bech32ibckeeper "github.com/osmosis-labs/bech32-ibc/x/bech32ibc/keeper" - "github.com/umee-network/umee/x/leverage" - leveragekeeper "github.com/umee-network/umee/x/leverage/keeper" - leveragetypes "github.com/umee-network/umee/x/leverage/types" - "github.com/umee-network/umee/x/oracle" - oraclekeeper "github.com/umee-network/umee/x/oracle/keeper" - oracletypes "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/leverage" + leveragekeeper "github.com/umee-network/umee/v2/x/leverage/keeper" + leveragetypes "github.com/umee-network/umee/v2/x/leverage/types" + "github.com/umee-network/umee/v2/x/oracle" + oraclekeeper "github.com/umee-network/umee/v2/x/oracle/keeper" + oracletypes "github.com/umee-network/umee/v2/x/oracle/types" ) // GetCalypsoUpgradeHandler contains the handler for the Calypso upgrade. It setups the Bech32IBC, Leverage and Oracle diff --git a/app/upgrades/register.go b/app/upgrades/register.go index 63ab829941..4751b8b407 100644 --- a/app/upgrades/register.go +++ b/app/upgrades/register.go @@ -9,9 +9,9 @@ import ( stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper" bech32ibckeeper "github.com/osmosis-labs/bech32-ibc/x/bech32ibc/keeper" - "github.com/umee-network/umee/app/upgrades/calypso" - leveragekeeper "github.com/umee-network/umee/x/leverage/keeper" - oraclekeeper "github.com/umee-network/umee/x/oracle/keeper" + "github.com/umee-network/umee/v2/app/upgrades/calypso" + leveragekeeper "github.com/umee-network/umee/v2/x/leverage/keeper" + oraclekeeper "github.com/umee-network/umee/v2/x/oracle/keeper" ) // RegisterUpgradeHandlers registers handlers for all upgrades diff --git a/cmd/umeed/cmd/app_creator.go b/cmd/umeed/cmd/app_creator.go index 84f7184a9b..52b12338eb 100644 --- a/cmd/umeed/cmd/app_creator.go +++ b/cmd/umeed/cmd/app_creator.go @@ -18,8 +18,8 @@ import ( "github.com/tendermint/tendermint/libs/log" dbm "github.com/tendermint/tm-db" - umeeapp "github.com/umee-network/umee/app" - "github.com/umee-network/umee/app/params" + umeeapp "github.com/umee-network/umee/v2/app" + "github.com/umee-network/umee/v2/app/params" ) type appCreator struct { diff --git a/cmd/umeed/cmd/debug.go b/cmd/umeed/cmd/debug.go index 48abc1668c..038ed319f5 100644 --- a/cmd/umeed/cmd/debug.go +++ b/cmd/umeed/cmd/debug.go @@ -11,7 +11,7 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/spf13/cobra" - umeeapp "github.com/umee-network/umee/app" + umeeapp "github.com/umee-network/umee/v2/app" ) const ( diff --git a/cmd/umeed/cmd/root.go b/cmd/umeed/cmd/root.go index fb93df5448..a604d261fa 100644 --- a/cmd/umeed/cmd/root.go +++ b/cmd/umeed/cmd/root.go @@ -20,8 +20,8 @@ import ( "github.com/spf13/pflag" tmcli "github.com/tendermint/tendermint/libs/cli" - umeeapp "github.com/umee-network/umee/app" - "github.com/umee-network/umee/app/params" + umeeapp "github.com/umee-network/umee/v2/app" + "github.com/umee-network/umee/v2/app/params" ) // NewRootCmd returns the root command handler for the Umee daemon. diff --git a/cmd/umeed/main.go b/cmd/umeed/main.go index 925a40de81..c1602a7488 100644 --- a/cmd/umeed/main.go +++ b/cmd/umeed/main.go @@ -5,8 +5,8 @@ import ( svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - umeeapp "github.com/umee-network/umee/app" - "github.com/umee-network/umee/cmd/umeed/cmd" + umeeapp "github.com/umee-network/umee/v2/app" + "github.com/umee-network/umee/v2/cmd/umeed/cmd" ) func main() { diff --git a/contrib/scripts/protocgen.sh b/contrib/scripts/protocgen.sh index 184045eceb..efcc493e90 100755 --- a/contrib/scripts/protocgen.sh +++ b/contrib/scripts/protocgen.sh @@ -30,5 +30,5 @@ for dir in $proto_dirs; do $(find "${dir}" -maxdepth 1 -name '*.proto') done -cp -r ./github.com/umee-network/umee/* ./ +cp -r ./github.com/umee-network/umee/v*/x/* x/ rm -rf ./github.com diff --git a/go.mod b/go.mod index bc76091fa1..29bda42bc3 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/umee-network/umee +module github.com/umee-network/umee/v2 go 1.17 diff --git a/proto/umee/leverage/v1beta1/genesis.proto b/proto/umee/leverage/v1beta1/genesis.proto index dda0895f9d..dd1c60ddfc 100644 --- a/proto/umee/leverage/v1beta1/genesis.proto +++ b/proto/umee/leverage/v1beta1/genesis.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; import "umee/leverage/v1beta1/leverage.proto"; -option go_package = "github.com/umee-network/umee/x/leverage/types"; +option go_package = "github.com/umee-network/umee/v2/x/leverage/types"; // GenesisState defines the x/leverage module's genesis state. message GenesisState { diff --git a/proto/umee/leverage/v1beta1/gov.proto b/proto/umee/leverage/v1beta1/gov.proto index 70c8534ed9..2462ff95f4 100644 --- a/proto/umee/leverage/v1beta1/gov.proto +++ b/proto/umee/leverage/v1beta1/gov.proto @@ -4,7 +4,7 @@ package umeenetwork.umee.leverage.v1beta1; import "gogoproto/gogo.proto"; import "umee/leverage/v1beta1/leverage.proto"; -option go_package = "github.com/umee-network/umee/x/leverage/types"; +option go_package = "github.com/umee-network/umee/v2/x/leverage/types"; // UpdateRegistryProposal defines a governance proposal type where the token // registry can be updated in the Umee capital facility. Note, the registry diff --git a/proto/umee/leverage/v1beta1/leverage.proto b/proto/umee/leverage/v1beta1/leverage.proto index 07be34f3ed..d36b3fecd0 100644 --- a/proto/umee/leverage/v1beta1/leverage.proto +++ b/proto/umee/leverage/v1beta1/leverage.proto @@ -3,7 +3,7 @@ package umeenetwork.umee.leverage.v1beta1; import "gogoproto/gogo.proto"; -option go_package = "github.com/umee-network/umee/x/leverage/types"; +option go_package = "github.com/umee-network/umee/v2/x/leverage/types"; // Params defines the parameters for the leverage module. message Params { diff --git a/proto/umee/leverage/v1beta1/query.proto b/proto/umee/leverage/v1beta1/query.proto index 62c7c9ee26..88b3cb2fb6 100644 --- a/proto/umee/leverage/v1beta1/query.proto +++ b/proto/umee/leverage/v1beta1/query.proto @@ -6,7 +6,7 @@ import "umee/leverage/v1beta1/leverage.proto"; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/umee-network/umee/x/leverage/types"; +option go_package = "github.com/umee-network/umee/v2/x/leverage/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/umee/leverage/v1beta1/tx.proto b/proto/umee/leverage/v1beta1/tx.proto index 62ec6b65fe..eac9296c60 100644 --- a/proto/umee/leverage/v1beta1/tx.proto +++ b/proto/umee/leverage/v1beta1/tx.proto @@ -4,7 +4,7 @@ package umeenetwork.umee.leverage.v1beta1; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/umee-network/umee/x/leverage/types"; +option go_package = "github.com/umee-network/umee/v2/x/leverage/types"; // Msg defines the x/leverage module's Msg service. service Msg { diff --git a/proto/umee/oracle/v1beta1/genesis.proto b/proto/umee/oracle/v1beta1/genesis.proto index 7e16f5186e..4ea601aa8f 100644 --- a/proto/umee/oracle/v1beta1/genesis.proto +++ b/proto/umee/oracle/v1beta1/genesis.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "umee/oracle/v1beta1/oracle.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/umee-network/umee/x/oracle/types"; +option go_package = "github.com/umee-network/umee/v2/x/oracle/types"; // GenesisState defines the oracle module's genesis state. message GenesisState { diff --git a/proto/umee/oracle/v1beta1/oracle.proto b/proto/umee/oracle/v1beta1/oracle.proto index 0eccaa900d..2440b4d712 100644 --- a/proto/umee/oracle/v1beta1/oracle.proto +++ b/proto/umee/oracle/v1beta1/oracle.proto @@ -4,7 +4,7 @@ package umeenetwork.umee.oracle.v1beta1; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/umee-network/umee/x/oracle/types"; +option go_package = "github.com/umee-network/umee/v2/x/oracle/types"; // Params defines the parameters for the oracle module. message Params { diff --git a/proto/umee/oracle/v1beta1/query.proto b/proto/umee/oracle/v1beta1/query.proto index 4e539a80f4..d8ed51c75b 100644 --- a/proto/umee/oracle/v1beta1/query.proto +++ b/proto/umee/oracle/v1beta1/query.proto @@ -6,7 +6,7 @@ import "google/api/annotations.proto"; import "umee/oracle/v1beta1/oracle.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/umee-network/umee/x/oracle/types"; +option go_package = "github.com/umee-network/umee/v2/x/oracle/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/umee/oracle/v1beta1/tx.proto b/proto/umee/oracle/v1beta1/tx.proto index 8f04835040..a8da6299d2 100644 --- a/proto/umee/oracle/v1beta1/tx.proto +++ b/proto/umee/oracle/v1beta1/tx.proto @@ -3,7 +3,7 @@ package umeenetwork.umee.oracle.v1beta1; import "gogoproto/gogo.proto"; -option go_package = "github.com/umee-network/umee/x/oracle/types"; +option go_package = "github.com/umee-network/umee/v2/x/oracle/types"; // Msg defines the oracle Msg service. service Msg { diff --git a/tests/e2e/chain.go b/tests/e2e/chain.go index ab43409ae7..136a542e2c 100644 --- a/tests/e2e/chain.go +++ b/tests/e2e/chain.go @@ -12,8 +12,8 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" tmrand "github.com/tendermint/tendermint/libs/rand" - umeeapp "github.com/umee-network/umee/app" - "github.com/umee-network/umee/app/params" + umeeapp "github.com/umee-network/umee/v2/app" + "github.com/umee-network/umee/v2/app/params" ) const ( diff --git a/tests/e2e/e2e_setup_test.go b/tests/e2e/e2e_setup_test.go index c9be621cd2..510509a0de 100644 --- a/tests/e2e/e2e_setup_test.go +++ b/tests/e2e/e2e_setup_test.go @@ -34,8 +34,8 @@ import ( tmjson "github.com/tendermint/tendermint/libs/json" rpchttp "github.com/tendermint/tendermint/rpc/client/http" - umeeapp "github.com/umee-network/umee/app" - leveragetypes "github.com/umee-network/umee/x/leverage/types" + umeeapp "github.com/umee-network/umee/v2/app" + leveragetypes "github.com/umee-network/umee/v2/x/leverage/types" ) const ( diff --git a/tests/e2e/validator.go b/tests/e2e/validator.go index c809a95c76..fe4c429424 100644 --- a/tests/e2e/validator.go +++ b/tests/e2e/validator.go @@ -25,7 +25,7 @@ import ( "github.com/tendermint/tendermint/p2p" "github.com/tendermint/tendermint/privval" - umeeapp "github.com/umee-network/umee/app" + umeeapp "github.com/umee-network/umee/v2/app" ) type validator struct { diff --git a/tests/simulation/sim_test.go b/tests/simulation/sim_test.go index 6c42661290..ec37400c71 100644 --- a/tests/simulation/sim_test.go +++ b/tests/simulation/sim_test.go @@ -19,7 +19,7 @@ import ( tmrand "github.com/tendermint/tendermint/libs/rand" dbm "github.com/tendermint/tm-db" - umeeapp "github.com/umee-network/umee/app" + umeeapp "github.com/umee-network/umee/v2/app" ) func init() { diff --git a/tests/simulation/state.go b/tests/simulation/state.go index fc9dabb102..36f1de47f2 100644 --- a/tests/simulation/state.go +++ b/tests/simulation/state.go @@ -22,8 +22,8 @@ import ( tmjson "github.com/tendermint/tendermint/libs/json" tmtypes "github.com/tendermint/tendermint/types" - umeeapp "github.com/umee-network/umee/app" - "github.com/umee-network/umee/tests/util" + umeeapp "github.com/umee-network/umee/v2/app" + "github.com/umee-network/umee/v2/tests/util" ) // appStateFn returns the initial application state using a genesis file or diff --git a/x/ibctransfer/keeper/keeper.go b/x/ibctransfer/keeper/keeper.go index 527ec80f27..79d59f43c2 100644 --- a/x/ibctransfer/keeper/keeper.go +++ b/x/ibctransfer/keeper/keeper.go @@ -11,7 +11,7 @@ import ( clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" - "github.com/umee-network/umee/x/ibctransfer/types" + "github.com/umee-network/umee/v2/x/ibctransfer/types" ) // Keeper embeds the ICS-20 transfer keeper where we only override specific diff --git a/x/ibctransfer/keeper/keeper_test.go b/x/ibctransfer/keeper/keeper_test.go index 19e36a103d..f36776721b 100644 --- a/x/ibctransfer/keeper/keeper_test.go +++ b/x/ibctransfer/keeper/keeper_test.go @@ -19,8 +19,8 @@ import ( "github.com/tendermint/tendermint/crypto" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - umeeapp "github.com/umee-network/umee/app" - "github.com/umee-network/umee/tests/util" + umeeapp "github.com/umee-network/umee/v2/app" + "github.com/umee-network/umee/v2/tests/util" ) type KeeperTestSuite struct { diff --git a/x/ibctransfer/keeper/util_test.go b/x/ibctransfer/keeper/util_test.go index 9877b1b20e..d4646fbfe1 100644 --- a/x/ibctransfer/keeper/util_test.go +++ b/x/ibctransfer/keeper/util_test.go @@ -9,7 +9,7 @@ import ( "github.com/tendermint/tendermint/libs/log" dbm "github.com/tendermint/tm-db" - umeeapp "github.com/umee-network/umee/app" + umeeapp "github.com/umee-network/umee/v2/app" ) func SetupTestingApp() (ibctesting.TestingApp, map[string]json.RawMessage) { diff --git a/x/ibctransfer/module.go b/x/ibctransfer/module.go index 5e6682ce70..cae144e6e0 100644 --- a/x/ibctransfer/module.go +++ b/x/ibctransfer/module.go @@ -7,7 +7,7 @@ import ( channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" ibcexported "github.com/cosmos/ibc-go/v2/modules/core/exported" - "github.com/umee-network/umee/x/ibctransfer/keeper" + "github.com/umee-network/umee/v2/x/ibctransfer/keeper" ) // AppModule embeds the ICS-20 transfer AppModule where we only override specific diff --git a/x/leverage/abci.go b/x/leverage/abci.go index a89c95036f..0beb58d900 100644 --- a/x/leverage/abci.go +++ b/x/leverage/abci.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" abci "github.com/tendermint/tendermint/abci/types" - "github.com/umee-network/umee/x/leverage/keeper" + "github.com/umee-network/umee/v2/x/leverage/keeper" ) // EndBlocker implements EndBlock for the x/leverage module. diff --git a/x/leverage/client/cli/proposal.go b/x/leverage/client/cli/proposal.go index fc6ce5b0a5..1e5d2baa1c 100644 --- a/x/leverage/client/cli/proposal.go +++ b/x/leverage/client/cli/proposal.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // ParseUpdateRegistryProposal attempts to parse a UpdateRegistryProposal from diff --git a/x/leverage/client/cli/proposal_test.go b/x/leverage/client/cli/proposal_test.go index 5440681735..c77a0ae92e 100644 --- a/x/leverage/client/cli/proposal_test.go +++ b/x/leverage/client/cli/proposal_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - umeeapp "github.com/umee-network/umee/app" - "github.com/umee-network/umee/x/leverage/client/cli" + umeeapp "github.com/umee-network/umee/v2/app" + "github.com/umee-network/umee/v2/x/leverage/client/cli" ) func TestParseUpdateRegistryProposal(t *testing.T) { diff --git a/x/leverage/client/cli/query.go b/x/leverage/client/cli/query.go index 6d7e738ff4..6f9c166603 100644 --- a/x/leverage/client/cli/query.go +++ b/x/leverage/client/cli/query.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // Flag constants diff --git a/x/leverage/client/cli/tx.go b/x/leverage/client/cli/tx.go index 0f23394e97..09deb4128a 100644 --- a/x/leverage/client/cli/tx.go +++ b/x/leverage/client/cli/tx.go @@ -12,7 +12,7 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "github.com/spf13/cobra" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // GetTxCmd returns the CLI transaction commands for the x/leverage module. diff --git a/x/leverage/client/proposal_handler.go b/x/leverage/client/proposal_handler.go index a2bdf016e3..54f30e7443 100644 --- a/x/leverage/client/proposal_handler.go +++ b/x/leverage/client/proposal_handler.go @@ -8,7 +8,7 @@ import ( govclient "github.com/cosmos/cosmos-sdk/x/gov/client" govrest "github.com/cosmos/cosmos-sdk/x/gov/client/rest" - "github.com/umee-network/umee/x/leverage/client/cli" + "github.com/umee-network/umee/v2/x/leverage/client/cli" ) // ProposalHandler defines an x/gov proposal handler for the CLI only. diff --git a/x/leverage/client/tests/cli_test.go b/x/leverage/client/tests/cli_test.go index 4b2db6c067..7542f780f4 100644 --- a/x/leverage/client/tests/cli_test.go +++ b/x/leverage/client/tests/cli_test.go @@ -10,7 +10,7 @@ import ( "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" - umeeapp "github.com/umee-network/umee/app" + umeeapp "github.com/umee-network/umee/v2/app" ) func TestIntegrationTestSuite(t *testing.T) { diff --git a/x/leverage/client/tests/suite.go b/x/leverage/client/tests/suite.go index b7b876a8bf..decf83b593 100644 --- a/x/leverage/client/tests/suite.go +++ b/x/leverage/client/tests/suite.go @@ -13,9 +13,9 @@ import ( "github.com/stretchr/testify/suite" tmcli "github.com/tendermint/tendermint/libs/cli" - umeeapp "github.com/umee-network/umee/app" - "github.com/umee-network/umee/x/leverage/client/cli" - "github.com/umee-network/umee/x/leverage/types" + umeeapp "github.com/umee-network/umee/v2/app" + "github.com/umee-network/umee/v2/x/leverage/client/cli" + "github.com/umee-network/umee/v2/x/leverage/types" ) type IntegrationTestSuite struct { diff --git a/x/leverage/client/tests/util.go b/x/leverage/client/tests/util.go index 29e4ace6b1..0cb40e0e02 100644 --- a/x/leverage/client/tests/util.go +++ b/x/leverage/client/tests/util.go @@ -15,9 +15,9 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" tmcli "github.com/tendermint/tendermint/libs/cli" - umeeapp "github.com/umee-network/umee/app" - "github.com/umee-network/umee/x/leverage/client/cli" - "github.com/umee-network/umee/x/leverage/types" + umeeapp "github.com/umee-network/umee/v2/app" + "github.com/umee-network/umee/v2/x/leverage/client/cli" + "github.com/umee-network/umee/v2/x/leverage/types" ) var proposalCounter int diff --git a/x/leverage/genesis.go b/x/leverage/genesis.go index 90880271a6..5b8c28508e 100644 --- a/x/leverage/genesis.go +++ b/x/leverage/genesis.go @@ -3,8 +3,8 @@ package leverage import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/umee-network/umee/x/leverage/keeper" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/keeper" + "github.com/umee-network/umee/v2/x/leverage/types" ) // InitGenesis initializes the x/leverage module's state from a provided genesis diff --git a/x/leverage/gov_handler.go b/x/leverage/gov_handler.go index 3df75fff7e..7f5c9a9fcf 100644 --- a/x/leverage/gov_handler.go +++ b/x/leverage/gov_handler.go @@ -5,8 +5,8 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/umee-network/umee/x/leverage/keeper" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/keeper" + "github.com/umee-network/umee/v2/x/leverage/types" ) func NewUpdateRegistryProposalHandler(k keeper.Keeper) govtypes.Handler { diff --git a/x/leverage/gov_handler_test.go b/x/leverage/gov_handler_test.go index 4c8e5ef925..05d31cf815 100644 --- a/x/leverage/gov_handler_test.go +++ b/x/leverage/gov_handler_test.go @@ -10,9 +10,9 @@ import ( tmrand "github.com/tendermint/tendermint/libs/rand" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - umeeapp "github.com/umee-network/umee/app" - "github.com/umee-network/umee/x/leverage" - "github.com/umee-network/umee/x/leverage/types" + umeeapp "github.com/umee-network/umee/v2/app" + "github.com/umee-network/umee/v2/x/leverage" + "github.com/umee-network/umee/v2/x/leverage/types" ) func TestUpdateRegistryProposalHandler(t *testing.T) { diff --git a/x/leverage/keeper/borrows.go b/x/leverage/keeper/borrows.go index 9ff426b40b..fd23c04589 100644 --- a/x/leverage/keeper/borrows.go +++ b/x/leverage/keeper/borrows.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // GetBorrow returns an sdk.Coin representing how much of a given denom a diff --git a/x/leverage/keeper/borrows_test.go b/x/leverage/keeper/borrows_test.go index 5070223618..6d6848f650 100644 --- a/x/leverage/keeper/borrows_test.go +++ b/x/leverage/keeper/borrows_test.go @@ -3,7 +3,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) func (s *IntegrationTestSuite) TestGetBorrow() { diff --git a/x/leverage/keeper/collateral.go b/x/leverage/keeper/collateral.go index a538183688..b03e0dbc6e 100644 --- a/x/leverage/keeper/collateral.go +++ b/x/leverage/keeper/collateral.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // GetCollateralAmount returns an sdk.Coin representing how much of a given denom the diff --git a/x/leverage/keeper/exchange_rate.go b/x/leverage/keeper/exchange_rate.go index f8086a4eeb..cc775d1f45 100644 --- a/x/leverage/keeper/exchange_rate.go +++ b/x/leverage/keeper/exchange_rate.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // ExchangeToken converts an sdk.Coin containing a base asset to its value as a diff --git a/x/leverage/keeper/genesis.go b/x/leverage/keeper/genesis.go index 04f3414ae3..a1cf9cb6a0 100644 --- a/x/leverage/keeper/genesis.go +++ b/x/leverage/keeper/genesis.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // InitGenesis initializes the x/leverage module state from a provided genesis state. diff --git a/x/leverage/keeper/grpc_query.go b/x/leverage/keeper/grpc_query.go index 6f2c06894c..6b911f7118 100644 --- a/x/leverage/keeper/grpc_query.go +++ b/x/leverage/keeper/grpc_query.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) var _ types.QueryServer = Querier{} diff --git a/x/leverage/keeper/grpc_query_test.go b/x/leverage/keeper/grpc_query_test.go index 6b347ff84b..c6d9e290bb 100644 --- a/x/leverage/keeper/grpc_query_test.go +++ b/x/leverage/keeper/grpc_query_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "context" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) func (s *IntegrationTestSuite) TestQuerier_RegisteredTokens() { diff --git a/x/leverage/keeper/interest.go b/x/leverage/keeper/interest.go index b9712100ff..1cee142e7b 100644 --- a/x/leverage/keeper/interest.go +++ b/x/leverage/keeper/interest.go @@ -7,7 +7,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" gogotypes "github.com/gogo/protobuf/types" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // DeriveBorrowAPY derives the current borrow interest rate on a token denom diff --git a/x/leverage/keeper/internal_test.go b/x/leverage/keeper/internal_test.go index bbbfa21dd4..891930baae 100644 --- a/x/leverage/keeper/internal_test.go +++ b/x/leverage/keeper/internal_test.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // TestKeeper is a keeper with some normally diff --git a/x/leverage/keeper/invariants.go b/x/leverage/keeper/invariants.go index 784dc688e5..8d3744b580 100644 --- a/x/leverage/keeper/invariants.go +++ b/x/leverage/keeper/invariants.go @@ -4,7 +4,7 @@ import ( "fmt" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) const ( diff --git a/x/leverage/keeper/iter.go b/x/leverage/keeper/iter.go index 47eab42e15..0139744a0d 100644 --- a/x/leverage/keeper/iter.go +++ b/x/leverage/keeper/iter.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // iterate through all keys with a given prefix using a provided function. diff --git a/x/leverage/keeper/keeper.go b/x/leverage/keeper/keeper.go index 31679a7704..aa9259b69a 100644 --- a/x/leverage/keeper/keeper.go +++ b/x/leverage/keeper/keeper.go @@ -10,7 +10,7 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" "github.com/tendermint/tendermint/libs/log" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) type Keeper struct { diff --git a/x/leverage/keeper/keeper_test.go b/x/leverage/keeper/keeper_test.go index 918e485c91..6e3fe7aea5 100644 --- a/x/leverage/keeper/keeper_test.go +++ b/x/leverage/keeper/keeper_test.go @@ -12,10 +12,10 @@ import ( tmrand "github.com/tendermint/tendermint/libs/rand" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - umeeapp "github.com/umee-network/umee/app" - "github.com/umee-network/umee/x/leverage" - "github.com/umee-network/umee/x/leverage/keeper" - "github.com/umee-network/umee/x/leverage/types" + umeeapp "github.com/umee-network/umee/v2/app" + "github.com/umee-network/umee/v2/x/leverage" + "github.com/umee-network/umee/v2/x/leverage/keeper" + "github.com/umee-network/umee/v2/x/leverage/types" ) const ( diff --git a/x/leverage/keeper/loaned.go b/x/leverage/keeper/loaned.go index 29abafd01b..7a4e542659 100644 --- a/x/leverage/keeper/loaned.go +++ b/x/leverage/keeper/loaned.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // GetLoaned returns an sdk.Coin representing how much of a given denom a diff --git a/x/leverage/keeper/msg_server.go b/x/leverage/keeper/msg_server.go index d4a4ef758f..6560018f7f 100644 --- a/x/leverage/keeper/msg_server.go +++ b/x/leverage/keeper/msg_server.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/leverage/keeper/oracle.go b/x/leverage/keeper/oracle.go index beb812630b..dcfa2edc09 100644 --- a/x/leverage/keeper/oracle.go +++ b/x/leverage/keeper/oracle.go @@ -4,9 +4,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - oracletypes "github.com/umee-network/umee/x/oracle/types" + oracletypes "github.com/umee-network/umee/v2/x/oracle/types" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // TokenPrice returns the USD value of a base token. Note, the token's denomination diff --git a/x/leverage/keeper/oracle_test.go b/x/leverage/keeper/oracle_test.go index 063f4c4ed4..c8dc3effb3 100644 --- a/x/leverage/keeper/oracle_test.go +++ b/x/leverage/keeper/oracle_test.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - umeeapp "github.com/umee-network/umee/app" + umeeapp "github.com/umee-network/umee/v2/app" ) type mockOracleKeeper struct { diff --git a/x/leverage/keeper/params.go b/x/leverage/keeper/params.go index 38138189fd..b0bdf30eff 100644 --- a/x/leverage/keeper/params.go +++ b/x/leverage/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // SetParams sets the x/leverage module's parameters. diff --git a/x/leverage/keeper/reserves.go b/x/leverage/keeper/reserves.go index a0b74c1f9f..54e76439b3 100644 --- a/x/leverage/keeper/reserves.go +++ b/x/leverage/keeper/reserves.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // GetReserveAmount gets the amount reserved of a specified token. On invalid diff --git a/x/leverage/keeper/store.go b/x/leverage/keeper/store.go index 5b152e1073..fcd4156a9a 100644 --- a/x/leverage/keeper/store.go +++ b/x/leverage/keeper/store.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // getAdjustedBorrow gets the adjusted amount borrowed by an address in a given denom. Returns zero diff --git a/x/leverage/keeper/token.go b/x/leverage/keeper/token.go index 136ba72562..9f69168454 100644 --- a/x/leverage/keeper/token.go +++ b/x/leverage/keeper/token.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // FromUTokenToTokenDenom strips the uToken prefix ("u/") from an input denom. diff --git a/x/leverage/module.go b/x/leverage/module.go index a97c9b2f44..af7b76bd85 100644 --- a/x/leverage/module.go +++ b/x/leverage/module.go @@ -16,10 +16,10 @@ import ( "github.com/spf13/cobra" abci "github.com/tendermint/tendermint/abci/types" - "github.com/umee-network/umee/x/leverage/client/cli" - "github.com/umee-network/umee/x/leverage/keeper" - "github.com/umee-network/umee/x/leverage/simulation" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/client/cli" + "github.com/umee-network/umee/v2/x/leverage/keeper" + "github.com/umee-network/umee/v2/x/leverage/simulation" + "github.com/umee-network/umee/v2/x/leverage/types" ) var ( diff --git a/x/leverage/simulation/decoder.go b/x/leverage/simulation/decoder.go index d7afe62f88..d791bf46e2 100644 --- a/x/leverage/simulation/decoder.go +++ b/x/leverage/simulation/decoder.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" gogotypes "github.com/gogo/protobuf/types" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/x/leverage/simulation/genesis.go b/x/leverage/simulation/genesis.go index a6a2d9e103..a41b43058d 100644 --- a/x/leverage/simulation/genesis.go +++ b/x/leverage/simulation/genesis.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // Simulation parameter constants diff --git a/x/leverage/simulation/operations.go b/x/leverage/simulation/operations.go index 42b0d79970..37388714f8 100644 --- a/x/leverage/simulation/operations.go +++ b/x/leverage/simulation/operations.go @@ -10,8 +10,8 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/umee-network/umee/x/leverage/keeper" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/keeper" + "github.com/umee-network/umee/v2/x/leverage/types" ) // Default simulation operation weights for leverage messages diff --git a/x/leverage/simulation/operations_test.go b/x/leverage/simulation/operations_test.go index 295d37ab24..02ce2d03e3 100644 --- a/x/leverage/simulation/operations_test.go +++ b/x/leverage/simulation/operations_test.go @@ -11,10 +11,10 @@ import ( abci "github.com/tendermint/tendermint/abci/types" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - umeeapp "github.com/umee-network/umee/app" - "github.com/umee-network/umee/x/leverage" - "github.com/umee-network/umee/x/leverage/simulation" - "github.com/umee-network/umee/x/leverage/types" + umeeapp "github.com/umee-network/umee/v2/app" + "github.com/umee-network/umee/v2/x/leverage" + "github.com/umee-network/umee/v2/x/leverage/simulation" + "github.com/umee-network/umee/v2/x/leverage/types" ) // SimTestSuite wraps the test suite for running the simulations diff --git a/x/leverage/simulation/params.go b/x/leverage/simulation/params.go index a78dec00e1..e202060fc2 100644 --- a/x/leverage/simulation/params.go +++ b/x/leverage/simulation/params.go @@ -7,7 +7,7 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) // ParamChanges defines the parameters that can be modified by param change proposals diff --git a/x/leverage/types/genesis.pb.go b/x/leverage/types/genesis.pb.go index eff9c87aee..ca7ccc160a 100644 --- a/x/leverage/types/genesis.pb.go +++ b/x/leverage/types/genesis.pb.go @@ -414,47 +414,47 @@ func init() { } var fileDescriptor_bca558a26db296e9 = []byte{ - // 631 bytes of a gzipped FileDescriptorProto + // 635 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0xcb, 0x6e, 0xd3, 0x4c, 0x14, 0x8e, 0x7b, 0x49, 0x9a, 0x69, 0xff, 0xfe, 0x65, 0xe8, 0xc2, 0x54, 0xc8, 0x2d, 0x01, 0xa1, - 0x80, 0x88, 0x4d, 0x0b, 0x12, 0x82, 0x1d, 0x69, 0x45, 0x05, 0x12, 0x12, 0x4a, 0xba, 0x62, 0x63, - 0x8d, 0xed, 0x83, 0x31, 0xb1, 0x3d, 0xd1, 0x9c, 0x49, 0x4b, 0x1f, 0x80, 0x3d, 0xcf, 0xc1, 0x93, - 0x74, 0xd9, 0x25, 0x62, 0x51, 0x50, 0xfb, 0x22, 0xc8, 0x33, 0x93, 0x5b, 0xa9, 0x82, 0x2b, 0xb1, - 0x8a, 0xcf, 0x9c, 0xf3, 0x5d, 0x32, 0xf3, 0xcd, 0x90, 0xbb, 0x83, 0x0c, 0xc0, 0x4b, 0xe1, 0x10, - 0x04, 0x8b, 0xc1, 0x3b, 0xdc, 0x0e, 0x40, 0xb2, 0x6d, 0x2f, 0x86, 0x1c, 0x30, 0x41, 0xb7, 0x2f, - 0xb8, 0xe4, 0xf4, 0x4e, 0x31, 0x94, 0x83, 0x3c, 0xe2, 0xa2, 0xe7, 0x16, 0xdf, 0xee, 0x10, 0xe0, - 0x1a, 0xc0, 0xc6, 0x7a, 0xcc, 0x63, 0xae, 0xa6, 0xbd, 0xe2, 0x4b, 0x03, 0x37, 0x9c, 0x90, 0x63, - 0xc6, 0xd1, 0x0b, 0x18, 0x8e, 0xb9, 0x43, 0x9e, 0xe4, 0xa6, 0x7f, 0xef, 0x6a, 0xf5, 0x11, 0xbb, - 0x9a, 0x6a, 0x7c, 0xa9, 0x91, 0x95, 0x7d, 0x6d, 0xa8, 0x2b, 0x99, 0x04, 0xba, 0x4f, 0xaa, 0x7d, - 0x26, 0x58, 0x86, 0xb6, 0xb5, 0x65, 0x35, 0x97, 0x77, 0x1e, 0xb8, 0x7f, 0x35, 0xe8, 0xbe, 0x53, - 0x80, 0xf6, 0xc2, 0xc9, 0xd9, 0x66, 0xa5, 0x63, 0xe0, 0xf4, 0x0d, 0x59, 0x12, 0x10, 0x27, 0x28, - 0xc5, 0xb1, 0x3d, 0xb7, 0x35, 0xdf, 0x5c, 0xde, 0x69, 0x96, 0xa0, 0x3a, 0xe0, 0x3d, 0xc8, 0x0d, - 0xd3, 0x08, 0x4f, 0x03, 0xb2, 0xc6, 0xa2, 0x4f, 0x03, 0x94, 0x10, 0xf9, 0x01, 0x17, 0x82, 0x1f, - 0xa1, 0x3d, 0xaf, 0x38, 0xb7, 0x4b, 0x70, 0xbe, 0x34, 0xd0, 0xb6, 0x42, 0x1a, 0xf2, 0xff, 0xd9, - 0xd4, 0x2a, 0xd2, 0x1e, 0xb9, 0x19, 0xf2, 0x34, 0x65, 0x12, 0x04, 0x4b, 0x7d, 0x04, 0x29, 0x93, - 0x3c, 0x46, 0x7b, 0x41, 0xc9, 0x3c, 0x2d, 0x21, 0xb3, 0x3b, 0x42, 0x77, 0x35, 0xd8, 0x28, 0xd1, - 0xf0, 0x72, 0x03, 0x69, 0x97, 0x90, 0xf1, 0xaa, 0xbd, 0xa8, 0x34, 0x5a, 0xd7, 0xd2, 0x30, 0xe4, - 0x13, 0x34, 0x34, 0x2e, 0x76, 0x1c, 0x41, 0x1c, 0x02, 0xda, 0x55, 0x45, 0x79, 0xcb, 0xd5, 0x21, - 0x71, 0x8b, 0x90, 0x4c, 0x90, 0x24, 0x79, 0xfb, 0x71, 0x01, 0xff, 0xf6, 0x73, 0xb3, 0x19, 0x27, - 0xf2, 0xe3, 0x20, 0x70, 0x43, 0x9e, 0x79, 0x26, 0x51, 0xfa, 0xa7, 0x85, 0x51, 0xcf, 0x93, 0xc7, - 0x7d, 0x40, 0x05, 0xc0, 0xce, 0x88, 0x9c, 0x3e, 0x22, 0x34, 0x65, 0x28, 0xfd, 0x24, 0x97, 0x20, - 0x00, 0xa5, 0x2f, 0x93, 0x0c, 0xec, 0xda, 0x96, 0xd5, 0x9c, 0xef, 0xac, 0x15, 0x9d, 0xd7, 0xa6, - 0x71, 0x90, 0x64, 0x40, 0xdf, 0x92, 0x7a, 0xc0, 0x22, 0x3f, 0x82, 0x40, 0xa2, 0xbd, 0xa4, 0x7c, - 0x3d, 0x2c, 0xf1, 0x57, 0xdb, 0x2c, 0xda, 0x83, 0x40, 0x0e, 0xb3, 0x10, 0xe8, 0x12, 0x8b, 0x2c, - 0x8c, 0x74, 0x31, 0x64, 0x29, 0x13, 0x68, 0xd7, 0x4b, 0x67, 0x61, 0xe8, 0xac, 0xab, 0x90, 0xc3, - 0x2c, 0x24, 0x53, 0xab, 0x48, 0xfb, 0xe4, 0xbf, 0x81, 0x2c, 0x92, 0xe8, 0xe3, 0xa0, 0xdf, 0x4f, - 0x8f, 0x6d, 0xf2, 0xef, 0xb7, 0x73, 0x45, 0x2b, 0x74, 0x95, 0x40, 0xe3, 0x03, 0x59, 0x9d, 0x8e, - 0x29, 0xb5, 0x49, 0x8d, 0x45, 0x91, 0x00, 0xd4, 0x37, 0xb1, 0xde, 0x19, 0x96, 0xf4, 0x05, 0xa9, - 0xb2, 0x8c, 0x0f, 0x72, 0x69, 0xcf, 0xa9, 0x2b, 0x7a, 0xfb, 0x4a, 0x5b, 0x7b, 0x10, 0x2a, 0x67, - 0xe6, 0x56, 0x6a, 0x44, 0x63, 0x97, 0xdc, 0xf8, 0x23, 0xa7, 0x33, 0xa4, 0xd6, 0xc9, 0x62, 0x04, - 0x39, 0xcf, 0x94, 0x52, 0xbd, 0xa3, 0x8b, 0x86, 0x4f, 0xc8, 0x98, 0x64, 0x06, 0xfa, 0xd9, 0x25, - 0xa3, 0x33, 0xf6, 0x6f, 0xda, 0xe5, 0x73, 0x52, 0x33, 0xc7, 0x7f, 0x6d, 0x6f, 0x39, 0x59, 0x9d, - 0x3e, 0xe3, 0xf1, 0x9c, 0x35, 0x31, 0x47, 0x5f, 0x91, 0xaa, 0x4e, 0x8f, 0x86, 0xb7, 0xdd, 0xc2, - 0xc0, 0x8f, 0xb3, 0xcd, 0xfb, 0x25, 0x0e, 0x70, 0x0f, 0xc2, 0x8e, 0x41, 0xb7, 0xf7, 0x4f, 0xce, - 0x1d, 0xeb, 0xf4, 0xdc, 0xb1, 0x7e, 0x9d, 0x3b, 0xd6, 0xd7, 0x0b, 0xa7, 0x72, 0x7a, 0xe1, 0x54, - 0xbe, 0x5f, 0x38, 0x95, 0xf7, 0xad, 0x09, 0xa6, 0x22, 0x8c, 0x2d, 0x93, 0x4c, 0x55, 0x78, 0x9f, - 0xc7, 0x4f, 0xb3, 0x22, 0x0d, 0xaa, 0xea, 0x41, 0x7e, 0xf2, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x4d, - 0xe4, 0x77, 0xbb, 0x36, 0x06, 0x00, 0x00, + 0x80, 0xa8, 0xdd, 0x16, 0x24, 0x04, 0x3b, 0xd2, 0x8a, 0x8a, 0x4a, 0x48, 0x28, 0xe9, 0x8a, 0x8d, + 0x35, 0xb6, 0x0f, 0xc6, 0xc4, 0xf6, 0x44, 0x73, 0x26, 0x29, 0x7d, 0x00, 0xf6, 0x3c, 0x07, 0x4f, + 0xd2, 0x65, 0x97, 0x88, 0x45, 0x41, 0xed, 0x8b, 0x20, 0xcf, 0x4c, 0x6e, 0xa5, 0x2a, 0xae, 0xc4, + 0x2a, 0x3e, 0x73, 0xce, 0x77, 0xc9, 0xcc, 0x37, 0x43, 0xee, 0xf7, 0x33, 0x00, 0x2f, 0x85, 0x01, + 0x08, 0x16, 0x83, 0x37, 0xd8, 0x0e, 0x40, 0xb2, 0x6d, 0x2f, 0x86, 0x1c, 0x30, 0x41, 0xb7, 0x27, + 0xb8, 0xe4, 0xf4, 0x5e, 0x31, 0x94, 0x83, 0x3c, 0xe2, 0xa2, 0xeb, 0x16, 0xdf, 0xee, 0x10, 0xe0, + 0x1a, 0xc0, 0xda, 0x6a, 0xcc, 0x63, 0xae, 0xa6, 0xbd, 0xe2, 0x4b, 0x03, 0xd7, 0x9c, 0x90, 0x63, + 0xc6, 0xd1, 0x0b, 0x18, 0x8e, 0xb9, 0x43, 0x9e, 0xe4, 0xa6, 0xff, 0xe0, 0x6a, 0xf5, 0x11, 0xbb, + 0x9a, 0x6a, 0x7c, 0xa9, 0x91, 0xa5, 0x7d, 0x6d, 0xa8, 0x23, 0x99, 0x04, 0xba, 0x4f, 0xaa, 0x3d, + 0x26, 0x58, 0x86, 0xb6, 0xb5, 0x61, 0x35, 0x17, 0x77, 0x1e, 0xb9, 0x7f, 0x35, 0xe8, 0xbe, 0x53, + 0x80, 0xd6, 0xdc, 0xc9, 0xd9, 0x7a, 0xa5, 0x6d, 0xe0, 0xf4, 0x80, 0x2c, 0x08, 0x88, 0x13, 0x94, + 0xe2, 0xd8, 0x9e, 0xd9, 0x98, 0x6d, 0x2e, 0xee, 0x34, 0x4b, 0x50, 0x1d, 0xf2, 0x2e, 0xe4, 0x86, + 0x69, 0x84, 0xa7, 0x01, 0x59, 0x61, 0xd1, 0xa7, 0x3e, 0x4a, 0x88, 0xfc, 0x80, 0x0b, 0xc1, 0x8f, + 0xd0, 0x9e, 0x55, 0x9c, 0xdb, 0x25, 0x38, 0x5f, 0x19, 0x68, 0x4b, 0x21, 0x0d, 0xf9, 0xff, 0x6c, + 0x6a, 0x15, 0x69, 0x97, 0xdc, 0x0e, 0x79, 0x9a, 0x32, 0x09, 0x82, 0xa5, 0x3e, 0x82, 0x94, 0x49, + 0x1e, 0xa3, 0x3d, 0xa7, 0x64, 0x9e, 0x95, 0x90, 0xd9, 0x1d, 0xa1, 0x3b, 0x1a, 0x6c, 0x94, 0x68, + 0x78, 0xb9, 0x81, 0xb4, 0x43, 0xc8, 0x78, 0xd5, 0x9e, 0x57, 0x1a, 0x9b, 0x37, 0xd2, 0x30, 0xe4, + 0x13, 0x34, 0x34, 0x2e, 0x76, 0x1c, 0x41, 0x0c, 0x00, 0xed, 0xaa, 0xa2, 0xbc, 0xe3, 0xea, 0x90, + 0xb8, 0x45, 0x48, 0x26, 0x48, 0x92, 0xbc, 0xb5, 0x55, 0xc0, 0xbf, 0xfd, 0x5c, 0x6f, 0xc6, 0x89, + 0xfc, 0xd8, 0x0f, 0xdc, 0x90, 0x67, 0x9e, 0x49, 0x94, 0xfe, 0xd9, 0xc4, 0xa8, 0xeb, 0xc9, 0xe3, + 0x1e, 0xa0, 0x02, 0x60, 0x7b, 0x44, 0x4e, 0x9f, 0x10, 0x9a, 0x32, 0x94, 0x7e, 0x92, 0x4b, 0x10, + 0x80, 0xd2, 0x97, 0x49, 0x06, 0x76, 0x6d, 0xc3, 0x6a, 0xce, 0xb6, 0x57, 0x8a, 0xce, 0x1b, 0xd3, + 0x38, 0x4c, 0x32, 0xa0, 0x6f, 0x49, 0x3d, 0x60, 0x91, 0x1f, 0x41, 0x20, 0xd1, 0x5e, 0x50, 0xbe, + 0x1e, 0x97, 0xf8, 0xab, 0x2d, 0x16, 0xed, 0x41, 0x20, 0x87, 0x59, 0x08, 0x74, 0x89, 0x45, 0x16, + 0x46, 0xba, 0x18, 0xb2, 0x94, 0x09, 0xb4, 0xeb, 0xa5, 0xb3, 0x30, 0x74, 0xd6, 0x51, 0xc8, 0x61, + 0x16, 0x92, 0xa9, 0x55, 0xa4, 0x3d, 0xf2, 0x5f, 0x5f, 0x16, 0x49, 0xf4, 0xb1, 0xdf, 0xeb, 0xa5, + 0xc7, 0x36, 0xf9, 0xf7, 0xdb, 0xb9, 0xa4, 0x15, 0x3a, 0x4a, 0xa0, 0xf1, 0x81, 0x2c, 0x4f, 0xc7, + 0x94, 0xda, 0xa4, 0xc6, 0xa2, 0x48, 0x00, 0xea, 0x9b, 0x58, 0x6f, 0x0f, 0x4b, 0xfa, 0x92, 0x54, + 0x59, 0xc6, 0xfb, 0xb9, 0xb4, 0x67, 0xd4, 0x15, 0xbd, 0x7b, 0xa5, 0xad, 0x3d, 0x08, 0x95, 0x33, + 0x73, 0x2b, 0x35, 0xa2, 0xb1, 0x4b, 0x6e, 0xfd, 0x91, 0xd3, 0x6b, 0xa4, 0x56, 0xc9, 0x7c, 0x04, + 0x39, 0xcf, 0x94, 0x52, 0xbd, 0xad, 0x8b, 0x86, 0x4f, 0xc8, 0x98, 0xe4, 0x1a, 0xf4, 0xf3, 0x4b, + 0x46, 0xaf, 0xd9, 0xbf, 0x69, 0x97, 0x2f, 0x48, 0xcd, 0x1c, 0xff, 0x8d, 0xbd, 0xe5, 0x64, 0x79, + 0xfa, 0x8c, 0xc7, 0x73, 0xd6, 0xc4, 0x1c, 0x7d, 0x4d, 0xaa, 0x3a, 0x3d, 0x1a, 0xde, 0x72, 0x0b, + 0x03, 0x3f, 0xce, 0xd6, 0x1f, 0x96, 0x38, 0xc0, 0x3d, 0x08, 0xdb, 0x06, 0xdd, 0x3a, 0x38, 0x39, + 0x77, 0xac, 0xd3, 0x73, 0xc7, 0xfa, 0x75, 0xee, 0x58, 0x5f, 0x2f, 0x9c, 0xca, 0xe9, 0x85, 0x53, + 0xf9, 0x7e, 0xe1, 0x54, 0xde, 0x6f, 0x4d, 0x30, 0x15, 0x61, 0xdc, 0x34, 0xc9, 0x54, 0x85, 0x37, + 0xd8, 0xf1, 0x3e, 0x8f, 0x5f, 0x67, 0xc5, 0x1b, 0x54, 0xd5, 0x9b, 0xfc, 0xf4, 0x77, 0x00, 0x00, + 0x00, 0xff, 0xff, 0xa2, 0x80, 0x8e, 0xa4, 0x39, 0x06, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/leverage/types/gov.pb.go b/x/leverage/types/gov.pb.go index cc460e3201..476efdaa64 100644 --- a/x/leverage/types/gov.pb.go +++ b/x/leverage/types/gov.pb.go @@ -71,7 +71,7 @@ func init() { func init() { proto.RegisterFile("umee/leverage/v1beta1/gov.proto", fileDescriptor_d46e4b240ab13a5c) } var fileDescriptor_d46e4b240ab13a5c = []byte{ - // 274 bytes of a gzipped FileDescriptorProto + // 277 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x2f, 0xcd, 0x4d, 0x4d, 0xd5, 0xcf, 0x49, 0x2d, 0x4b, 0x2d, 0x4a, 0x4c, 0x4f, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0xcf, 0x2f, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x52, 0x04, 0x29, 0xc8, @@ -84,12 +84,12 @@ var fileDescriptor_d46e4b240ab13a5c = []byte{ 0x24, 0x98, 0xc0, 0x72, 0xc8, 0x42, 0x42, 0x5e, 0x5c, 0x1c, 0x45, 0x50, 0xb3, 0x24, 0x98, 0x15, 0x98, 0x35, 0xb8, 0x8d, 0x34, 0xf4, 0x08, 0x7a, 0x42, 0x2f, 0x24, 0x3f, 0x3b, 0x35, 0xcf, 0x89, 0xe5, 0xc4, 0x3d, 0x79, 0x86, 0x20, 0xb8, 0x7e, 0x2b, 0x9e, 0x8e, 0x05, 0xf2, 0x0c, 0x33, 0x16, - 0xc8, 0x33, 0xbc, 0x58, 0x20, 0xcf, 0xe8, 0xe4, 0x7e, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, + 0xc8, 0x33, 0xbc, 0x58, 0x20, 0xcf, 0xe8, 0xe4, 0x75, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, - 0x72, 0x0c, 0x51, 0xba, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0x20, - 0xf3, 0x75, 0xa1, 0x96, 0x81, 0x39, 0xfa, 0x15, 0x88, 0x60, 0x28, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, - 0x62, 0x03, 0x7b, 0xde, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xba, 0xb5, 0xbc, 0x2d, 0x7e, 0x01, - 0x00, 0x00, + 0x72, 0x0c, 0x51, 0x06, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0x20, + 0xf3, 0x75, 0xa1, 0x96, 0x81, 0x39, 0xfa, 0x65, 0x46, 0xfa, 0x15, 0x88, 0x90, 0x28, 0xa9, 0x2c, + 0x48, 0x2d, 0x4e, 0x62, 0x03, 0xfb, 0xdf, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x4c, 0x92, 0x13, + 0xbb, 0x81, 0x01, 0x00, 0x00, } func (this *UpdateRegistryProposal) Equal(that interface{}) bool { diff --git a/x/leverage/types/keys_test.go b/x/leverage/types/keys_test.go index 8f988e374a..719f98b094 100644 --- a/x/leverage/types/keys_test.go +++ b/x/leverage/types/keys_test.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - umeeapp "github.com/umee-network/umee/app" - "github.com/umee-network/umee/x/leverage/types" + umeeapp "github.com/umee-network/umee/v2/app" + "github.com/umee-network/umee/v2/x/leverage/types" ) func TestAddressFromKey(t *testing.T) { diff --git a/x/leverage/types/leverage.pb.go b/x/leverage/types/leverage.pb.go index 63d1e2773b..0c8e691d7e 100644 --- a/x/leverage/types/leverage.pb.go +++ b/x/leverage/types/leverage.pb.go @@ -174,51 +174,51 @@ func init() { } var fileDescriptor_f9aab5daf3352690 = []byte{ - // 701 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0x4b, 0x6f, 0x13, 0x3b, - 0x14, 0xce, 0xdc, 0x9b, 0xf6, 0x36, 0xee, 0xed, 0x6b, 0x9a, 0xb4, 0x11, 0x94, 0x4c, 0xb1, 0x00, - 0x75, 0xd3, 0x44, 0x15, 0xac, 0xb2, 0x0c, 0x15, 0xa5, 0x88, 0x97, 0x4c, 0x51, 0x25, 0x36, 0x23, - 0x67, 0x72, 0x48, 0xac, 0xd8, 0xe3, 0xe0, 0x71, 0x1e, 0xed, 0x06, 0x09, 0x04, 0x6b, 0x96, 0x6c, - 0x90, 0xfa, 0x33, 0xf8, 0x09, 0x5d, 0x76, 0x89, 0x58, 0x44, 0xa8, 0xdd, 0xb0, 0xce, 0x2f, 0x40, - 0xe3, 0x99, 0xbc, 0xaa, 0x80, 0x14, 0x95, 0xd5, 0xd8, 0xdf, 0x39, 0xfe, 0xbe, 0xcf, 0x73, 0x8e, - 0x6d, 0x74, 0xab, 0x29, 0x00, 0x0a, 0x1c, 0x5a, 0xa0, 0x68, 0x15, 0x0a, 0xad, 0x9d, 0x32, 0x68, - 0xba, 0x33, 0x00, 0xf2, 0x0d, 0x25, 0xb5, 0xb4, 0x6f, 0x86, 0x59, 0x3e, 0xe8, 0xb6, 0x54, 0xf5, - 0x7c, 0x38, 0xce, 0x0f, 0x12, 0xe2, 0x15, 0xd7, 0xd2, 0x55, 0x59, 0x95, 0x26, 0xbb, 0x10, 0x8e, - 0xa2, 0x85, 0xf8, 0x6b, 0x12, 0xcd, 0x3e, 0xa7, 0x8a, 0x8a, 0xc0, 0xfe, 0x62, 0xa1, 0x9c, 0x27, - 0x45, 0x83, 0x83, 0x06, 0x97, 0xb3, 0x37, 0x4d, 0x56, 0xa1, 0x9a, 0x49, 0xdf, 0xd5, 0x35, 0x05, - 0x41, 0x4d, 0xf2, 0x4a, 0xf6, 0x9f, 0x4d, 0x6b, 0x2b, 0x55, 0x3a, 0x3c, 0xed, 0x3a, 0x89, 0xef, - 0x5d, 0xe7, 0x4e, 0x95, 0xe9, 0x5a, 0xb3, 0x9c, 0xf7, 0xa4, 0x28, 0x78, 0x32, 0x10, 0x32, 0x88, - 0x3f, 0xdb, 0x41, 0xa5, 0x5e, 0xd0, 0x47, 0x0d, 0x08, 0xf2, 0xbb, 0xe0, 0xf5, 0xba, 0xce, 0xed, - 0x23, 0x2a, 0x78, 0x11, 0xff, 0x99, 0x1d, 0x93, 0x8d, 0x7e, 0xc2, 0xe3, 0x61, 0xfc, 0xa0, 0x1f, - 0xb6, 0xdf, 0xa2, 0xb4, 0x60, 0x3e, 0x13, 0x4d, 0xe1, 0x7a, 0x5c, 0x06, 0xe0, 0xbe, 0xa6, 0x9e, - 0x96, 0x2a, 0xfb, 0xaf, 0x31, 0xf5, 0x64, 0x6a, 0x53, 0xd7, 0x23, 0x53, 0x93, 0x38, 0x31, 0xb1, - 0x63, 0xf8, 0x7e, 0x88, 0x3e, 0x30, 0x60, 0x68, 0x40, 0x2a, 0xea, 0x71, 0x70, 0x15, 0xb4, 0xa9, - 0xaa, 0xf4, 0x0d, 0x24, 0xaf, 0x66, 0x60, 0x12, 0x27, 0x26, 0x76, 0x04, 0x13, 0x83, 0xc6, 0x06, - 0x3e, 0x58, 0x68, 0x2d, 0x10, 0x94, 0xf3, 0xb1, 0x1f, 0x18, 0xb0, 0x63, 0xc8, 0xce, 0x18, 0x0f, - 0xcf, 0xa6, 0xf6, 0x70, 0x23, 0xf2, 0x30, 0x99, 0x15, 0x93, 0xb4, 0x09, 0x8c, 0x94, 0xe3, 0x05, - 0x3b, 0x86, 0x62, 0xf2, 0xf3, 0x89, 0x93, 0xc0, 0x1f, 0x53, 0x68, 0xe6, 0x40, 0xd6, 0xc1, 0xb7, - 0xef, 0x21, 0x54, 0xa6, 0x01, 0xb8, 0x15, 0xf0, 0xa5, 0xc8, 0x5a, 0xc6, 0x4a, 0xa6, 0xd7, 0x75, - 0x56, 0x22, 0xf2, 0x61, 0x0c, 0x93, 0x54, 0x38, 0xd9, 0x0d, 0xc7, 0xb6, 0x8f, 0x16, 0x15, 0x04, - 0xa0, 0x5a, 0x83, 0x4a, 0x46, 0xed, 0xb5, 0x37, 0xf5, 0x26, 0x32, 0x91, 0xce, 0x38, 0x1b, 0x26, - 0x0b, 0x31, 0x10, 0xff, 0xbd, 0x36, 0x5a, 0xf1, 0x24, 0xe7, 0x54, 0x83, 0xa2, 0xdc, 0x6d, 0x03, - 0xab, 0xd6, 0x74, 0xdc, 0x3c, 0x8f, 0xa6, 0x96, 0xcc, 0xf6, 0x3b, 0xfa, 0x12, 0x21, 0x26, 0xcb, - 0x43, 0xec, 0xd0, 0x40, 0xf6, 0x7b, 0x0b, 0x65, 0x26, 0x9f, 0xa7, 0xa8, 0x73, 0x9e, 0x4e, 0xad, - 0xbe, 0x11, 0xa9, 0xff, 0xe6, 0x18, 0xa5, 0xf9, 0xa4, 0xe3, 0x13, 0xa0, 0x65, 0x53, 0x88, 0xb2, - 0x54, 0x4a, 0xb6, 0x5d, 0x45, 0x75, 0xbf, 0x6b, 0xf6, 0xa7, 0xd6, 0x5f, 0x1f, 0x29, 0xec, 0x08, - 0x1f, 0x26, 0x8b, 0x21, 0x54, 0x32, 0x08, 0xa1, 0x1a, 0x42, 0xd1, 0x3a, 0xf3, 0xeb, 0x63, 0xa2, - 0xb3, 0x57, 0x13, 0xbd, 0xcc, 0x87, 0xc9, 0x62, 0x08, 0x8d, 0x88, 0x36, 0xd0, 0x92, 0xa0, 0x9d, - 0x31, 0xcd, 0xff, 0x8c, 0xe6, 0xc3, 0xa9, 0x35, 0xd7, 0xe2, 0x3b, 0x62, 0x9c, 0x0e, 0x93, 0x05, - 0x41, 0x3b, 0x23, 0x8a, 0xef, 0x2c, 0x94, 0x31, 0xbe, 0x9a, 0x9a, 0x71, 0x76, 0x1c, 0x55, 0xc4, - 0x08, 0xcf, 0x5d, 0xad, 0xc2, 0x13, 0x49, 0x31, 0x59, 0x0d, 0xf1, 0x97, 0x43, 0xd8, 0x98, 0xb8, - 0xdc, 0x66, 0xcc, 0xf7, 0xc0, 0xd7, 0xac, 0x05, 0xd9, 0xd4, 0xdf, 0x6b, 0xb3, 0x01, 0xe9, 0x78, - 0x9b, 0xed, 0xf7, 0x61, 0xbb, 0x88, 0xfe, 0x0f, 0x8e, 0x44, 0x59, 0xf2, 0xf8, 0x36, 0x40, 0x46, - 0x7b, 0xbd, 0xd7, 0x75, 0x56, 0xe3, 0xab, 0x66, 0x24, 0x8a, 0xc9, 0x7c, 0x34, 0x8d, 0x6e, 0x84, - 0x02, 0x9a, 0x83, 0x4e, 0x43, 0xfa, 0xe0, 0xeb, 0xec, 0xfc, 0xa6, 0xb5, 0xb5, 0x50, 0x5a, 0xed, - 0x75, 0x9d, 0xa5, 0x68, 0x5d, 0x3f, 0x82, 0xc9, 0x20, 0xa9, 0x98, 0xfc, 0x79, 0xe2, 0x58, 0xa5, - 0xbd, 0xd3, 0xf3, 0x9c, 0x75, 0x76, 0x9e, 0xb3, 0x7e, 0x9c, 0xe7, 0xac, 0x4f, 0x17, 0xb9, 0xc4, - 0xd9, 0x45, 0x2e, 0xf1, 0xed, 0x22, 0x97, 0x78, 0xb5, 0x3d, 0xb2, 0xd5, 0xf0, 0x55, 0xdc, 0x8e, - 0x9f, 0x48, 0x33, 0x29, 0x74, 0x86, 0xcf, 0xaa, 0xd9, 0x75, 0x79, 0xd6, 0xbc, 0x89, 0x77, 0x7f, - 0x05, 0x00, 0x00, 0xff, 0xff, 0xb8, 0x78, 0x89, 0x19, 0x74, 0x07, 0x00, 0x00, + // 702 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0xcb, 0x6e, 0x13, 0x31, + 0x14, 0xcd, 0x40, 0x5a, 0x1a, 0x97, 0xbe, 0xa6, 0x49, 0x1b, 0x41, 0xc9, 0x14, 0x0b, 0x50, 0x37, + 0xcd, 0x50, 0x60, 0x95, 0x65, 0xa8, 0x80, 0x56, 0xbc, 0x64, 0x8a, 0x2a, 0xb1, 0x19, 0x39, 0x93, + 0x4b, 0x32, 0x8a, 0x3d, 0x0e, 0x1e, 0xe7, 0xd1, 0x6e, 0x90, 0x40, 0xb0, 0x66, 0xc9, 0x06, 0xa9, + 0x9f, 0xc1, 0x27, 0x74, 0xd9, 0x25, 0x62, 0x11, 0xa1, 0x76, 0xc3, 0x3a, 0x5f, 0x80, 0xc6, 0x33, + 0x79, 0x55, 0x01, 0x29, 0x2a, 0xab, 0xb1, 0xcf, 0xbd, 0x3e, 0xe7, 0x78, 0xee, 0xb5, 0x8d, 0x6e, + 0x35, 0x38, 0x80, 0xcd, 0xa0, 0x09, 0x92, 0x56, 0xc0, 0x6e, 0x6e, 0x95, 0x40, 0xd1, 0xad, 0x3e, + 0x90, 0xaf, 0x4b, 0xa1, 0x84, 0x79, 0x33, 0xcc, 0xf2, 0x41, 0xb5, 0x84, 0xac, 0xe5, 0xc3, 0x71, + 0xbe, 0x9f, 0x10, 0xaf, 0xb8, 0x96, 0xae, 0x88, 0x8a, 0xd0, 0xd9, 0x76, 0x38, 0x8a, 0x16, 0xe2, + 0xef, 0x49, 0x34, 0xfd, 0x92, 0x4a, 0xca, 0x03, 0xf3, 0x9b, 0x81, 0x72, 0xae, 0xe0, 0x75, 0x06, + 0x0a, 0x1c, 0xe6, 0xbd, 0x6b, 0x78, 0x65, 0xaa, 0x3c, 0xe1, 0x3b, 0xaa, 0x2a, 0x21, 0xa8, 0x0a, + 0x56, 0xce, 0x5e, 0x5a, 0x37, 0x36, 0x52, 0xc5, 0xfd, 0xe3, 0x8e, 0x95, 0xf8, 0xd9, 0xb1, 0xee, + 0x54, 0x3c, 0x55, 0x6d, 0x94, 0xf2, 0xae, 0xe0, 0xb6, 0x2b, 0x02, 0x2e, 0x82, 0xf8, 0xb3, 0x19, + 0x94, 0x6b, 0xb6, 0x3a, 0xa8, 0x43, 0x90, 0xdf, 0x06, 0xb7, 0xdb, 0xb1, 0x6e, 0x1f, 0x50, 0xce, + 0x0a, 0xf8, 0xdf, 0xec, 0x98, 0xac, 0xf5, 0x12, 0x9e, 0x0e, 0xe2, 0x7b, 0xbd, 0xb0, 0xf9, 0x1e, + 0xa5, 0xb9, 0xe7, 0x7b, 0xbc, 0xc1, 0x1d, 0x97, 0x89, 0x00, 0x9c, 0xb7, 0xd4, 0x55, 0x42, 0x66, + 0x2f, 0x6b, 0x53, 0xcf, 0x26, 0x36, 0x75, 0x3d, 0x32, 0x35, 0x8e, 0x13, 0x13, 0x33, 0x86, 0x1f, + 0x86, 0xe8, 0x23, 0x0d, 0x86, 0x06, 0x84, 0xa4, 0x2e, 0x03, 0x47, 0x42, 0x8b, 0xca, 0x72, 0xcf, + 0x40, 0xf2, 0x62, 0x06, 0xc6, 0x71, 0x62, 0x62, 0x46, 0x30, 0xd1, 0x68, 0x6c, 0xe0, 0x93, 0x81, + 0x56, 0x02, 0x4e, 0x19, 0x1b, 0xf9, 0x81, 0x81, 0x77, 0x08, 0xd9, 0x29, 0xed, 0xe1, 0xc5, 0xc4, + 0x1e, 0x6e, 0x44, 0x1e, 0xc6, 0xb3, 0x62, 0x92, 0xd6, 0x81, 0xa1, 0x72, 0xbc, 0xf2, 0x0e, 0xa1, + 0x90, 0xfc, 0x7a, 0x64, 0x25, 0xf0, 0xe7, 0x14, 0x9a, 0xda, 0x13, 0x35, 0xf0, 0xcd, 0x07, 0x08, + 0x95, 0x68, 0x00, 0x4e, 0x19, 0x7c, 0xc1, 0xb3, 0x86, 0xb6, 0x92, 0xe9, 0x76, 0xac, 0xa5, 0x88, + 0x7c, 0x10, 0xc3, 0x24, 0x15, 0x4e, 0xb6, 0xc3, 0xb1, 0xe9, 0xa3, 0x79, 0x09, 0x01, 0xc8, 0x66, + 0xbf, 0x92, 0x51, 0x7b, 0x3d, 0x9e, 0x78, 0x13, 0x99, 0x48, 0x67, 0x94, 0x0d, 0x93, 0xb9, 0x18, + 0x88, 0xff, 0x5e, 0x0b, 0x2d, 0xb9, 0x82, 0x31, 0xaa, 0x40, 0x52, 0xe6, 0xb4, 0xc0, 0xab, 0x54, + 0x55, 0xdc, 0x3c, 0xbb, 0x13, 0x4b, 0x66, 0x7b, 0x1d, 0x7d, 0x8e, 0x10, 0x93, 0xc5, 0x01, 0xb6, + 0xaf, 0x21, 0xf3, 0xa3, 0x81, 0x32, 0xe3, 0xcf, 0x53, 0xd4, 0x39, 0xcf, 0x27, 0x56, 0x5f, 0x8b, + 0xd4, 0xff, 0x72, 0x8c, 0xd2, 0x6c, 0xdc, 0xf1, 0x09, 0xd0, 0xa2, 0x2e, 0x44, 0x49, 0x48, 0x29, + 0x5a, 0x8e, 0xa4, 0xaa, 0xd7, 0x35, 0x3b, 0x13, 0xeb, 0xaf, 0x0e, 0x15, 0x76, 0x88, 0x0f, 0x93, + 0xf9, 0x10, 0x2a, 0x6a, 0x84, 0x50, 0x05, 0xa1, 0x68, 0xcd, 0xf3, 0x6b, 0x23, 0xa2, 0xd3, 0x17, + 0x13, 0x3d, 0xcf, 0x87, 0xc9, 0x7c, 0x08, 0x0d, 0x89, 0xd6, 0xd1, 0x02, 0xa7, 0xed, 0x11, 0xcd, + 0x2b, 0x5a, 0xf3, 0xc9, 0xc4, 0x9a, 0x2b, 0xf1, 0x1d, 0x31, 0x4a, 0x87, 0xc9, 0x1c, 0xa7, 0xed, + 0x21, 0xc5, 0x0f, 0x06, 0xca, 0x68, 0x5f, 0x0d, 0xe5, 0x31, 0xef, 0x30, 0xaa, 0x88, 0x16, 0x9e, + 0xb9, 0x58, 0x85, 0xc7, 0x92, 0x62, 0xb2, 0x1c, 0xe2, 0xaf, 0x07, 0xb0, 0x36, 0x71, 0xbe, 0xcd, + 0x3c, 0xdf, 0x05, 0x5f, 0x79, 0x4d, 0xc8, 0xa6, 0xfe, 0x5f, 0x9b, 0xf5, 0x49, 0x47, 0xdb, 0x6c, + 0xa7, 0x07, 0x9b, 0x05, 0x74, 0x35, 0x38, 0xe0, 0x25, 0xc1, 0xe2, 0xdb, 0x00, 0x69, 0xed, 0xd5, + 0x6e, 0xc7, 0x5a, 0x8e, 0xaf, 0x9a, 0xa1, 0x28, 0x26, 0xb3, 0xd1, 0x34, 0xba, 0x11, 0x6c, 0x34, + 0x03, 0xed, 0xba, 0xf0, 0xc1, 0x57, 0xd9, 0xd9, 0x75, 0x63, 0x63, 0xae, 0xb8, 0xdc, 0xed, 0x58, + 0x0b, 0xd1, 0xba, 0x5e, 0x04, 0x93, 0x7e, 0x52, 0x21, 0xf9, 0xfb, 0xc8, 0x32, 0x8a, 0xbb, 0xc7, + 0xa7, 0x39, 0xe3, 0xe4, 0x34, 0x67, 0xfc, 0x3a, 0xcd, 0x19, 0x5f, 0xce, 0x72, 0x89, 0x93, 0xb3, + 0x5c, 0xe2, 0xc7, 0x59, 0x2e, 0xf1, 0xe6, 0xee, 0xd0, 0x56, 0xc3, 0x57, 0x71, 0x33, 0x7e, 0x22, + 0xf5, 0xc4, 0x6e, 0xde, 0xb3, 0xdb, 0x83, 0x97, 0x55, 0x6f, 0xbc, 0x34, 0xad, 0x9f, 0xc5, 0xfb, + 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x36, 0x2b, 0x70, 0x90, 0x77, 0x07, 0x00, 0x00, } func (this *Token) Equal(that interface{}) bool { diff --git a/x/leverage/types/query.pb.go b/x/leverage/types/query.pb.go index 1dd2b7dfe6..1da4d5527e 100644 --- a/x/leverage/types/query.pb.go +++ b/x/leverage/types/query.pb.go @@ -1763,100 +1763,101 @@ func init() { func init() { proto.RegisterFile("umee/leverage/v1beta1/query.proto", fileDescriptor_32bddfd5abbfa4dc) } var fileDescriptor_32bddfd5abbfa4dc = []byte{ - // 1487 bytes of a gzipped FileDescriptorProto + // 1490 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x59, 0xcf, 0x6f, 0xd4, 0xd6, 0x13, 0x8f, 0xe1, 0x4b, 0x08, 0x13, 0xf8, 0x26, 0xbc, 0xa6, 0x25, 0x18, 0xd8, 0x80, 0xf9, 0x95, - 0x00, 0xf1, 0x92, 0xa0, 0x16, 0x0a, 0xb4, 0x25, 0x81, 0x42, 0x69, 0x83, 0x80, 0xe5, 0x87, 0x0a, - 0x95, 0xba, 0xf2, 0xae, 0x5f, 0x17, 0x2b, 0x5e, 0x7b, 0x63, 0x7b, 0x03, 0x41, 0x3d, 0x54, 0x3d, - 0xf4, 0x5c, 0xa9, 0xf7, 0x5e, 0x2a, 0xf5, 0xd0, 0x4a, 0xed, 0xa1, 0x87, 0x1e, 0x7a, 0xa9, 0xd4, - 0x4a, 0x45, 0xe2, 0x50, 0xa4, 0x5e, 0xaa, 0x1e, 0x68, 0x45, 0xfa, 0x87, 0x54, 0x7e, 0x6f, 0xfc, + 0x00, 0x59, 0x27, 0x41, 0x2d, 0x14, 0x68, 0x4b, 0x02, 0xa5, 0x85, 0x06, 0x01, 0xcb, 0x0f, 0x15, + 0x2a, 0x75, 0xe5, 0x5d, 0xbf, 0x2e, 0x56, 0xbc, 0xf6, 0xc6, 0xf6, 0x06, 0x82, 0x7a, 0xa8, 0x7a, + 0xe8, 0xb9, 0x52, 0xef, 0xbd, 0x54, 0xea, 0xa1, 0x95, 0xda, 0x43, 0x0f, 0x3d, 0xf4, 0x52, 0xa9, + 0x95, 0x8a, 0xc4, 0xa1, 0x48, 0xbd, 0x54, 0x3d, 0xd0, 0x0a, 0xfa, 0x87, 0x54, 0x7e, 0x6f, 0xfc, 0x6b, 0x6d, 0xc7, 0x2f, 0x5e, 0x38, 0x65, 0xfd, 0xfc, 0x3e, 0x33, 0x9f, 0x79, 0x9e, 0x99, 0x37, - 0x33, 0x81, 0x7d, 0xdd, 0x36, 0xa5, 0x55, 0x93, 0x2e, 0x53, 0x47, 0x6b, 0xd1, 0xea, 0xf2, 0x4c, - 0x83, 0x7a, 0xda, 0x4c, 0x75, 0xa9, 0x4b, 0x9d, 0x15, 0xb5, 0xe3, 0xd8, 0x9e, 0x4d, 0xd8, 0x16, - 0x8b, 0x7a, 0xf7, 0x6d, 0x67, 0x51, 0xf5, 0x7f, 0xab, 0xc1, 0x76, 0x15, 0xb7, 0xcb, 0xbb, 0x5b, - 0xb6, 0xdd, 0x32, 0x69, 0x55, 0xeb, 0x18, 0x55, 0xcd, 0xb2, 0x6c, 0x4f, 0xf3, 0x0c, 0xdb, 0x72, - 0xb9, 0x00, 0xf9, 0x40, 0xb6, 0x8e, 0x50, 0x0a, 0xdf, 0x35, 0xd6, 0xb2, 0x5b, 0x36, 0xfb, 0x59, - 0xf5, 0x7f, 0xe1, 0x6a, 0xa5, 0x69, 0xbb, 0x6d, 0xdb, 0xad, 0x36, 0x34, 0x37, 0x42, 0x36, 0x6d, - 0xc3, 0xe2, 0xef, 0x95, 0x1d, 0xf0, 0xf2, 0x75, 0x9f, 0x6b, 0x8d, 0xb6, 0x0c, 0xd7, 0xa3, 0x0e, - 0xd5, 0x6f, 0xda, 0x8b, 0xd4, 0x72, 0x95, 0x13, 0xb0, 0x8b, 0xbd, 0x98, 0x5b, 0xd6, 0x0c, 0x53, - 0x6b, 0x98, 0x74, 0xde, 0x76, 0x1c, 0xfb, 0x7e, 0x8d, 0x2e, 0x75, 0xa9, 0xeb, 0x91, 0x31, 0xd8, - 0xa4, 0x53, 0xcb, 0x6e, 0x8f, 0x4b, 0x7b, 0xa5, 0xc9, 0x2d, 0x35, 0xfe, 0xa0, 0x7c, 0x04, 0xbb, - 0xb3, 0x41, 0x6e, 0xc7, 0xb6, 0x5c, 0x4a, 0x2e, 0xc2, 0xa0, 0xd6, 0xb6, 0xbb, 0x96, 0xc7, 0x61, - 0xf3, 0xea, 0xa3, 0xa7, 0x13, 0x03, 0x7f, 0x3d, 0x9d, 0x38, 0xd4, 0x32, 0xbc, 0x7b, 0xdd, 0x86, - 0xda, 0xb4, 0xdb, 0x55, 0x24, 0xcc, 0xff, 0x4c, 0xbb, 0xfa, 0x62, 0xd5, 0x5b, 0xe9, 0x50, 0x57, - 0xbd, 0x6c, 0x79, 0x35, 0x44, 0x2b, 0xd3, 0xc8, 0x9a, 0x8b, 0x9f, 0xbb, 0x76, 0x67, 0x6d, 0x5a, - 0x77, 0xe1, 0x95, 0xde, 0xed, 0x48, 0xe8, 0x1c, 0x6c, 0x9c, 0xbb, 0x76, 0xa7, 0x04, 0x9b, 0x0b, - 0xb4, 0x59, 0xf3, 0xa1, 0xca, 0x51, 0x78, 0x89, 0xc9, 0x5e, 0xa0, 0x96, 0x5e, 0x48, 0xe4, 0x7d, - 0x18, 0x4b, 0x6e, 0x7e, 0x6e, 0x34, 0x54, 0x34, 0xf1, 0x8a, 0xe6, 0x2c, 0x52, 0xef, 0x86, 0xf1, - 0x90, 0xae, 0xcd, 0x64, 0x09, 0x76, 0xa4, 0xf6, 0x23, 0x99, 0xdb, 0x30, 0xd2, 0x66, 0xab, 0x75, - 0xd7, 0x78, 0x48, 0xeb, 0x5d, 0x57, 0x2f, 0x49, 0x6c, 0x5b, 0x3b, 0x14, 0x7e, 0xcb, 0xd5, 0x43, - 0x8f, 0x62, 0x0e, 0x26, 0xca, 0xd3, 0x46, 0x8f, 0x4a, 0x81, 0x90, 0xec, 0x55, 0x18, 0x8e, 0x91, - 0x2d, 0xe9, 0x56, 0x10, 0x11, 0x55, 0x16, 0x61, 0x4f, 0x66, 0x40, 0x84, 0x1a, 0xdf, 0x85, 0x21, - 0x87, 0xbd, 0x73, 0x56, 0xc6, 0xa5, 0xbd, 0x1b, 0x27, 0x87, 0x67, 0x27, 0xd5, 0xc2, 0x08, 0x57, - 0x99, 0x90, 0xf9, 0xff, 0xf9, 0xc4, 0x6a, 0x21, 0x5e, 0x19, 0x03, 0xc2, 0x94, 0x5d, 0xd3, 0x1c, - 0xad, 0xed, 0xe2, 0x49, 0x28, 0x1f, 0xa2, 0x4b, 0x05, 0xab, 0xa8, 0xf8, 0x12, 0x0c, 0x76, 0xd8, - 0x0a, 0xb3, 0x72, 0x78, 0x76, 0x4a, 0x40, 0x2d, 0x17, 0x81, 0x7a, 0x11, 0xae, 0x5c, 0x44, 0x2f, - 0xe4, 0xe1, 0x40, 0xf5, 0xe0, 0x0b, 0x8c, 0xc3, 0x66, 0x4d, 0xd7, 0x1d, 0xea, 0xba, 0xf8, 0x0d, - 0x82, 0xc7, 0xe8, 0xdb, 0x6c, 0x88, 0x7f, 0x9b, 0x4f, 0xa4, 0x44, 0x18, 0xfa, 0x82, 0x90, 0x6a, - 0x0b, 0x86, 0x1a, 0xb8, 0x86, 0x67, 0xb4, 0x53, 0xe5, 0x27, 0xaf, 0xfa, 0x89, 0x28, 0xa4, 0x77, - 0xde, 0x36, 0xac, 0xf9, 0xe3, 0x3e, 0xb9, 0x6f, 0xfe, 0x9e, 0x98, 0x14, 0xf8, 0x5a, 0x3e, 0xc0, - 0xad, 0x85, 0xc2, 0x95, 0xf7, 0x60, 0x67, 0x82, 0xc1, 0x6d, 0xcd, 0xec, 0xd2, 0xb2, 0xf6, 0xb8, - 0x20, 0x67, 0x09, 0x43, 0x9b, 0x6e, 0xc1, 0xff, 0x03, 0xb5, 0xf5, 0x65, 0xff, 0x4d, 0xd9, 0xa8, - 0x68, 0xc4, 0xc5, 0x2b, 0x57, 0x30, 0x2a, 0xce, 0xdb, 0xa6, 0xa9, 0x79, 0xd4, 0xd1, 0xcc, 0xbe, - 0x6c, 0x58, 0xc1, 0x78, 0x49, 0x89, 0x43, 0x2b, 0xee, 0xc0, 0x68, 0x33, 0x7c, 0xd5, 0x97, 0x1d, - 0x23, 0xcd, 0xa4, 0x0a, 0xe5, 0x02, 0x3a, 0xf3, 0x82, 0xad, 0x59, 0xe5, 0x9d, 0xea, 0x61, 0x90, - 0x4f, 0x51, 0x0a, 0xf2, 0x6e, 0xc2, 0xa0, 0xc9, 0x56, 0x5e, 0x84, 0x3f, 0xa1, 0x68, 0xe5, 0x32, - 0x26, 0x45, 0xae, 0xbb, 0xaf, 0xef, 0xd0, 0x86, 0xf1, 0xb4, 0x28, 0xb4, 0xe5, 0x3a, 0x6c, 0xe5, - 0x0a, 0xfb, 0x3a, 0xff, 0x61, 0x33, 0x12, 0xad, 0xcc, 0x60, 0x1c, 0xd4, 0xa8, 0x4b, 0x9d, 0x65, - 0x3a, 0xc7, 0xae, 0xc9, 0xb5, 0x33, 0xab, 0x8e, 0xde, 0xde, 0x03, 0x79, 0xce, 0x37, 0xf5, 0x55, - 0x4c, 0xa7, 0x91, 0x3f, 0xde, 0xa0, 0x9e, 0x67, 0x58, 0xad, 0xb2, 0x07, 0x7b, 0x1a, 0x2a, 0x79, - 0x02, 0x91, 0xfa, 0x38, 0x6c, 0xa6, 0x96, 0x5f, 0x7c, 0xf0, 0x7b, 0x6b, 0xa8, 0x16, 0x3c, 0x2a, - 0xef, 0xe0, 0x25, 0x19, 0x61, 0xcb, 0xb2, 0xf8, 0x4c, 0x42, 0x57, 0x89, 0x8b, 0x42, 0xfd, 0x8b, - 0x00, 0x51, 0x68, 0xbc, 0x08, 0x77, 0x8d, 0x89, 0x57, 0x8e, 0xa3, 0x9f, 0xbd, 0xfd, 0xa0, 0x79, - 0x4f, 0xb3, 0x5a, 0xb4, 0xa6, 0x79, 0x05, 0x37, 0x6a, 0x07, 0x5d, 0x25, 0x89, 0x40, 0xee, 0x37, - 0x60, 0x1b, 0xc5, 0xf5, 0xba, 0xa3, 0x79, 0x65, 0x7d, 0x73, 0x2b, 0x8d, 0x09, 0x57, 0x4e, 0xe0, - 0x59, 0xf1, 0xbc, 0xba, 0x60, 0xb4, 0x0d, 0xaf, 0xf0, 0xdc, 0xc3, 0x00, 0x4a, 0x80, 0xa2, 0x00, - 0xe2, 0x49, 0xb4, 0x6e, 0xfa, 0xeb, 0x65, 0x03, 0xa8, 0x11, 0x89, 0x56, 0x4e, 0x61, 0xde, 0x5c, - 0x30, 0x96, 0xba, 0x86, 0xce, 0xca, 0x6f, 0x41, 0xa2, 0x1f, 0xa3, 0x87, 0xa7, 0x91, 0xc8, 0xf6, - 0x03, 0xd8, 0x6e, 0x46, 0xef, 0xfa, 0xa2, 0x3c, 0x6a, 0xf6, 0x28, 0x51, 0xf6, 0x62, 0x38, 0xc4, - 0xb4, 0xdf, 0xd4, 0x9c, 0x16, 0xf5, 0xc2, 0x6a, 0xe2, 0x0c, 0x4c, 0xe4, 0xee, 0x88, 0x22, 0xc6, - 0xe3, 0x4b, 0xcc, 0x5d, 0xb7, 0xd4, 0x82, 0xc7, 0xd9, 0xc7, 0xbb, 0x60, 0x13, 0x43, 0x93, 0x9f, - 0x25, 0x18, 0xed, 0xad, 0x89, 0xc8, 0x29, 0x81, 0x12, 0x24, 0xb3, 0x9a, 0x92, 0xcf, 0x95, 0x45, - 0x06, 0xa4, 0x95, 0xe3, 0x9f, 0xfe, 0xf1, 0xef, 0x17, 0x1b, 0x8e, 0x90, 0xc9, 0x6a, 0x76, 0x7b, - 0xe4, 0x84, 0xc0, 0xba, 0xc7, 0xd9, 0x7e, 0x29, 0xc1, 0x20, 0x2f, 0x88, 0xc8, 0xab, 0xa2, 0xea, - 0x13, 0x95, 0x99, 0xfc, 0xda, 0x7a, 0x61, 0xc8, 0xf5, 0x20, 0xe3, 0x3a, 0x41, 0xf6, 0xe4, 0x70, - 0xe5, 0x85, 0x19, 0xf9, 0x5a, 0x82, 0xa1, 0xa0, 0xf8, 0x20, 0x27, 0x45, 0x75, 0xf5, 0x94, 0x71, - 0xf2, 0xa9, 0xf5, 0x03, 0x91, 0xe6, 0x61, 0x46, 0x73, 0x1f, 0x99, 0xc8, 0xa1, 0x19, 0x54, 0x2e, - 0xe4, 0x27, 0x09, 0xb6, 0x25, 0xaa, 0x24, 0x72, 0x76, 0xbd, 0x4a, 0xe3, 0xb7, 0xab, 0xfc, 0x46, - 0x49, 0x34, 0xf2, 0x9e, 0x66, 0xbc, 0x0f, 0x93, 0x83, 0x05, 0xbc, 0xf9, 0x7d, 0xcb, 0xfc, 0x80, - 0xdf, 0xcb, 0xe2, 0x7e, 0x90, 0x28, 0x6a, 0xc4, 0xfd, 0x20, 0x59, 0xc5, 0x14, 0xfa, 0x01, 0xbf, - 0xd2, 0xc9, 0x0f, 0x12, 0x0c, 0xc7, 0x0a, 0x07, 0x72, 0x7a, 0x7d, 0xea, 0x12, 0x47, 0x7b, 0xa6, - 0x14, 0x16, 0xf9, 0x1e, 0x65, 0x7c, 0x0f, 0x92, 0xfd, 0x6b, 0xf2, 0xc5, 0x63, 0xfd, 0x45, 0x82, - 0x91, 0x9e, 0xc6, 0x9f, 0xbc, 0x29, 0xaa, 0x3d, 0x7b, 0xcc, 0x20, 0xbf, 0x55, 0x1a, 0x8f, 0x16, - 0x54, 0x99, 0x05, 0x53, 0xe4, 0x70, 0x8e, 0x05, 0x5a, 0x80, 0xab, 0x73, 0x27, 0x21, 0xdf, 0x4a, - 0xb0, 0x25, 0x9c, 0x13, 0x90, 0x75, 0xc6, 0x52, 0x34, 0x00, 0x90, 0x5f, 0x2f, 0x81, 0x44, 0xce, - 0x53, 0x8c, 0xf3, 0x7e, 0xb2, 0x6f, 0x4d, 0x77, 0xae, 0x6b, 0x9d, 0x15, 0xf2, 0x95, 0x04, 0x9b, - 0x71, 0x98, 0x40, 0xc4, 0x9d, 0x32, 0x31, 0xaa, 0x90, 0x4f, 0xae, 0x1b, 0x27, 0x98, 0x2e, 0x4c, - 0x6a, 0xe9, 0x8c, 0xe5, 0xf7, 0x12, 0x40, 0xd4, 0xbb, 0x13, 0xe1, 0xa3, 0x49, 0x0d, 0x09, 0xe4, - 0xd3, 0x65, 0xa0, 0x48, 0xf7, 0x08, 0xa3, 0x7b, 0x80, 0x28, 0x39, 0x74, 0x63, 0x73, 0x04, 0xf2, - 0xab, 0x04, 0x23, 0x3d, 0x23, 0x07, 0x71, 0x5f, 0xce, 0x1e, 0x70, 0x88, 0xfb, 0x72, 0xce, 0xac, - 0xa3, 0xf0, 0xc6, 0x63, 0xd7, 0x5c, 0x3d, 0x6e, 0x86, 0x9f, 0xa7, 0x13, 0xf5, 0xbd, 0x78, 0x9e, - 0xce, 0xea, 0x24, 0xc4, 0xf3, 0x74, 0x66, 0x53, 0x51, 0x98, 0xa7, 0x1d, 0x8e, 0xaa, 0xf3, 0xde, - 0x81, 0x3c, 0x96, 0x60, 0x7b, 0xaa, 0xcc, 0x27, 0xc2, 0x95, 0x43, 0x5e, 0xcb, 0x21, 0xcf, 0xf5, - 0x21, 0x01, 0x2d, 0x99, 0x61, 0x96, 0x1c, 0x25, 0x53, 0x39, 0x96, 0xc4, 0x7a, 0x6c, 0x17, 0x79, - 0x7f, 0x27, 0x01, 0x44, 0x02, 0xc5, 0x83, 0x20, 0xd5, 0xac, 0x88, 0x07, 0x41, 0xba, 0x39, 0x29, - 0xcc, 0x2d, 0x11, 0x71, 0x96, 0xcf, 0x7b, 0xc6, 0x08, 0xe2, 0x31, 0x90, 0x3d, 0xce, 0x10, 0x8f, - 0x81, 0x9c, 0xf9, 0x45, 0x61, 0x3e, 0xef, 0x1d, 0x6e, 0x90, 0x1f, 0x25, 0xd8, 0x1a, 0x6f, 0x75, - 0x88, 0xf0, 0x85, 0x98, 0xd1, 0x52, 0xc9, 0x67, 0xcb, 0x81, 0x91, 0xfc, 0x31, 0x46, 0xfe, 0x10, - 0x39, 0x90, 0x43, 0x3e, 0xd1, 0x7a, 0xb1, 0x2a, 0x20, 0xd6, 0xfd, 0x88, 0x57, 0x01, 0xe9, 0x3e, - 0x4b, 0xbc, 0x0a, 0xc8, 0x68, 0xb7, 0x0a, 0xab, 0x80, 0x78, 0x2f, 0x46, 0x7e, 0x93, 0x60, 0xb4, - 0xb7, 0x15, 0x22, 0xc2, 0x9f, 0x3d, 0xa7, 0xfd, 0x12, 0x6f, 0x17, 0xf2, 0xba, 0xb0, 0xc2, 0xe4, - 0x99, 0x6a, 0xd1, 0xc8, 0xef, 0x12, 0x90, 0x74, 0xd3, 0x44, 0xe6, 0x4a, 0x50, 0x49, 0xb6, 0x64, - 0xf2, 0x7c, 0x3f, 0x22, 0xd0, 0x9e, 0x59, 0x66, 0xcf, 0x31, 0x72, 0x44, 0xc0, 0x1e, 0xec, 0xe6, - 0xe6, 0x2f, 0x3d, 0x7a, 0x56, 0x91, 0x9e, 0x3c, 0xab, 0x48, 0xff, 0x3c, 0xab, 0x48, 0x9f, 0xaf, - 0x56, 0x06, 0x9e, 0xac, 0x56, 0x06, 0xfe, 0x5c, 0xad, 0x0c, 0xdc, 0x9d, 0x8e, 0x35, 0xa0, 0xbe, - 0xbc, 0x69, 0x24, 0xc7, 0x85, 0x3f, 0x88, 0xc4, 0xb3, 0x5e, 0xb4, 0x31, 0xc8, 0xfe, 0x79, 0x74, - 0xe2, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9d, 0x42, 0xf3, 0xf6, 0xfe, 0x1a, 0x00, 0x00, + 0x33, 0x81, 0x7d, 0xdd, 0x36, 0xa5, 0xaa, 0x49, 0x57, 0xa8, 0xa3, 0xb5, 0xa8, 0xba, 0x32, 0xdb, + 0xa0, 0x9e, 0x36, 0xab, 0x2e, 0x77, 0xa9, 0xb3, 0x5a, 0xed, 0x38, 0xb6, 0x67, 0x13, 0xb6, 0xc5, + 0xa2, 0xde, 0x3d, 0xdb, 0x59, 0xaa, 0xfa, 0xbf, 0xab, 0xc1, 0xf6, 0x2a, 0x6e, 0x97, 0x77, 0xb7, + 0x6c, 0xbb, 0x65, 0x52, 0x55, 0xeb, 0x18, 0xaa, 0x66, 0x59, 0xb6, 0xa7, 0x79, 0x86, 0x6d, 0xb9, + 0x5c, 0x80, 0x7c, 0x20, 0x5b, 0x47, 0x28, 0x85, 0xef, 0x1a, 0x6b, 0xd9, 0x2d, 0x9b, 0xfd, 0x54, + 0xfd, 0x5f, 0xb8, 0x5a, 0x69, 0xda, 0x6e, 0xdb, 0x76, 0xd5, 0x86, 0xe6, 0x46, 0xc8, 0xa6, 0x6d, + 0x58, 0xfc, 0xbd, 0xb2, 0x03, 0x5e, 0xbe, 0xe6, 0x73, 0xad, 0xd1, 0x96, 0xe1, 0x7a, 0xd4, 0xa1, + 0xfa, 0x0d, 0x7b, 0x89, 0x5a, 0xae, 0x72, 0x1c, 0x76, 0xb1, 0x17, 0xf3, 0x2b, 0x9a, 0x61, 0x6a, + 0x0d, 0x93, 0x2e, 0xd8, 0x8e, 0x63, 0xdf, 0xab, 0xd1, 0xe5, 0x2e, 0x75, 0x3d, 0x32, 0x06, 0x9b, + 0x74, 0x6a, 0xd9, 0xed, 0x71, 0x69, 0xaf, 0x34, 0xb9, 0xa5, 0xc6, 0x1f, 0x94, 0x8f, 0x60, 0x77, + 0x36, 0xc8, 0xed, 0xd8, 0x96, 0x4b, 0xc9, 0x05, 0x18, 0xd4, 0xda, 0x76, 0xd7, 0xf2, 0x38, 0x6c, + 0xa1, 0xfa, 0xf0, 0xc9, 0xc4, 0xc0, 0x5f, 0x4f, 0x26, 0x0e, 0xb5, 0x0c, 0xef, 0x6e, 0xb7, 0x51, + 0x6d, 0xda, 0x6d, 0x15, 0x09, 0xf3, 0x3f, 0xd3, 0xae, 0xbe, 0xa4, 0x7a, 0xab, 0x1d, 0xea, 0x56, + 0x2f, 0x5a, 0x5e, 0x0d, 0xd1, 0xca, 0x34, 0xb2, 0xe6, 0xe2, 0xe7, 0xaf, 0xde, 0x5e, 0x9b, 0xd6, + 0x1d, 0x78, 0xa5, 0x77, 0x3b, 0x12, 0x3a, 0x0b, 0x1b, 0xe7, 0xaf, 0xde, 0x2e, 0xc1, 0xe6, 0x3c, + 0x6d, 0xd6, 0x7c, 0xa8, 0x72, 0x14, 0x5e, 0x62, 0xb2, 0x17, 0xa9, 0xa5, 0x17, 0x12, 0x79, 0x1f, + 0xc6, 0x92, 0x9b, 0x9f, 0x1b, 0x8d, 0x2a, 0x9a, 0x78, 0x59, 0x73, 0x96, 0xa8, 0x77, 0xdd, 0x78, + 0x40, 0xd7, 0x66, 0xb2, 0x0c, 0x3b, 0x52, 0xfb, 0x91, 0xcc, 0x2d, 0x18, 0x69, 0xb3, 0xd5, 0xba, + 0x6b, 0x3c, 0xa0, 0xf5, 0xae, 0xab, 0x97, 0x24, 0xb6, 0xad, 0x1d, 0x0a, 0xbf, 0xe9, 0xea, 0xa1, + 0x47, 0x31, 0x07, 0x13, 0xe5, 0x69, 0xa3, 0x47, 0xa5, 0x40, 0x48, 0xf6, 0x0a, 0x0c, 0xc7, 0xc8, + 0x96, 0x74, 0x2b, 0x88, 0x88, 0x2a, 0x4b, 0xb0, 0x27, 0x33, 0x20, 0x42, 0x8d, 0x97, 0x60, 0xc8, + 0x61, 0xef, 0x9c, 0xd5, 0x71, 0x69, 0xef, 0xc6, 0xc9, 0xe1, 0xb9, 0xc9, 0x6a, 0x61, 0x84, 0x57, + 0x99, 0x90, 0x85, 0xff, 0xf9, 0xc4, 0x6a, 0x21, 0x5e, 0x19, 0x03, 0xc2, 0x94, 0x5d, 0xd5, 0x1c, + 0xad, 0xed, 0xe2, 0x49, 0x28, 0x1f, 0xa2, 0x4b, 0x05, 0xab, 0xa8, 0xf8, 0x1d, 0x18, 0xec, 0xb0, + 0x15, 0x66, 0xe5, 0xf0, 0xdc, 0x94, 0x80, 0x5a, 0x2e, 0x02, 0xf5, 0x22, 0x5c, 0xb9, 0x80, 0x5e, + 0xc8, 0xc3, 0x81, 0xea, 0xc1, 0x17, 0x18, 0x87, 0xcd, 0x9a, 0xae, 0x3b, 0xd4, 0x75, 0xf1, 0x1b, + 0x04, 0x8f, 0xd1, 0xb7, 0xd9, 0x10, 0xff, 0x36, 0x9f, 0x48, 0x89, 0x30, 0xf4, 0x05, 0x21, 0xd5, + 0x16, 0x0c, 0x35, 0x70, 0x0d, 0xcf, 0x68, 0x67, 0x95, 0x9f, 0x7c, 0xd5, 0x4f, 0x44, 0x21, 0xbd, + 0x73, 0xb6, 0x61, 0x2d, 0xcc, 0xf8, 0xe4, 0xbe, 0xf9, 0x7b, 0x62, 0x52, 0xe0, 0x6b, 0xf9, 0x00, + 0xb7, 0x16, 0x0a, 0x57, 0xde, 0x83, 0x9d, 0x09, 0x06, 0xb7, 0x34, 0xb3, 0x4b, 0xcb, 0xda, 0xe3, + 0x82, 0x9c, 0x25, 0x0c, 0x6d, 0xba, 0x09, 0xff, 0x0f, 0xd4, 0xd6, 0x57, 0xfc, 0x37, 0x65, 0xa3, + 0xa2, 0x11, 0x17, 0xaf, 0x5c, 0xc6, 0xa8, 0x38, 0x67, 0x9b, 0xa6, 0xe6, 0x51, 0x47, 0x33, 0xfb, + 0xb2, 0x61, 0x15, 0xe3, 0x25, 0x25, 0x0e, 0xad, 0xb8, 0x0d, 0xa3, 0xcd, 0xf0, 0x55, 0x5f, 0x76, + 0x8c, 0x34, 0x93, 0x2a, 0x94, 0xf3, 0xe8, 0xcc, 0x8b, 0xb6, 0x66, 0x95, 0x77, 0xaa, 0x07, 0x41, + 0x3e, 0x45, 0x29, 0xc8, 0xbb, 0x09, 0x83, 0x26, 0x5b, 0x79, 0x11, 0xfe, 0x84, 0xa2, 0x95, 0x8b, + 0x98, 0x14, 0xb9, 0xee, 0xbe, 0xbe, 0x43, 0x1b, 0xc6, 0xd3, 0xa2, 0xd0, 0x96, 0x6b, 0xb0, 0x95, + 0x2b, 0xec, 0xeb, 0xfc, 0x87, 0xcd, 0x48, 0xb4, 0x32, 0x8b, 0x71, 0x50, 0xa3, 0x2e, 0x75, 0x56, + 0xe8, 0x3c, 0xbb, 0x26, 0xd7, 0xce, 0xac, 0x3a, 0x7a, 0x7b, 0x0f, 0xe4, 0x39, 0xdf, 0xd4, 0x57, + 0x30, 0x9d, 0x46, 0xfe, 0x78, 0x9d, 0x7a, 0x9e, 0x61, 0xb5, 0xca, 0x1e, 0xec, 0x29, 0xa8, 0xe4, + 0x09, 0x44, 0xea, 0xe3, 0xb0, 0x99, 0x5a, 0x7e, 0xf1, 0xc1, 0xef, 0xad, 0xa1, 0x5a, 0xf0, 0xa8, + 0xbc, 0x8b, 0x97, 0x64, 0x84, 0x2d, 0xcb, 0xe2, 0x33, 0x09, 0x5d, 0x25, 0x2e, 0x0a, 0xf5, 0x2f, + 0x01, 0x44, 0xa1, 0xf1, 0x22, 0xdc, 0x35, 0x26, 0x5e, 0x99, 0x41, 0x3f, 0x7b, 0xfb, 0x7e, 0xf3, + 0xae, 0x66, 0xb5, 0x68, 0x4d, 0xf3, 0x0a, 0x6e, 0xd4, 0x0e, 0xba, 0x4a, 0x12, 0x81, 0xdc, 0xaf, + 0xc3, 0x36, 0x8a, 0xeb, 0x75, 0x47, 0xf3, 0xca, 0xfa, 0xe6, 0x56, 0x1a, 0x13, 0xae, 0x1c, 0xc7, + 0xb3, 0xe2, 0x79, 0x75, 0xd1, 0x68, 0x1b, 0x5e, 0xe1, 0xb9, 0x87, 0x01, 0x94, 0x00, 0x45, 0x01, + 0xc4, 0x93, 0x68, 0xdd, 0xf4, 0xd7, 0xcb, 0x06, 0x50, 0x23, 0x12, 0xad, 0x9c, 0xc4, 0xbc, 0xb9, + 0x68, 0x2c, 0x77, 0x0d, 0x9d, 0x95, 0xdf, 0x82, 0x44, 0x3f, 0x46, 0x0f, 0x4f, 0x23, 0x91, 0xed, + 0x07, 0xb0, 0xdd, 0x8c, 0xde, 0xf5, 0x45, 0x79, 0xd4, 0xec, 0x51, 0xa2, 0xec, 0xc5, 0x70, 0x88, + 0x69, 0xbf, 0xa1, 0x39, 0x2d, 0xea, 0x85, 0xd5, 0xc4, 0x69, 0x98, 0xc8, 0xdd, 0x11, 0x45, 0x8c, + 0xc7, 0x97, 0x98, 0xbb, 0x6e, 0xa9, 0x05, 0x8f, 0x73, 0x8f, 0x76, 0xc1, 0x26, 0x86, 0x26, 0x3f, + 0x4b, 0x30, 0xda, 0x5b, 0x13, 0x91, 0x93, 0x02, 0x25, 0x48, 0x66, 0x35, 0x25, 0x9f, 0x2d, 0x8b, + 0x0c, 0x48, 0x2b, 0x33, 0x9f, 0xfe, 0xf1, 0xef, 0x17, 0x1b, 0x8e, 0x90, 0x49, 0x35, 0xbb, 0x3d, + 0x72, 0x42, 0x60, 0xdd, 0xe3, 0x6c, 0xbf, 0x94, 0x60, 0x90, 0x17, 0x44, 0xe4, 0x55, 0x51, 0xf5, + 0x89, 0xca, 0x4c, 0x7e, 0x6d, 0xbd, 0x30, 0xe4, 0x7a, 0x90, 0x71, 0x9d, 0x20, 0x7b, 0x72, 0xb8, + 0xf2, 0xc2, 0x8c, 0x7c, 0x2d, 0xc1, 0x50, 0x50, 0x7c, 0x90, 0x13, 0xa2, 0xba, 0x7a, 0xca, 0x38, + 0xf9, 0xe4, 0xfa, 0x81, 0x48, 0xf3, 0x30, 0xa3, 0xb9, 0x8f, 0x4c, 0xe4, 0xd0, 0x0c, 0x2a, 0x17, + 0xf2, 0x93, 0x04, 0xdb, 0x12, 0x55, 0x12, 0x39, 0xb3, 0x5e, 0xa5, 0xf1, 0xdb, 0x55, 0x7e, 0xa3, + 0x24, 0x1a, 0x79, 0x4f, 0x33, 0xde, 0x87, 0xc9, 0xc1, 0x02, 0xde, 0xfc, 0xbe, 0x65, 0x7e, 0xc0, + 0xef, 0x65, 0x71, 0x3f, 0x48, 0x14, 0x35, 0xe2, 0x7e, 0x90, 0xac, 0x62, 0x0a, 0xfd, 0x80, 0x5f, + 0xe9, 0xe4, 0x07, 0x09, 0x86, 0x63, 0x85, 0x03, 0x39, 0xb5, 0x3e, 0x75, 0x89, 0xa3, 0x3d, 0x5d, + 0x0a, 0x8b, 0x7c, 0x8f, 0x32, 0xbe, 0x07, 0xc9, 0xfe, 0x35, 0xf9, 0xe2, 0xb1, 0xfe, 0x22, 0xc1, + 0x48, 0x4f, 0xe3, 0x4f, 0xde, 0x14, 0xd5, 0x9e, 0x3d, 0x66, 0x90, 0xdf, 0x2a, 0x8d, 0x47, 0x0b, + 0x54, 0x66, 0xc1, 0x14, 0x39, 0x9c, 0x63, 0x81, 0x16, 0xe0, 0xea, 0xdc, 0x49, 0xc8, 0xb7, 0x12, + 0x6c, 0x09, 0xe7, 0x04, 0x64, 0x9d, 0xb1, 0x14, 0x0d, 0x00, 0xe4, 0xd7, 0x4b, 0x20, 0x91, 0xf3, + 0x14, 0xe3, 0xbc, 0x9f, 0xec, 0x5b, 0xd3, 0x9d, 0xeb, 0x5a, 0x67, 0x95, 0x7c, 0x25, 0xc1, 0x66, + 0x1c, 0x26, 0x10, 0x71, 0xa7, 0x4c, 0x8c, 0x2a, 0xe4, 0x13, 0xeb, 0xc6, 0x09, 0xa6, 0x0b, 0x93, + 0x5a, 0x3a, 0x63, 0xf9, 0xbd, 0x04, 0x10, 0xf5, 0xee, 0x44, 0xf8, 0x68, 0x52, 0x43, 0x02, 0xf9, + 0x54, 0x19, 0x28, 0xd2, 0x3d, 0xc2, 0xe8, 0x1e, 0x20, 0x4a, 0x0e, 0xdd, 0xd8, 0x1c, 0x81, 0xfc, + 0x2a, 0xc1, 0x48, 0xcf, 0xc8, 0x41, 0xdc, 0x97, 0xb3, 0x07, 0x1c, 0xe2, 0xbe, 0x9c, 0x33, 0xeb, + 0x28, 0xbc, 0xf1, 0xd8, 0x35, 0x57, 0x8f, 0x9b, 0xe1, 0xe7, 0xe9, 0x44, 0x7d, 0x2f, 0x9e, 0xa7, + 0xb3, 0x3a, 0x09, 0xf1, 0x3c, 0x9d, 0xd9, 0x54, 0x14, 0xe6, 0x69, 0x87, 0xa3, 0xea, 0xbc, 0x77, + 0x20, 0x8f, 0x24, 0xd8, 0x9e, 0x2a, 0xf3, 0x89, 0x70, 0xe5, 0x90, 0xd7, 0x72, 0xc8, 0xf3, 0x7d, + 0x48, 0x40, 0x4b, 0x66, 0x99, 0x25, 0x47, 0xc9, 0x54, 0x8e, 0x25, 0xb1, 0x1e, 0xdb, 0x45, 0xde, + 0xdf, 0x49, 0x00, 0x91, 0x40, 0xf1, 0x20, 0x48, 0x35, 0x2b, 0xe2, 0x41, 0x90, 0x6e, 0x4e, 0x0a, + 0x73, 0x4b, 0x44, 0x9c, 0xe5, 0xf3, 0x9e, 0x31, 0x82, 0x78, 0x0c, 0x64, 0x8f, 0x33, 0xc4, 0x63, + 0x20, 0x67, 0x7e, 0x51, 0x98, 0xcf, 0x7b, 0x87, 0x1b, 0xe4, 0x47, 0x09, 0xb6, 0xc6, 0x5b, 0x1d, + 0x22, 0x7c, 0x21, 0x66, 0xb4, 0x54, 0xf2, 0x99, 0x72, 0x60, 0x24, 0x7f, 0x8c, 0x91, 0x3f, 0x44, + 0x0e, 0xe4, 0x90, 0x4f, 0xb4, 0x5e, 0xac, 0x0a, 0x88, 0x75, 0x3f, 0xe2, 0x55, 0x40, 0xba, 0xcf, + 0x12, 0xaf, 0x02, 0x32, 0xda, 0xad, 0xc2, 0x2a, 0x20, 0xde, 0x8b, 0x91, 0xdf, 0x24, 0x18, 0xed, + 0x6d, 0x85, 0x88, 0xf0, 0x67, 0xcf, 0x69, 0xbf, 0xc4, 0xdb, 0x85, 0xbc, 0x2e, 0xac, 0x30, 0x79, + 0xa6, 0x5a, 0x34, 0xf2, 0xbb, 0x04, 0x24, 0xdd, 0x34, 0x91, 0xf9, 0x12, 0x54, 0x92, 0x2d, 0x99, + 0xbc, 0xd0, 0x8f, 0x08, 0xb4, 0x67, 0x8e, 0xd9, 0x73, 0x8c, 0x1c, 0x11, 0xb0, 0x07, 0xbb, 0xb9, + 0x85, 0x4b, 0x0f, 0x9f, 0x56, 0xa4, 0xc7, 0x4f, 0x2b, 0xd2, 0x3f, 0x4f, 0x2b, 0xd2, 0xe7, 0xcf, + 0x2a, 0x03, 0x8f, 0x9f, 0x55, 0x06, 0xfe, 0x7c, 0x56, 0x19, 0xb8, 0x33, 0x13, 0x6b, 0x40, 0x7d, + 0x79, 0xd3, 0x48, 0x8e, 0x0b, 0x5f, 0x99, 0x53, 0xef, 0x47, 0x1a, 0x58, 0x3b, 0xda, 0x18, 0x64, + 0xff, 0x3f, 0x3a, 0xfe, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x89, 0xe9, 0x8f, 0x3b, 0x01, 0x1b, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/leverage/types/token_test.go b/x/leverage/types/token_test.go index daae13424d..9ad8b39de2 100644 --- a/x/leverage/types/token_test.go +++ b/x/leverage/types/token_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) func TestUTokenFromTokenDenom(t *testing.T) { diff --git a/x/leverage/types/tx.pb.go b/x/leverage/types/tx.pb.go index c9178faeac..0312595720 100644 --- a/x/leverage/types/tx.pb.go +++ b/x/leverage/types/tx.pb.go @@ -642,44 +642,44 @@ func init() { func init() { proto.RegisterFile("umee/leverage/v1beta1/tx.proto", fileDescriptor_2978bda908586e46) } var fileDescriptor_2978bda908586e46 = []byte{ - // 578 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0xcf, 0x6e, 0xd3, 0x4e, - 0x10, 0x8e, 0xd3, 0x36, 0x6a, 0xa6, 0xbf, 0xfe, 0x84, 0xac, 0x10, 0x19, 0x1f, 0x4c, 0xf0, 0x29, - 0x97, 0xda, 0xa4, 0x3d, 0x14, 0x84, 0x38, 0x90, 0x1e, 0xb8, 0x10, 0x09, 0x99, 0x03, 0x12, 0x42, - 0x42, 0xeb, 0x78, 0xe4, 0x5a, 0xd8, 0xde, 0xb0, 0xbb, 0x69, 0x52, 0x71, 0xe2, 0xc6, 0x91, 0x67, - 0xe2, 0xd4, 0x63, 0x8f, 0x9c, 0x10, 0x4a, 0xde, 0x80, 0x27, 0x40, 0xfe, 0x6f, 0x47, 0x08, 0x36, - 0x45, 0xbd, 0xed, 0x78, 0xe6, 0x9b, 0xef, 0x9b, 0xd9, 0xf1, 0x2c, 0x18, 0xf3, 0x08, 0xd1, 0x0e, - 0xf1, 0x02, 0x19, 0xf1, 0xd1, 0xbe, 0x18, 0xb9, 0x28, 0xc8, 0xc8, 0x16, 0x4b, 0x6b, 0xc6, 0xa8, - 0xa0, 0xea, 0x83, 0xc4, 0x1f, 0xa3, 0x58, 0x50, 0xf6, 0xde, 0x4a, 0xce, 0x56, 0x11, 0x6b, 0xe5, - 0xb1, 0xba, 0x31, 0xa5, 0x3c, 0xa2, 0xdc, 0x76, 0x09, 0xaf, 0x12, 0x4c, 0x69, 0x10, 0x67, 0x29, - 0xf4, 0x9e, 0x4f, 0x7d, 0x9a, 0x1e, 0xed, 0xe4, 0x94, 0x7d, 0x35, 0xdf, 0xc1, 0x7f, 0x13, 0xee, - 0xbf, 0xc0, 0xd8, 0x7b, 0xc6, 0x39, 0x0a, 0xb5, 0x0f, 0x9d, 0x10, 0x63, 0x0f, 0x99, 0xa6, 0x0c, - 0x94, 0x61, 0xd7, 0xc9, 0x2d, 0xf5, 0x14, 0x3a, 0x24, 0xa2, 0xf3, 0x58, 0x68, 0xed, 0x81, 0x32, - 0x3c, 0x38, 0xbe, 0x67, 0x65, 0x74, 0x56, 0x42, 0x57, 0x68, 0xb0, 0xce, 0x68, 0x10, 0x8f, 0x77, - 0xaf, 0xbe, 0xdf, 0x6f, 0x39, 0x79, 0xb8, 0x39, 0x85, 0x3b, 0x13, 0xee, 0xbf, 0x0e, 0xc4, 0xb9, - 0xc7, 0xc8, 0xe2, 0x96, 0x48, 0xde, 0xa6, 0x24, 0xaf, 0x50, 0x9c, 0xd1, 0x30, 0x24, 0x02, 0x19, - 0x09, 0x55, 0x1d, 0xf6, 0x5d, 0xca, 0x18, 0x5d, 0x94, 0x34, 0xa5, 0xad, 0xf6, 0x60, 0xcf, 0xc3, - 0x98, 0x46, 0x29, 0x4f, 0xd7, 0xc9, 0x8c, 0x44, 0x16, 0xc6, 0xc4, 0x0d, 0x51, 0xdb, 0x19, 0x28, - 0xc3, 0x7d, 0x27, 0xb7, 0x4c, 0x84, 0xff, 0x27, 0xdc, 0x1f, 0xa7, 0xe0, 0xac, 0x80, 0x3f, 0xe5, - 0xbe, 0x71, 0x11, 0x1e, 0x1c, 0x4e, 0xb8, 0xef, 0xe0, 0x8c, 0x5c, 0xde, 0x22, 0xcb, 0x57, 0x25, - 0xbb, 0xf1, 0xe0, 0xc3, 0x3c, 0xf0, 0x88, 0x40, 0xd5, 0x00, 0x08, 0x73, 0x83, 0x16, 0x3c, 0xb5, - 0x2f, 0x0d, 0x15, 0xed, 0x0d, 0x15, 0x4f, 0xa1, 0xcb, 0x12, 0xbd, 0x11, 0xc6, 0x22, 0x6d, 0x9a, - 0x84, 0x90, 0x0a, 0x91, 0x14, 0xc1, 0x70, 0x41, 0x98, 0xa7, 0xed, 0x4a, 0x16, 0x91, 0x85, 0x9b, - 0x7d, 0xe8, 0xd5, 0xa7, 0xd6, 0x41, 0x3e, 0xa3, 0x31, 0x47, 0x53, 0x07, 0x6d, 0x73, 0xd8, 0x36, - 0x7c, 0x8d, 0x19, 0x29, 0x7d, 0x1a, 0xf4, 0x9b, 0x37, 0x5c, 0x7a, 0x5e, 0xc2, 0xdd, 0xc6, 0xa5, - 0x14, 0x8e, 0x4c, 0xfb, 0x8c, 0x04, 0x5e, 0xda, 0x32, 0x39, 0xed, 0x49, 0xb8, 0xf9, 0x59, 0xc9, - 0xc4, 0x17, 0x17, 0xf0, 0xcf, 0x19, 0x6b, 0x6d, 0x6c, 0x6f, 0xd5, 0xc6, 0xe3, 0x9f, 0x7b, 0xb0, - 0x33, 0xe1, 0xbe, 0x3a, 0x87, 0x6e, 0xb5, 0x01, 0x6c, 0xeb, 0xaf, 0xbb, 0xc6, 0xaa, 0x37, 0x5f, - 0x3f, 0xdd, 0x12, 0x50, 0x16, 0xfc, 0x49, 0x81, 0xc3, 0xe6, 0x62, 0x38, 0x91, 0x4b, 0xd5, 0x00, - 0xe9, 0x4f, 0x6e, 0x00, 0x6a, 0x68, 0x68, 0xee, 0x0d, 0x49, 0x0d, 0x0d, 0x90, 0xac, 0x86, 0xdf, - 0x4e, 0x9f, 0xfa, 0x11, 0x0e, 0xea, 0xcb, 0x65, 0x24, 0x97, 0xab, 0x06, 0xd1, 0x1f, 0x6f, 0x0d, - 0x29, 0xc9, 0x97, 0x00, 0xb5, 0x95, 0xf3, 0x50, 0x2e, 0x51, 0x85, 0xd0, 0x1f, 0x6d, 0x8b, 0x28, - 0x99, 0x93, 0xa9, 0x2b, 0xb7, 0x90, 0xec, 0xd4, 0x15, 0x00, 0xe9, 0xa9, 0xdb, 0xfc, 0xcd, 0xc6, - 0xcf, 0xaf, 0x56, 0x86, 0x72, 0xbd, 0x32, 0x94, 0x1f, 0x2b, 0x43, 0xf9, 0xb2, 0x36, 0x5a, 0xd7, - 0x6b, 0xa3, 0xf5, 0x6d, 0x6d, 0xb4, 0xde, 0x1c, 0xf9, 0x81, 0x38, 0x9f, 0xbb, 0xd6, 0x94, 0x46, - 0x76, 0x92, 0xf0, 0x28, 0xcf, 0x9e, 0x1a, 0xf6, 0xb2, 0x7a, 0x9e, 0xc5, 0xe5, 0x0c, 0xb9, 0xdb, - 0x49, 0x5f, 0xd0, 0x93, 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xc8, 0x83, 0x14, 0x16, 0xbc, 0x07, - 0x00, 0x00, + // 580 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x4d, 0x6f, 0xd3, 0x4c, + 0x10, 0x8e, 0xd3, 0x36, 0x6a, 0xa6, 0x6f, 0x5f, 0x21, 0x2b, 0x44, 0xc6, 0x07, 0x13, 0x7c, 0xca, + 0x05, 0xbb, 0x49, 0x0f, 0x05, 0x21, 0x0e, 0xa4, 0x37, 0x44, 0x24, 0x64, 0x0e, 0x48, 0x08, 0x09, + 0xad, 0xe3, 0x91, 0x6b, 0x61, 0x7b, 0xc3, 0xee, 0xe6, 0xa3, 0xe2, 0xc4, 0x8d, 0x23, 0xbf, 0x89, + 0x53, 0x8f, 0x3d, 0x72, 0x42, 0x28, 0xf9, 0x07, 0xfc, 0x02, 0xe4, 0xcf, 0xd8, 0x11, 0x82, 0x4d, + 0x51, 0x6f, 0x3b, 0x9e, 0x79, 0xe6, 0x79, 0x66, 0x76, 0x3c, 0x0b, 0xc6, 0x2c, 0x42, 0xb4, 0x43, + 0x9c, 0x23, 0x23, 0x3e, 0xda, 0xf3, 0x81, 0x8b, 0x82, 0x0c, 0x6c, 0xb1, 0xb4, 0xa6, 0x8c, 0x0a, + 0xaa, 0x3e, 0x48, 0xfc, 0x31, 0x8a, 0x05, 0x65, 0xef, 0xad, 0xe4, 0x6c, 0x15, 0xb1, 0x56, 0x1e, + 0xab, 0x1b, 0x13, 0xca, 0x23, 0xca, 0x6d, 0x97, 0xf0, 0x4d, 0x82, 0x09, 0x0d, 0xe2, 0x2c, 0x85, + 0xde, 0xf1, 0xa9, 0x4f, 0xd3, 0xa3, 0x9d, 0x9c, 0xb2, 0xaf, 0xe6, 0x3b, 0xf8, 0x6f, 0xcc, 0xfd, + 0x17, 0x18, 0x7b, 0xcf, 0x38, 0x47, 0xa1, 0x76, 0xa1, 0x15, 0x62, 0xec, 0x21, 0xd3, 0x94, 0x9e, + 0xd2, 0x6f, 0x3b, 0xb9, 0xa5, 0x9e, 0x41, 0x8b, 0x44, 0x74, 0x16, 0x0b, 0xad, 0xd9, 0x53, 0xfa, + 0x47, 0xc3, 0x7b, 0x56, 0x46, 0x67, 0x25, 0x74, 0x85, 0x06, 0xeb, 0x9c, 0x06, 0xf1, 0x68, 0xff, + 0xea, 0xfb, 0xfd, 0x86, 0x93, 0x87, 0x9b, 0x13, 0xb8, 0x33, 0xe6, 0xfe, 0xeb, 0x40, 0x5c, 0x78, + 0x8c, 0x2c, 0x6e, 0x89, 0xe4, 0x6d, 0x4a, 0xf2, 0x0a, 0xc5, 0x39, 0x0d, 0x43, 0x22, 0x90, 0x91, + 0x50, 0xd5, 0xe1, 0xd0, 0xa5, 0x8c, 0xd1, 0x45, 0x49, 0x53, 0xda, 0x6a, 0x07, 0x0e, 0x3c, 0x8c, + 0x69, 0x94, 0xf2, 0xb4, 0x9d, 0xcc, 0x48, 0x64, 0x61, 0x4c, 0xdc, 0x10, 0xb5, 0xbd, 0x9e, 0xd2, + 0x3f, 0x74, 0x72, 0xcb, 0x44, 0xf8, 0x7f, 0xcc, 0xfd, 0x51, 0x0a, 0xce, 0x0a, 0xf8, 0x53, 0xee, + 0x1b, 0x17, 0xe1, 0xc1, 0xf1, 0x98, 0xfb, 0x0e, 0x4e, 0xc9, 0xe5, 0x2d, 0xb2, 0x7c, 0x55, 0xb2, + 0x1b, 0x0f, 0x3e, 0xcc, 0x02, 0x8f, 0x08, 0x54, 0x0d, 0x80, 0x30, 0x37, 0x68, 0xc1, 0x53, 0xf9, + 0x52, 0x53, 0xd1, 0xdc, 0x52, 0xf1, 0x14, 0xda, 0x2c, 0xd1, 0x1b, 0x61, 0x2c, 0xd2, 0xa6, 0x49, + 0x08, 0xd9, 0x20, 0x92, 0x22, 0x18, 0x2e, 0x08, 0xf3, 0xb4, 0x7d, 0xc9, 0x22, 0xb2, 0x70, 0xb3, + 0x0b, 0x9d, 0xea, 0xd4, 0x3a, 0xc8, 0xa7, 0x34, 0xe6, 0x68, 0xea, 0xa0, 0x6d, 0x0f, 0xdb, 0x96, + 0xaf, 0x36, 0x23, 0xa5, 0x4f, 0x83, 0x6e, 0xfd, 0x86, 0x4b, 0xcf, 0x4b, 0xb8, 0x5b, 0xbb, 0x94, + 0xc2, 0x91, 0x69, 0x9f, 0x92, 0xc0, 0x4b, 0x5b, 0x26, 0xa7, 0x3d, 0x09, 0x37, 0x3f, 0x2b, 0x99, + 0xf8, 0xe2, 0x02, 0xfe, 0x39, 0x63, 0xa5, 0x8d, 0xcd, 0x9d, 0xda, 0x38, 0xfc, 0x79, 0x00, 0x7b, + 0x63, 0xee, 0xab, 0x33, 0x68, 0x6f, 0x36, 0x80, 0x6d, 0xfd, 0x75, 0xd7, 0x58, 0xd5, 0xe6, 0xeb, + 0x67, 0x3b, 0x02, 0xca, 0x82, 0x3f, 0x29, 0x70, 0x5c, 0x5f, 0x0c, 0xa7, 0x72, 0xa9, 0x6a, 0x20, + 0xfd, 0xc9, 0x0d, 0x40, 0x35, 0x0d, 0xf5, 0xbd, 0x21, 0xa9, 0xa1, 0x06, 0x92, 0xd5, 0xf0, 0xdb, + 0xe9, 0x53, 0x3f, 0xc2, 0x51, 0x75, 0xb9, 0x0c, 0xe4, 0x72, 0x55, 0x20, 0xfa, 0xe3, 0x9d, 0x21, + 0x25, 0xf9, 0x12, 0xa0, 0xb2, 0x72, 0x4e, 0xe4, 0x12, 0x6d, 0x10, 0xfa, 0xa3, 0x5d, 0x11, 0x25, + 0x73, 0x32, 0x75, 0xe5, 0x16, 0x92, 0x9d, 0xba, 0x02, 0x20, 0x3d, 0x75, 0xdb, 0xbf, 0xd9, 0xe8, + 0xf9, 0xd5, 0xca, 0x50, 0xae, 0x57, 0x86, 0xf2, 0x63, 0x65, 0x28, 0x5f, 0xd6, 0x46, 0xe3, 0x7a, + 0x6d, 0x34, 0xbe, 0xad, 0x8d, 0xc6, 0x9b, 0x13, 0x3f, 0x10, 0x17, 0x33, 0xd7, 0x9a, 0xd0, 0xc8, + 0x4e, 0x12, 0x3e, 0xcc, 0xb3, 0xa7, 0x86, 0x3d, 0x1f, 0xda, 0xcb, 0xcd, 0x0b, 0x2d, 0x2e, 0xa7, + 0xc8, 0xdd, 0x56, 0xfa, 0x88, 0x9e, 0xfe, 0x0a, 0x00, 0x00, 0xff, 0xff, 0xe6, 0x94, 0x77, 0xbd, + 0xbf, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/oracle/abci.go b/x/oracle/abci.go index 269ea2314e..2614b1019a 100644 --- a/x/oracle/abci.go +++ b/x/oracle/abci.go @@ -3,8 +3,8 @@ package oracle import ( "time" - "github.com/umee-network/umee/x/oracle/keeper" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/keeper" + "github.com/umee-network/umee/v2/x/oracle/types" "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/oracle/client/cli/query.go b/x/oracle/client/cli/query.go index 5f6953f642..9a437678ba 100644 --- a/x/oracle/client/cli/query.go +++ b/x/oracle/client/cli/query.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/spf13/cobra" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/types" ) // GetQueryCmd returns the CLI query commands for the x/oracle module. diff --git a/x/oracle/client/cli/tx.go b/x/oracle/client/cli/tx.go index 0dc56f1a4e..46e7fb11ab 100644 --- a/x/oracle/client/cli/tx.go +++ b/x/oracle/client/cli/tx.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/spf13/cobra" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/types" ) // GetTxCmd returns the CLI transaction commands for the x/oracle module. diff --git a/x/oracle/client/tests/cli_test.go b/x/oracle/client/tests/cli_test.go index 4b2db6c067..7542f780f4 100644 --- a/x/oracle/client/tests/cli_test.go +++ b/x/oracle/client/tests/cli_test.go @@ -10,7 +10,7 @@ import ( "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" - umeeapp "github.com/umee-network/umee/app" + umeeapp "github.com/umee-network/umee/v2/app" ) func TestIntegrationTestSuite(t *testing.T) { diff --git a/x/oracle/client/tests/suite.go b/x/oracle/client/tests/suite.go index 353539a14f..f85b887738 100644 --- a/x/oracle/client/tests/suite.go +++ b/x/oracle/client/tests/suite.go @@ -12,9 +12,9 @@ import ( "github.com/tendermint/tendermint/crypto/secp256k1" tmcli "github.com/tendermint/tendermint/libs/cli" - umeeapp "github.com/umee-network/umee/app" - "github.com/umee-network/umee/x/oracle/client/cli" - "github.com/umee-network/umee/x/oracle/types" + umeeapp "github.com/umee-network/umee/v2/app" + "github.com/umee-network/umee/v2/x/oracle/client/cli" + "github.com/umee-network/umee/v2/x/oracle/types" ) type IntegrationTestSuite struct { diff --git a/x/oracle/genesis.go b/x/oracle/genesis.go index fed4134f12..0655c48638 100644 --- a/x/oracle/genesis.go +++ b/x/oracle/genesis.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/umee-network/umee/x/oracle/keeper" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/keeper" + "github.com/umee-network/umee/v2/x/oracle/types" ) // InitGenesis initializes the x/oracle module's state from a provided genesis diff --git a/x/oracle/keeper/alias_functions.go b/x/oracle/keeper/alias_functions.go index c2a3cc2949..94407a1478 100644 --- a/x/oracle/keeper/alias_functions.go +++ b/x/oracle/keeper/alias_functions.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/types" ) // GetOracleAccount returns oracle ModuleAccount. diff --git a/x/oracle/keeper/ballot.go b/x/oracle/keeper/ballot.go index 20e1039683..cdaa13bc0c 100644 --- a/x/oracle/keeper/ballot.go +++ b/x/oracle/keeper/ballot.go @@ -3,7 +3,7 @@ package keeper import ( "sort" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/oracle/keeper/ballot_test.go b/x/oracle/keeper/ballot_test.go index ee1a182f29..aa0183c2f8 100644 --- a/x/oracle/keeper/ballot_test.go +++ b/x/oracle/keeper/ballot_test.go @@ -3,7 +3,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/types" ) func (s *IntegrationTestSuite) TestBallot_OrganizeBallotByDenom() { diff --git a/x/oracle/keeper/grpc_query.go b/x/oracle/keeper/grpc_query.go index 8ee85aeb90..c0f33a4d7a 100644 --- a/x/oracle/keeper/grpc_query.go +++ b/x/oracle/keeper/grpc_query.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/types" ) var _ types.QueryServer = querier{} diff --git a/x/oracle/keeper/grpc_query_test.go b/x/oracle/keeper/grpc_query_test.go index a03017fe42..b22cf50255 100644 --- a/x/oracle/keeper/grpc_query_test.go +++ b/x/oracle/keeper/grpc_query_test.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/tendermint/crypto/secp256k1" - umeeapp "github.com/umee-network/umee/app" - "github.com/umee-network/umee/x/oracle/types" + umeeapp "github.com/umee-network/umee/v2/app" + "github.com/umee-network/umee/v2/x/oracle/types" ) func (s *IntegrationTestSuite) TestQuerier_ActiveExchangeRates() { diff --git a/x/oracle/keeper/hooks.go b/x/oracle/keeper/hooks.go index a637144f8e..82bd095d91 100644 --- a/x/oracle/keeper/hooks.go +++ b/x/oracle/keeper/hooks.go @@ -3,8 +3,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - leveragetypes "github.com/umee-network/umee/x/leverage/types" - "github.com/umee-network/umee/x/oracle/types" + leveragetypes "github.com/umee-network/umee/v2/x/leverage/types" + "github.com/umee-network/umee/v2/x/oracle/types" ) // Hooks defines a structure around the x/oracle Keeper that implements various diff --git a/x/oracle/keeper/hooks_test.go b/x/oracle/keeper/hooks_test.go index ea22dca6c2..82eb58a795 100644 --- a/x/oracle/keeper/hooks_test.go +++ b/x/oracle/keeper/hooks_test.go @@ -1,8 +1,8 @@ package keeper_test import ( - umeeapp "github.com/umee-network/umee/app" - leveragetypes "github.com/umee-network/umee/x/leverage/types" + umeeapp "github.com/umee-network/umee/v2/app" + leveragetypes "github.com/umee-network/umee/v2/x/leverage/types" ) func (s *IntegrationTestSuite) TestHooks_AfterTokenRegistered() { diff --git a/x/oracle/keeper/keeper.go b/x/oracle/keeper/keeper.go index 503756b56b..b0d817206c 100644 --- a/x/oracle/keeper/keeper.go +++ b/x/oracle/keeper/keeper.go @@ -12,7 +12,7 @@ import ( gogotypes "github.com/gogo/protobuf/types" "github.com/tendermint/tendermint/libs/log" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/types" ) var ten = sdk.MustNewDecFromStr("10") diff --git a/x/oracle/keeper/keeper_test.go b/x/oracle/keeper/keeper_test.go index a88bd26772..d9addf2537 100644 --- a/x/oracle/keeper/keeper_test.go +++ b/x/oracle/keeper/keeper_test.go @@ -18,9 +18,9 @@ import ( tmrand "github.com/tendermint/tendermint/libs/rand" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - umeeapp "github.com/umee-network/umee/app" - "github.com/umee-network/umee/x/oracle/keeper" - "github.com/umee-network/umee/x/oracle/types" + umeeapp "github.com/umee-network/umee/v2/app" + "github.com/umee-network/umee/v2/x/oracle/keeper" + "github.com/umee-network/umee/v2/x/oracle/types" ) const ( diff --git a/x/oracle/keeper/msg_server.go b/x/oracle/keeper/msg_server.go index 7a764289d4..0ef32fc2fb 100644 --- a/x/oracle/keeper/msg_server.go +++ b/x/oracle/keeper/msg_server.go @@ -7,7 +7,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/types" ) type msgServer struct { diff --git a/x/oracle/keeper/msg_server_test.go b/x/oracle/keeper/msg_server_test.go index 0bf505fdc8..f175dbd0e1 100644 --- a/x/oracle/keeper/msg_server_test.go +++ b/x/oracle/keeper/msg_server_test.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/umee-network/umee/x/oracle/types" - oracletypes "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/types" + oracletypes "github.com/umee-network/umee/v2/x/oracle/types" ) // GenerateSalt generates a random salt, size length/2, as a HEX encoded string. diff --git a/x/oracle/keeper/params.go b/x/oracle/keeper/params.go index 253d75e611..ac207fd6ed 100644 --- a/x/oracle/keeper/params.go +++ b/x/oracle/keeper/params.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/oracle/keeper/reward.go b/x/oracle/keeper/reward.go index 2c65587dc9..0d99c8d4a5 100644 --- a/x/oracle/keeper/reward.go +++ b/x/oracle/keeper/reward.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/types" ) // RewardBallotWinners is executed at the end of every voting period, where we diff --git a/x/oracle/keeper/reward_test.go b/x/oracle/keeper/reward_test.go index 5b3c5b6cc0..9fbd5bae1b 100644 --- a/x/oracle/keeper/reward_test.go +++ b/x/oracle/keeper/reward_test.go @@ -3,7 +3,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/types" ) // Test the reward giving mechanism diff --git a/x/oracle/module.go b/x/oracle/module.go index 16ae0d2ec0..bc516b763a 100644 --- a/x/oracle/module.go +++ b/x/oracle/module.go @@ -17,10 +17,10 @@ import ( abci "github.com/tendermint/tendermint/abci/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/umee-network/umee/x/oracle/client/cli" - "github.com/umee-network/umee/x/oracle/keeper" - simulation "github.com/umee-network/umee/x/oracle/simulations" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/client/cli" + "github.com/umee-network/umee/v2/x/oracle/keeper" + simulation "github.com/umee-network/umee/v2/x/oracle/simulations" + "github.com/umee-network/umee/v2/x/oracle/types" ) var ( diff --git a/x/oracle/simulations/decoder.go b/x/oracle/simulations/decoder.go index 74491ccf3c..1c88856d9f 100644 --- a/x/oracle/simulations/decoder.go +++ b/x/oracle/simulations/decoder.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/x/oracle/simulations/genesis.go b/x/oracle/simulations/genesis.go index fdc0c1ff9e..42ff5e7404 100644 --- a/x/oracle/simulations/genesis.go +++ b/x/oracle/simulations/genesis.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/types" ) // Simulation parameter constants diff --git a/x/oracle/simulations/operations.go b/x/oracle/simulations/operations.go index 9e0cb1d1f6..90a615df9d 100644 --- a/x/oracle/simulations/operations.go +++ b/x/oracle/simulations/operations.go @@ -14,8 +14,8 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/umee-network/umee/x/oracle/keeper" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/keeper" + "github.com/umee-network/umee/v2/x/oracle/types" ) // Simulation operation weights constants diff --git a/x/oracle/simulations/params.go b/x/oracle/simulations/params.go index 037090a794..07df76be9f 100644 --- a/x/oracle/simulations/params.go +++ b/x/oracle/simulations/params.go @@ -7,7 +7,7 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/umee-network/umee/x/oracle/types" + "github.com/umee-network/umee/v2/x/oracle/types" ) // ParamChanges defines the parameters that can be modified by param change proposals diff --git a/x/oracle/types/genesis.pb.go b/x/oracle/types/genesis.pb.go index 8315dfdcff..bd1cf378ed 100644 --- a/x/oracle/types/genesis.pb.go +++ b/x/oracle/types/genesis.pb.go @@ -227,39 +227,39 @@ func init() { func init() { proto.RegisterFile("umee/oracle/v1beta1/genesis.proto", fileDescriptor_2d68cf98f19c3dd5) } var fileDescriptor_2d68cf98f19c3dd5 = []byte{ - // 498 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0xc1, 0x6e, 0xd3, 0x4e, - 0x10, 0xc6, 0xe3, 0x36, 0x8d, 0xf4, 0xdf, 0x24, 0x55, 0xbb, 0xfa, 0x1f, 0xa2, 0x48, 0x75, 0xd2, - 0x48, 0x88, 0x4a, 0x05, 0x5b, 0x09, 0x37, 0x24, 0x0e, 0x0d, 0x04, 0x4e, 0x48, 0x95, 0x41, 0x20, - 0x21, 0x21, 0x6b, 0x63, 0x4f, 0x5c, 0x8b, 0xd8, 0x6b, 0xed, 0xac, 0x43, 0x39, 0x73, 0xe5, 0xc0, - 0x33, 0x70, 0xe4, 0x49, 0x7a, 0xec, 0x91, 0x13, 0xa0, 0xe4, 0x45, 0x90, 0x77, 0xb7, 0x8d, 0x29, - 0x29, 0x96, 0xb8, 0xd9, 0xb3, 0xbf, 0x6f, 0xbe, 0x6f, 0xec, 0x59, 0x72, 0x98, 0x27, 0x00, 0x2e, - 0x17, 0x2c, 0x98, 0x83, 0xbb, 0x18, 0x4e, 0x41, 0xb2, 0xa1, 0x1b, 0x41, 0x0a, 0x18, 0xa3, 0x93, - 0x09, 0x2e, 0x39, 0xed, 0x15, 0x48, 0x0a, 0xf2, 0x3d, 0x17, 0xef, 0x9c, 0xe2, 0xd9, 0xd1, 0xb8, - 0x63, 0xf0, 0xee, 0xff, 0x11, 0x8f, 0xb8, 0x62, 0xdd, 0xe2, 0x49, 0xcb, 0xba, 0xfd, 0x4d, 0x9d, - 0x8d, 0x52, 0x13, 0x76, 0xc0, 0x31, 0xe1, 0xe8, 0x4e, 0x19, 0xae, 0x89, 0x80, 0xc7, 0xa9, 0x3e, - 0x1f, 0x7c, 0xd9, 0x21, 0xad, 0x67, 0x3a, 0xca, 0x0b, 0xc9, 0x24, 0xd0, 0x09, 0x69, 0x64, 0x4c, - 0xb0, 0x04, 0x3b, 0x56, 0xdf, 0x3a, 0x6a, 0x8e, 0xee, 0x3a, 0x15, 0xd1, 0x9c, 0x53, 0x85, 0x8f, - 0xeb, 0x17, 0xdf, 0x7b, 0x35, 0xcf, 0x88, 0xe9, 0x8c, 0xd0, 0x19, 0x40, 0x08, 0xc2, 0x0f, 0x61, - 0x0e, 0x11, 0x93, 0x31, 0x4f, 0xb1, 0xb3, 0xd5, 0xdf, 0x3e, 0x6a, 0x8e, 0x86, 0x95, 0x2d, 0x9f, - 0x2a, 0xe9, 0x93, 0x6b, 0xa5, 0x69, 0xbe, 0x3f, 0xbb, 0x51, 0x47, 0x9a, 0x93, 0x5d, 0x38, 0x0f, - 0xce, 0x58, 0x1a, 0x81, 0x2f, 0x98, 0x04, 0xec, 0x6c, 0x2b, 0x8f, 0x51, 0xa5, 0xc7, 0xc4, 0xc8, - 0x3c, 0x26, 0xe1, 0x65, 0x9e, 0xcd, 0x61, 0xdc, 0x2d, 0x4c, 0xbe, 0xfe, 0xe8, 0xd1, 0x3f, 0x8e, - 0xd0, 0x6b, 0x43, 0xa9, 0x86, 0xf4, 0x35, 0x69, 0x27, 0x31, 0xa2, 0x1f, 0xf0, 0x3c, 0x95, 0x20, - 0xb0, 0x53, 0x57, 0xae, 0xf7, 0x2a, 0x5d, 0x9f, 0xc7, 0x88, 0x8f, 0xb5, 0xc8, 0x0c, 0xd5, 0x4a, - 0xd6, 0x25, 0xa4, 0x9f, 0x2c, 0xd2, 0x67, 0x51, 0x24, 0x8a, 0x01, 0xc1, 0xff, 0x6d, 0x34, 0x3f, - 0x13, 0xb0, 0xe0, 0xc5, 0x88, 0x3b, 0xca, 0xec, 0x51, 0xa5, 0xd9, 0xc9, 0x55, 0xa3, 0xf2, 0x40, - 0xa7, 0xba, 0x8b, 0x71, 0x3f, 0x60, 0x7f, 0x61, 0x90, 0x7e, 0xb4, 0xc8, 0xc1, 0x6d, 0x71, 0x74, - 0x96, 0x86, 0xca, 0xf2, 0xf0, 0xdf, 0xb2, 0xbc, 0x5a, 0x07, 0xe9, 0xb2, 0xdb, 0x00, 0x1c, 0xcc, - 0xc8, 0xde, 0xcd, 0x8d, 0xa0, 0x77, 0xc8, 0xae, 0x59, 0x30, 0x16, 0x86, 0x02, 0x50, 0xef, 0xeb, - 0x7f, 0x5e, 0x5b, 0x57, 0x4f, 0x74, 0x91, 0x1e, 0x93, 0xfd, 0x05, 0x9b, 0xc7, 0x21, 0x93, 0x7c, - 0x4d, 0x6e, 0x29, 0x72, 0xef, 0xfa, 0xc0, 0xc0, 0x83, 0xb7, 0xa4, 0x59, 0xfa, 0x3f, 0x9b, 0xb5, - 0xd6, 0x66, 0x2d, 0x3d, 0x24, 0xad, 0xf2, 0x46, 0x28, 0x8f, 0xba, 0xd7, 0x2c, 0xfd, 0xdc, 0xf1, - 0xe4, 0x62, 0x69, 0x5b, 0x97, 0x4b, 0xdb, 0xfa, 0xb9, 0xb4, 0xad, 0xcf, 0x2b, 0xbb, 0x76, 0xb9, - 0xb2, 0x6b, 0xdf, 0x56, 0x76, 0xed, 0xcd, 0x71, 0x14, 0xcb, 0xb3, 0x7c, 0xea, 0x04, 0x3c, 0x71, - 0x8b, 0x8f, 0x77, 0xdf, 0x7c, 0x49, 0xf5, 0xe2, 0x9e, 0x5f, 0xdd, 0x70, 0xf9, 0x21, 0x03, 0x9c, - 0x36, 0xd4, 0xcd, 0x7d, 0xf0, 0x2b, 0x00, 0x00, 0xff, 0xff, 0x3c, 0x7e, 0xc2, 0x2f, 0x57, 0x04, - 0x00, 0x00, + // 500 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0xc1, 0x6e, 0xd3, 0x40, + 0x10, 0x86, 0xe3, 0x36, 0x8d, 0xc4, 0x26, 0xa9, 0xda, 0x15, 0x87, 0x28, 0x52, 0x9d, 0x34, 0x12, + 0xa2, 0x12, 0x60, 0x2b, 0xe1, 0x86, 0xc4, 0xa1, 0x81, 0x02, 0x17, 0xa4, 0xca, 0x20, 0x90, 0x90, + 0x90, 0xb5, 0xb1, 0x27, 0xae, 0x45, 0xec, 0xb5, 0x76, 0xd6, 0xa1, 0x9c, 0xb9, 0x72, 0xe0, 0x19, + 0x38, 0xf2, 0x24, 0x3d, 0xf6, 0xc8, 0x09, 0x50, 0xf2, 0x22, 0xc8, 0xbb, 0xdb, 0xc6, 0x94, 0x14, + 0x4b, 0xbd, 0xd9, 0xb3, 0xdf, 0x3f, 0xff, 0x3f, 0xf6, 0x2c, 0xd9, 0xcf, 0x13, 0x00, 0x97, 0x0b, + 0x16, 0xcc, 0xc0, 0x9d, 0x0f, 0x27, 0x20, 0xd9, 0xd0, 0x8d, 0x20, 0x05, 0x8c, 0xd1, 0xc9, 0x04, + 0x97, 0x9c, 0xf6, 0x0a, 0x24, 0x05, 0xf9, 0x91, 0x8b, 0x0f, 0x4e, 0xf1, 0xec, 0x68, 0xdc, 0x31, + 0x78, 0xf7, 0x76, 0xc4, 0x23, 0xae, 0x58, 0xb7, 0x78, 0xd2, 0xb2, 0x6e, 0x7f, 0x5d, 0x67, 0xa3, + 0xd4, 0x84, 0x1d, 0x70, 0x4c, 0x38, 0xba, 0x13, 0x86, 0x2b, 0x22, 0xe0, 0x71, 0xaa, 0xcf, 0x07, + 0xdf, 0xb6, 0x48, 0xeb, 0xb9, 0x8e, 0xf2, 0x4a, 0x32, 0x09, 0xf4, 0x88, 0x34, 0x32, 0x26, 0x58, + 0x82, 0x1d, 0xab, 0x6f, 0x1d, 0x34, 0x47, 0x77, 0x9d, 0x8a, 0x68, 0xce, 0xb1, 0xc2, 0xc7, 0xf5, + 0xb3, 0x9f, 0xbd, 0x9a, 0x67, 0xc4, 0x74, 0x4a, 0xe8, 0x14, 0x20, 0x04, 0xe1, 0x87, 0x30, 0x83, + 0x88, 0xc9, 0x98, 0xa7, 0xd8, 0xd9, 0xe8, 0x6f, 0x1e, 0x34, 0x47, 0xc3, 0xca, 0x96, 0xcf, 0x94, + 0xf4, 0xe9, 0xa5, 0xd2, 0x34, 0xdf, 0x9d, 0x5e, 0xa9, 0x23, 0xcd, 0xc9, 0x36, 0x9c, 0x06, 0x27, + 0x2c, 0x8d, 0xc0, 0x17, 0x4c, 0x02, 0x76, 0x36, 0x95, 0xc7, 0xa8, 0xd2, 0xe3, 0xc8, 0xc8, 0x3c, + 0x26, 0xe1, 0x75, 0x9e, 0xcd, 0x60, 0xdc, 0x2d, 0x4c, 0xbe, 0xff, 0xea, 0xd1, 0x7f, 0x8e, 0xd0, + 0x6b, 0x43, 0xa9, 0x86, 0xf4, 0x2d, 0x69, 0x27, 0x31, 0xa2, 0x1f, 0xf0, 0x3c, 0x95, 0x20, 0xb0, + 0x53, 0x57, 0xae, 0xf7, 0x2b, 0x5d, 0x5f, 0xc6, 0x88, 0x4f, 0xb4, 0xc8, 0x0c, 0xd5, 0x4a, 0x56, + 0x25, 0xa4, 0x5f, 0x2c, 0xd2, 0x67, 0x51, 0x24, 0x8a, 0x01, 0xc1, 0xff, 0x6b, 0x34, 0x3f, 0x13, + 0x30, 0xe7, 0xc5, 0x88, 0x5b, 0xca, 0xec, 0x71, 0xa5, 0xd9, 0xe1, 0x45, 0xa3, 0xf2, 0x40, 0xc7, + 0xba, 0x8b, 0x71, 0xdf, 0x63, 0xff, 0x61, 0x90, 0x7e, 0xb6, 0xc8, 0xde, 0x75, 0x71, 0x74, 0x96, + 0x86, 0xca, 0xf2, 0xe8, 0x66, 0x59, 0xde, 0xac, 0x82, 0x74, 0xd9, 0x75, 0x00, 0x0e, 0xa6, 0x64, + 0xe7, 0xea, 0x46, 0xd0, 0x3b, 0x64, 0xdb, 0x2c, 0x18, 0x0b, 0x43, 0x01, 0xa8, 0xf7, 0xf5, 0x96, + 0xd7, 0xd6, 0xd5, 0x43, 0x5d, 0xa4, 0xf7, 0xc8, 0xee, 0x9c, 0xcd, 0xe2, 0x90, 0x49, 0xbe, 0x22, + 0x37, 0x14, 0xb9, 0x73, 0x79, 0x60, 0xe0, 0xc1, 0x7b, 0xd2, 0x2c, 0xfd, 0x9f, 0xf5, 0x5a, 0x6b, + 0xbd, 0x96, 0xee, 0x93, 0x56, 0x79, 0x23, 0x94, 0x47, 0xdd, 0x6b, 0x96, 0x7e, 0xee, 0xf8, 0xc5, + 0xd9, 0xc2, 0xb6, 0xce, 0x17, 0xb6, 0xf5, 0x7b, 0x61, 0x5b, 0x5f, 0x97, 0x76, 0xed, 0x7c, 0x69, + 0xd7, 0x7e, 0x2c, 0xed, 0xda, 0x3b, 0x27, 0x8a, 0xe5, 0x49, 0x3e, 0x71, 0x02, 0x9e, 0xb8, 0xc5, + 0xc7, 0x7b, 0x60, 0xbe, 0xa4, 0x7a, 0x71, 0xe7, 0x23, 0xf7, 0xf4, 0xe2, 0x92, 0xcb, 0x4f, 0x19, + 0xe0, 0xa4, 0xa1, 0x2e, 0xef, 0xc3, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x15, 0x66, 0x92, 0x38, + 0x5a, 0x04, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/oracle/types/oracle.pb.go b/x/oracle/types/oracle.pb.go index 699a284135..c6c01eb483 100644 --- a/x/oracle/types/oracle.pb.go +++ b/x/oracle/types/oracle.pb.go @@ -267,57 +267,57 @@ func init() { func init() { proto.RegisterFile("umee/oracle/v1beta1/oracle.proto", fileDescriptor_217d01b4a642f644) } var fileDescriptor_217d01b4a642f644 = []byte{ - // 795 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0xcf, 0x6f, 0xe3, 0x44, - 0x14, 0x8e, 0x69, 0x1b, 0x9a, 0x49, 0x42, 0xa9, 0x9b, 0x82, 0x69, 0x51, 0x1c, 0x06, 0x51, 0x2a, - 0xa1, 0xc6, 0x6a, 0x41, 0x42, 0xe4, 0x86, 0x95, 0x96, 0x0b, 0x48, 0x91, 0x55, 0x15, 0x89, 0x8b, - 0x35, 0xb6, 0x87, 0xc4, 0x8a, 0xed, 0x89, 0xc6, 0x93, 0xa6, 0xbd, 0x70, 0xe6, 0xc8, 0x91, 0x1b, - 0xbd, 0x70, 0xe1, 0x0e, 0xe2, 0x4f, 0xe8, 0xb1, 0xc7, 0xd5, 0x1e, 0xbc, 0xab, 0xf6, 0xb2, 0x67, - 0xef, 0x3f, 0xb0, 0x9a, 0x1f, 0x69, 0x9c, 0x26, 0x52, 0xb7, 0xda, 0x53, 0xe6, 0x9b, 0xef, 0xbd, - 0xef, 0xfd, 0x9a, 0x17, 0x83, 0xd6, 0x38, 0xc6, 0xd8, 0x22, 0x14, 0xf9, 0x11, 0xb6, 0xce, 0x0f, - 0x3d, 0xcc, 0xd0, 0xa1, 0x82, 0xed, 0x11, 0x25, 0x8c, 0xe8, 0x26, 0xb7, 0x48, 0x30, 0x9b, 0x10, - 0x3a, 0x6c, 0xf3, 0x73, 0x5b, 0xd1, 0xca, 0x7a, 0xa7, 0xd1, 0x27, 0x7d, 0x22, 0x6c, 0x2d, 0x7e, - 0x92, 0x6e, 0x3b, 0x4d, 0x9f, 0xa4, 0x31, 0x49, 0x2d, 0x0f, 0xa5, 0x33, 0x61, 0x9f, 0x84, 0x89, - 0xe4, 0xe1, 0xdf, 0x65, 0x50, 0xee, 0x21, 0x8a, 0xe2, 0x54, 0xff, 0x16, 0x54, 0xcf, 0x09, 0xc3, - 0xee, 0x08, 0xd3, 0x90, 0x04, 0x86, 0xd6, 0xd2, 0xf6, 0x57, 0xed, 0x8f, 0xf2, 0xcc, 0xd4, 0x2f, - 0x51, 0x1c, 0x75, 0x60, 0x81, 0x84, 0x0e, 0xe0, 0xa8, 0x27, 0x80, 0x9e, 0x80, 0x0f, 0x04, 0xc7, - 0x06, 0x14, 0xa7, 0x03, 0x12, 0x05, 0xc6, 0x7b, 0x2d, 0x6d, 0xbf, 0x62, 0xff, 0x70, 0x9d, 0x99, - 0xa5, 0xe7, 0x99, 0xb9, 0xd7, 0x0f, 0xd9, 0x60, 0xec, 0xb5, 0x7d, 0x12, 0x5b, 0x2a, 0x1d, 0xf9, - 0x73, 0x90, 0x06, 0x43, 0x8b, 0x5d, 0x8e, 0x70, 0xda, 0xee, 0x62, 0x3f, 0xcf, 0xcc, 0xed, 0x42, - 0xa4, 0x7b, 0x35, 0xe8, 0xd4, 0xf9, 0xc5, 0xe9, 0x14, 0xeb, 0x18, 0x54, 0x29, 0x9e, 0x20, 0x1a, - 0xb8, 0x1e, 0x4a, 0x02, 0x63, 0x45, 0x04, 0xeb, 0x3e, 0x39, 0x98, 0x2a, 0xab, 0x20, 0x05, 0x1d, - 0x20, 0x91, 0x8d, 0x92, 0x40, 0xf7, 0xc1, 0x8e, 0xe2, 0x82, 0x30, 0x65, 0x34, 0xf4, 0xc6, 0x2c, - 0x24, 0x89, 0x3b, 0x09, 0x93, 0x80, 0x4c, 0x8c, 0x55, 0xd1, 0x9e, 0x2f, 0xf2, 0xcc, 0xfc, 0x6c, - 0x4e, 0x67, 0x89, 0x2d, 0x74, 0x0c, 0x49, 0x76, 0x0b, 0xdc, 0xcf, 0x82, 0xd2, 0x47, 0xa0, 0x8a, - 0x7c, 0x1f, 0x8f, 0x98, 0x1b, 0x85, 0x29, 0x33, 0xd6, 0x5a, 0x2b, 0xfb, 0xd5, 0xa3, 0xbd, 0xf6, - 0x23, 0xc3, 0x6e, 0x77, 0x71, 0x42, 0x62, 0xfb, 0x4b, 0x5e, 0xf3, 0xac, 0x92, 0x82, 0x10, 0xfc, - 0xe7, 0x85, 0x59, 0x11, 0x46, 0x3f, 0x86, 0x29, 0x73, 0x80, 0xa4, 0xf8, 0x99, 0x4f, 0x2b, 0x8d, - 0x50, 0x3a, 0x70, 0x7f, 0xa5, 0xc8, 0xe7, 0x99, 0x18, 0xe5, 0x77, 0x9b, 0xd6, 0xbc, 0x1a, 0x74, - 0xea, 0xe2, 0xe2, 0x44, 0x61, 0xbd, 0x03, 0x6a, 0xd2, 0x42, 0x35, 0xee, 0x7d, 0xd1, 0xb8, 0x8f, - 0xf3, 0xcc, 0xdc, 0x2a, 0xfa, 0x4f, 0x5b, 0x55, 0x15, 0x50, 0x75, 0xe7, 0x37, 0xd0, 0x88, 0xc3, - 0xc4, 0x3d, 0x47, 0x51, 0x18, 0xf0, 0xa7, 0x37, 0xd5, 0x58, 0x17, 0x19, 0xff, 0xf4, 0xe4, 0x8c, - 0x77, 0x65, 0xc4, 0x65, 0x9a, 0xd0, 0xd9, 0x8c, 0xc3, 0xe4, 0x8c, 0xdf, 0xf6, 0x30, 0x95, 0xf1, - 0x3b, 0xeb, 0x7f, 0x5e, 0x99, 0xa5, 0x57, 0x57, 0xa6, 0x06, 0xff, 0xd7, 0xc0, 0x9a, 0xe8, 0xa7, - 0xfe, 0x0d, 0x00, 0x7c, 0x99, 0xdc, 0x80, 0x23, 0xb1, 0x25, 0x15, 0x7b, 0x3b, 0xcf, 0xcc, 0x4d, - 0xa9, 0x3d, 0xe3, 0xa0, 0x53, 0xe1, 0x40, 0x7a, 0xf1, 0x2e, 0x5c, 0xc6, 0x1e, 0x89, 0x94, 0x9f, - 0xdc, 0x90, 0x62, 0x17, 0x0a, 0x2c, 0xef, 0x82, 0x80, 0xd2, 0xd7, 0x02, 0xeb, 0xf8, 0x62, 0x44, - 0x12, 0x9c, 0x30, 0xf1, 0xd8, 0xeb, 0xf6, 0x56, 0x9e, 0x99, 0x1b, 0xd2, 0x6f, 0xca, 0x40, 0xe7, - 0xde, 0xa8, 0x53, 0xfb, 0xfd, 0xca, 0x2c, 0xa9, 0xd4, 0x4b, 0xf0, 0x5f, 0x0d, 0x7c, 0xfa, 0x7d, - 0xbf, 0x4f, 0x71, 0x1f, 0x31, 0x7c, 0x7c, 0xe1, 0x0f, 0x50, 0xd2, 0xc7, 0x0e, 0x62, 0xb8, 0x47, - 0x31, 0x5f, 0x2c, 0xfd, 0x73, 0xb0, 0x3a, 0x40, 0xe9, 0x40, 0xd5, 0xb2, 0x91, 0x67, 0x66, 0x55, - 0x6a, 0xf3, 0x5b, 0xe8, 0x08, 0x52, 0xdf, 0x03, 0x6b, 0xdc, 0x98, 0xaa, 0xcc, 0x3f, 0xcc, 0x33, - 0xb3, 0x36, 0xdb, 0x56, 0x0a, 0x1d, 0x49, 0x8b, 0x42, 0xc7, 0x5e, 0x1c, 0x32, 0xd7, 0x8b, 0x88, - 0x3f, 0x14, 0x09, 0xcf, 0x8f, 0xbb, 0xc0, 0xf2, 0x42, 0x05, 0xb4, 0x39, 0x7a, 0x90, 0xf7, 0x6b, - 0x0d, 0x7c, 0xb2, 0x34, 0xef, 0x33, 0x9e, 0xf4, 0x5f, 0x1a, 0x68, 0x60, 0x75, 0xe9, 0x52, 0xc4, - 0xff, 0x30, 0xc6, 0xa3, 0x08, 0xa7, 0x86, 0x26, 0x56, 0xe8, 0xe8, 0xd1, 0x15, 0x2a, 0x2a, 0x9e, - 0x72, 0x57, 0xfb, 0x3b, 0xb5, 0x4e, 0xbb, 0xd3, 0xce, 0x2e, 0xaa, 0xf3, 0xbd, 0xd2, 0x17, 0x3c, - 0x53, 0x47, 0xc7, 0x0b, 0x77, 0x6f, 0xdb, 0xb1, 0x07, 0x55, 0xff, 0xa7, 0x81, 0xcd, 0x85, 0x00, - 0x5c, 0xab, 0xf8, 0xde, 0x0a, 0x5a, 0xea, 0xc1, 0x48, 0x5a, 0x1f, 0x82, 0xfa, 0x5c, 0xda, 0x2a, - 0xf6, 0xc9, 0x93, 0x37, 0xa5, 0xb1, 0xa4, 0x07, 0xd0, 0xa9, 0x15, 0xcb, 0x9c, 0x4f, 0xdc, 0x3e, - 0xbe, 0xbe, 0x6d, 0x6a, 0x37, 0xb7, 0x4d, 0xed, 0xe5, 0x6d, 0x53, 0xfb, 0xe3, 0xae, 0x59, 0xba, - 0xb9, 0x6b, 0x96, 0x9e, 0xdd, 0x35, 0x4b, 0xbf, 0x7c, 0x55, 0x88, 0xca, 0x27, 0x71, 0xa0, 0xc6, - 0x22, 0x80, 0x75, 0x31, 0xfd, 0xec, 0x89, 0xf0, 0x5e, 0x59, 0x7c, 0x97, 0xbe, 0x7e, 0x13, 0x00, - 0x00, 0xff, 0xff, 0x51, 0x3d, 0xd7, 0x99, 0x12, 0x07, 0x00, 0x00, + // 794 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0xbf, 0x6f, 0xc3, 0x44, + 0x14, 0x8e, 0x69, 0x1b, 0x9a, 0x4b, 0x42, 0xa9, 0x9b, 0x82, 0x69, 0x51, 0x1c, 0x0e, 0x51, 0xba, + 0xd4, 0x56, 0x0b, 0x12, 0x22, 0x1b, 0x56, 0x28, 0x0c, 0x20, 0x45, 0x56, 0x55, 0x24, 0x16, 0xeb, + 0x6c, 0x1f, 0x89, 0x15, 0xdb, 0x17, 0x9d, 0x2f, 0x49, 0xbb, 0x30, 0x33, 0x32, 0xb2, 0xd1, 0x85, + 0x85, 0x1d, 0xc4, 0x9f, 0xd0, 0xb1, 0x23, 0x62, 0x30, 0xa8, 0x5d, 0x98, 0xcd, 0x3f, 0x80, 0xee, + 0x47, 0x1a, 0xa7, 0x89, 0x54, 0x2a, 0xa6, 0xfa, 0xbb, 0xef, 0xbd, 0xef, 0x7d, 0xef, 0xdd, 0xbd, + 0x06, 0x74, 0x26, 0x09, 0xc6, 0x36, 0xa1, 0x28, 0x88, 0xb1, 0x3d, 0x3d, 0xf5, 0x31, 0x43, 0xa7, + 0x0a, 0x5a, 0x63, 0x4a, 0x18, 0xd1, 0x4d, 0x1e, 0x91, 0x62, 0x36, 0x23, 0x74, 0x64, 0xf1, 0x6f, + 0x4b, 0xd1, 0x2a, 0xfa, 0xa0, 0x35, 0x20, 0x03, 0x22, 0x62, 0x6d, 0xfe, 0x25, 0xd3, 0x0e, 0xda, + 0x01, 0xc9, 0x12, 0x92, 0xd9, 0x3e, 0xca, 0x16, 0xc2, 0x01, 0x89, 0x52, 0xc9, 0xc3, 0x9f, 0xaa, + 0xa0, 0xda, 0x47, 0x14, 0x25, 0x99, 0xfe, 0x11, 0xa8, 0x4f, 0x09, 0xc3, 0xde, 0x18, 0xd3, 0x88, + 0x84, 0x86, 0xd6, 0xd1, 0x8e, 0x37, 0x9d, 0x37, 0x8a, 0xdc, 0xd4, 0xaf, 0x51, 0x12, 0x77, 0x61, + 0x89, 0x84, 0x2e, 0xe0, 0xa8, 0x2f, 0x80, 0x9e, 0x82, 0xd7, 0x04, 0xc7, 0x86, 0x14, 0x67, 0x43, + 0x12, 0x87, 0xc6, 0x2b, 0x1d, 0xed, 0xb8, 0xe6, 0x7c, 0x76, 0x9b, 0x9b, 0x95, 0x3f, 0x72, 0xf3, + 0x68, 0x10, 0xb1, 0xe1, 0xc4, 0xb7, 0x02, 0x92, 0xd8, 0xca, 0x8e, 0xfc, 0x73, 0x92, 0x85, 0x23, + 0x9b, 0x5d, 0x8f, 0x71, 0x66, 0xf5, 0x70, 0x50, 0xe4, 0xe6, 0x7e, 0xa9, 0xd2, 0xa3, 0x1a, 0x74, + 0x9b, 0xfc, 0xe0, 0x62, 0x8e, 0x75, 0x0c, 0xea, 0x14, 0xcf, 0x10, 0x0d, 0x3d, 0x1f, 0xa5, 0xa1, + 0xb1, 0x21, 0x8a, 0xf5, 0x5e, 0x5c, 0x4c, 0xb5, 0x55, 0x92, 0x82, 0x2e, 0x90, 0xc8, 0x41, 0x69, + 0xa8, 0x07, 0xe0, 0x40, 0x71, 0x61, 0x94, 0x31, 0x1a, 0xf9, 0x13, 0x16, 0x91, 0xd4, 0x9b, 0x45, + 0x69, 0x48, 0x66, 0xc6, 0xa6, 0x18, 0xcf, 0x7b, 0x45, 0x6e, 0xbe, 0xb3, 0xa4, 0xb3, 0x26, 0x16, + 0xba, 0x86, 0x24, 0x7b, 0x25, 0xee, 0x2b, 0x41, 0xe9, 0x63, 0x50, 0x47, 0x41, 0x80, 0xc7, 0xcc, + 0x8b, 0xa3, 0x8c, 0x19, 0x5b, 0x9d, 0x8d, 0xe3, 0xfa, 0xd9, 0x91, 0xf5, 0xcc, 0x65, 0x5b, 0x3d, + 0x9c, 0x92, 0xc4, 0x79, 0x9f, 0xf7, 0xbc, 0xe8, 0xa4, 0x24, 0x04, 0x7f, 0xfe, 0xd3, 0xac, 0x89, + 0xa0, 0x2f, 0xa2, 0x8c, 0xb9, 0x40, 0x52, 0xfc, 0x9b, 0xdf, 0x56, 0x16, 0xa3, 0x6c, 0xe8, 0x7d, + 0x43, 0x51, 0xc0, 0x9d, 0x18, 0xd5, 0xff, 0x77, 0x5b, 0xcb, 0x6a, 0xd0, 0x6d, 0x8a, 0x83, 0x73, + 0x85, 0xf5, 0x2e, 0x68, 0xc8, 0x08, 0x35, 0xb8, 0x57, 0xc5, 0xe0, 0xde, 0x2c, 0x72, 0x73, 0xaf, + 0x9c, 0x3f, 0x1f, 0x55, 0x5d, 0x40, 0x35, 0x9d, 0x6f, 0x41, 0x2b, 0x89, 0x52, 0x6f, 0x8a, 0xe2, + 0x28, 0xe4, 0x4f, 0x6f, 0xae, 0xb1, 0x2d, 0x1c, 0x7f, 0xf9, 0x62, 0xc7, 0x87, 0xb2, 0xe2, 0x3a, + 0x4d, 0xe8, 0xee, 0x26, 0x51, 0x7a, 0xc9, 0x4f, 0xfb, 0x98, 0xca, 0xfa, 0xdd, 0xed, 0x1f, 0x6e, + 0xcc, 0xca, 0xdf, 0x37, 0xa6, 0x06, 0x7f, 0xd3, 0xc0, 0x96, 0x98, 0xa7, 0xfe, 0x21, 0x00, 0x7c, + 0x99, 0xbc, 0x90, 0x23, 0xb1, 0x25, 0x35, 0x67, 0xbf, 0xc8, 0xcd, 0x5d, 0xa9, 0xbd, 0xe0, 0xa0, + 0x5b, 0xe3, 0x40, 0x66, 0xf1, 0x29, 0x5c, 0x27, 0x3e, 0x89, 0x55, 0x9e, 0xdc, 0x90, 0xf2, 0x14, + 0x4a, 0x2c, 0x9f, 0x82, 0x80, 0x32, 0xd7, 0x06, 0xdb, 0xf8, 0x6a, 0x4c, 0x52, 0x9c, 0x32, 0xf1, + 0xd8, 0x9b, 0xce, 0x5e, 0x91, 0x9b, 0x3b, 0x32, 0x6f, 0xce, 0x40, 0xf7, 0x31, 0xa8, 0xdb, 0xf8, + 0xee, 0xc6, 0xac, 0x28, 0xeb, 0x15, 0xf8, 0x8b, 0x06, 0xde, 0xfe, 0x64, 0x30, 0xa0, 0x78, 0x80, + 0x18, 0xfe, 0xf4, 0x2a, 0x18, 0xa2, 0x74, 0x80, 0x5d, 0xc4, 0x70, 0x9f, 0x62, 0xbe, 0x58, 0xfa, + 0xbb, 0x60, 0x73, 0x88, 0xb2, 0xa1, 0xea, 0x65, 0xa7, 0xc8, 0xcd, 0xba, 0xd4, 0xe6, 0xa7, 0xd0, + 0x15, 0xa4, 0x7e, 0x04, 0xb6, 0x78, 0x30, 0x55, 0xce, 0x5f, 0x2f, 0x72, 0xb3, 0xb1, 0xd8, 0x56, + 0x0a, 0x5d, 0x49, 0x8b, 0x46, 0x27, 0x7e, 0x12, 0x31, 0xcf, 0x8f, 0x49, 0x30, 0x12, 0x86, 0x97, + 0xaf, 0xbb, 0xc4, 0xf2, 0x46, 0x05, 0x74, 0x38, 0x7a, 0xe2, 0xfb, 0x1f, 0x0d, 0xbc, 0xb5, 0xd6, + 0xf7, 0x25, 0x37, 0xfd, 0xa3, 0x06, 0x5a, 0x58, 0x1d, 0x7a, 0x14, 0xf1, 0x7f, 0x18, 0x93, 0x71, + 0x8c, 0x33, 0x43, 0x13, 0x2b, 0x74, 0xf6, 0xec, 0x0a, 0x95, 0x15, 0x2f, 0x78, 0xaa, 0xf3, 0xb1, + 0x5a, 0xa7, 0xc3, 0xf9, 0x64, 0x57, 0xd5, 0xf9, 0x5e, 0xe9, 0x2b, 0x99, 0x99, 0xab, 0xe3, 0x95, + 0xb3, 0xff, 0x3a, 0xb1, 0x27, 0x5d, 0xff, 0xaa, 0x81, 0xdd, 0x95, 0x02, 0x5c, 0xab, 0xfc, 0xde, + 0x4a, 0x5a, 0xea, 0xc1, 0x48, 0x5a, 0x1f, 0x81, 0xe6, 0x92, 0x6d, 0x55, 0xfb, 0xfc, 0xc5, 0x9b, + 0xd2, 0x5a, 0x33, 0x03, 0xe8, 0x36, 0xca, 0x6d, 0x2e, 0x1b, 0x77, 0x3e, 0xbf, 0xbd, 0x6f, 0x6b, + 0x77, 0xf7, 0x6d, 0xed, 0xaf, 0xfb, 0xb6, 0xf6, 0xfd, 0x43, 0xbb, 0x72, 0xf7, 0xd0, 0xae, 0xfc, + 0xfe, 0xd0, 0xae, 0x7c, 0x6d, 0x95, 0xaa, 0xf2, 0x9b, 0x38, 0x51, 0xd7, 0x22, 0x80, 0x3d, 0x3d, + 0xb3, 0xaf, 0xe6, 0xbf, 0x7c, 0xc2, 0x81, 0x5f, 0x15, 0x3f, 0x4d, 0x1f, 0xfc, 0x1b, 0x00, 0x00, + 0xff, 0xff, 0xfd, 0xc6, 0x14, 0xce, 0x15, 0x07, 0x00, 0x00, } func (this *Params) Equal(that interface{}) bool { diff --git a/x/oracle/types/query.pb.go b/x/oracle/types/query.pb.go index 430f9657aa..f3b86a7487 100644 --- a/x/oracle/types/query.pb.go +++ b/x/oracle/types/query.pb.go @@ -833,68 +833,68 @@ func init() { func init() { proto.RegisterFile("umee/oracle/v1beta1/query.proto", fileDescriptor_72ba5acb6994ddef) } var fileDescriptor_72ba5acb6994ddef = []byte{ - // 964 bytes of a gzipped FileDescriptorProto + // 968 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcf, 0x6f, 0xdc, 0x44, - 0x14, 0xde, 0x81, 0x36, 0xa2, 0x6f, 0xd9, 0x25, 0x99, 0x46, 0x22, 0xb8, 0xa9, 0x9d, 0x1a, 0x21, - 0x2a, 0xa1, 0xda, 0x4a, 0x52, 0x14, 0x92, 0x12, 0xd2, 0x4d, 0x13, 0x90, 0x2a, 0x10, 0x65, 0x0f, - 0x3d, 0x20, 0xa4, 0x68, 0x62, 0x0f, 0xae, 0xd5, 0xac, 0x67, 0xeb, 0xf1, 0x86, 0x54, 0x55, 0x2f, - 0x48, 0x48, 0x3d, 0x82, 0x40, 0x88, 0x63, 0x8f, 0x88, 0xff, 0x02, 0xa9, 0x87, 0x1c, 0x03, 0x08, - 0x89, 0x0b, 0x3f, 0x94, 0x70, 0xe0, 0xcf, 0x40, 0x9e, 0x19, 0x7b, 0xed, 0x5d, 0x9b, 0x75, 0x1c, - 0x4e, 0xeb, 0x9d, 0xf7, 0xde, 0x37, 0xdf, 0x37, 0xcf, 0xf3, 0x3e, 0x19, 0x8c, 0x41, 0x8f, 0x52, - 0x9b, 0x85, 0xc4, 0xd9, 0xa3, 0xf6, 0xfe, 0xe2, 0x2e, 0x8d, 0xc8, 0xa2, 0xfd, 0x60, 0x40, 0xc3, - 0x87, 0x56, 0x3f, 0x64, 0x11, 0xc3, 0x22, 0x21, 0xa0, 0xd1, 0x67, 0x2c, 0xbc, 0x6f, 0xc5, 0xcf, - 0x96, 0x4c, 0xb6, 0x54, 0xb2, 0x36, 0xeb, 0x31, 0x8f, 0x89, 0x5c, 0x3b, 0x7e, 0x92, 0x65, 0xda, - 0xbc, 0xc7, 0x98, 0xb7, 0x47, 0x6d, 0xd2, 0xf7, 0x6d, 0x12, 0x04, 0x2c, 0x22, 0x91, 0xcf, 0x02, - 0xae, 0xa2, 0x0b, 0x45, 0xbb, 0x2a, 0x5c, 0x99, 0xa1, 0x3b, 0x8c, 0xf7, 0x18, 0xb7, 0x77, 0x09, - 0x1f, 0x66, 0x38, 0xcc, 0x0f, 0x64, 0xdc, 0xbc, 0x01, 0xaf, 0x7c, 0x14, 0xb3, 0xdc, 0x3e, 0x70, - 0xee, 0x91, 0xc0, 0xa3, 0x5d, 0x12, 0x51, 0xde, 0xa5, 0x0f, 0x06, 0x94, 0x47, 0x78, 0x16, 0xce, - 0xbb, 0x34, 0x60, 0xbd, 0x39, 0xb4, 0x80, 0xae, 0x5e, 0xe8, 0xca, 0x3f, 0x6b, 0x2f, 0x3c, 0x79, - 0x6a, 0x34, 0xfe, 0x79, 0x6a, 0x34, 0xcc, 0x6f, 0x11, 0x68, 0x45, 0xd5, 0xbc, 0xcf, 0x02, 0x4e, - 0xf1, 0x01, 0xb4, 0xa9, 0x0a, 0xec, 0x84, 0x71, 0x64, 0x0e, 0x2d, 0x3c, 0x7f, 0xb5, 0xb9, 0x34, - 0x6f, 0x49, 0x52, 0x56, 0x4c, 0x2a, 0xd1, 0x6f, 0x6d, 0x51, 0xe7, 0x16, 0xf3, 0x83, 0xcd, 0xe5, - 0xc3, 0x3f, 0x8c, 0xc6, 0x0f, 0x7f, 0x1a, 0x6f, 0x78, 0x7e, 0x74, 0x6f, 0xb0, 0x6b, 0x39, 0xac, - 0x67, 0x2b, 0x11, 0xf2, 0xe7, 0x1a, 0x77, 0xef, 0xdb, 0xd1, 0xc3, 0x3e, 0xe5, 0x49, 0x0d, 0xef, - 0xb6, 0x68, 0x96, 0x81, 0x79, 0x05, 0x0c, 0xc1, 0xab, 0xe3, 0x44, 0xfe, 0x3e, 0x2d, 0xd2, 0x66, - 0x6e, 0xc3, 0x42, 0x79, 0x8a, 0x12, 0x70, 0x05, 0x5e, 0x24, 0x22, 0x9c, 0xa1, 0x7f, 0xa1, 0xdb, - 0x94, 0x6b, 0x72, 0xa7, 0x0f, 0x61, 0x5e, 0xc0, 0xbc, 0x4b, 0xa9, 0x4b, 0xc3, 0x2d, 0xba, 0x47, - 0x3d, 0xd1, 0xa1, 0xe4, 0x08, 0x5f, 0x83, 0xf6, 0x3e, 0xd9, 0xf3, 0x5d, 0x12, 0xb1, 0x70, 0x87, - 0xb8, 0x6e, 0xa8, 0xce, 0xb2, 0x95, 0xae, 0x76, 0x5c, 0x37, 0xcc, 0x9c, 0xe9, 0x4d, 0xb8, 0x5c, - 0x02, 0xa8, 0x48, 0x19, 0xd0, 0xfc, 0x54, 0xc4, 0xb2, 0x70, 0x20, 0x97, 0x62, 0x2c, 0xf3, 0x36, - 0xbc, 0x2c, 0x10, 0x3e, 0xf0, 0x39, 0xbf, 0xc5, 0x06, 0x41, 0x44, 0xc3, 0xda, 0x6c, 0xd6, 0x61, - 0x6e, 0x1c, 0x6b, 0x78, 0x3a, 0x3d, 0x9f, 0xf3, 0x1d, 0x47, 0xae, 0x0b, 0xa8, 0x73, 0xdd, 0x66, - 0x6f, 0x98, 0x9a, 0x9e, 0x4e, 0xc7, 0xf3, 0xc2, 0x58, 0x07, 0xbd, 0x13, 0xd2, 0x7d, 0x16, 0xd1, - 0xda, 0x7c, 0xbe, 0x42, 0xea, 0x78, 0xc6, 0x11, 0x15, 0xab, 0x3e, 0xcc, 0x90, 0x24, 0xb6, 0xd3, - 0x97, 0x41, 0x81, 0xda, 0x5c, 0x5a, 0xb7, 0x26, 0xdc, 0x41, 0x2b, 0x45, 0xcd, 0xbe, 0x0f, 0x6a, - 0x87, 0xcd, 0x73, 0xf1, 0x8b, 0xd9, 0x9d, 0x26, 0x23, 0x3b, 0x9b, 0x46, 0x09, 0xa5, 0xf4, 0x55, - 0xfb, 0x06, 0x81, 0x5e, 0x96, 0xa1, 0x58, 0x87, 0x80, 0xc7, 0x58, 0x27, 0xd7, 0xe5, 0x7f, 0xa1, - 0x3d, 0x33, 0x4a, 0x9b, 0x9b, 0xef, 0xab, 0xab, 0x9f, 0x56, 0xdf, 0x3d, 0x4b, 0x67, 0xbe, 0x48, - 0x66, 0xc1, 0x08, 0x9c, 0x12, 0xe8, 0x41, 0x7b, 0x28, 0x30, 0xd3, 0x93, 0xb5, 0x7a, 0xe2, 0xee, - 0x0e, 0x95, 0xb5, 0x48, 0x76, 0x43, 0x73, 0xbe, 0x88, 0x46, 0xda, 0x8a, 0x27, 0x08, 0x2e, 0x15, - 0x86, 0x15, 0x4d, 0x1f, 0x5e, 0xca, 0xd3, 0x4c, 0x9a, 0x70, 0x76, 0x9e, 0xed, 0x1c, 0x4f, 0x6e, - 0xce, 0x02, 0x16, 0x4c, 0xee, 0x90, 0x90, 0xf4, 0x52, 0x82, 0x9f, 0xc0, 0xc5, 0xdc, 0xaa, 0xe2, - 0xb5, 0x0d, 0x53, 0x7d, 0xb1, 0xa2, 0x8e, 0xed, 0xf5, 0x89, 0x74, 0x24, 0x80, 0xda, 0x5b, 0x15, - 0x2f, 0x7d, 0xdf, 0x86, 0xf3, 0x02, 0x1e, 0x3f, 0x43, 0xd0, 0xca, 0x0d, 0x3d, 0x3c, 0x59, 0x61, - 0xa9, 0x51, 0x68, 0x37, 0x6a, 0xd5, 0x4a, 0x6d, 0xe6, 0xda, 0xe7, 0xbf, 0xfc, 0xfd, 0xf5, 0x73, - 0xd7, 0xf1, 0x92, 0x5d, 0xe4, 0x66, 0xc2, 0x73, 0xb8, 0x9d, 0x37, 0x12, 0xfb, 0x91, 0x58, 0x7e, - 0x8c, 0x7f, 0x45, 0x70, 0xb1, 0x60, 0x82, 0xe3, 0x9b, 0xd5, 0x08, 0x95, 0xfb, 0x83, 0xd6, 0x39, - 0x03, 0x82, 0x12, 0xb6, 0x2a, 0x84, 0x2d, 0xe3, 0xc5, 0xff, 0x12, 0xa6, 0x0c, 0x26, 0xaf, 0x0f, - 0xff, 0x8c, 0x60, 0x7a, 0xd4, 0x01, 0xf0, 0x7a, 0x35, 0x4a, 0x25, 0x56, 0xa4, 0xbd, 0x53, 0xb7, - 0x5c, 0xc9, 0xd9, 0x10, 0x72, 0x56, 0xf1, 0x4a, 0xa1, 0x9c, 0x74, 0x2e, 0x70, 0xfb, 0x51, 0x7e, - 0x72, 0x3c, 0xb6, 0xa5, 0x39, 0xe1, 0x1f, 0x11, 0x34, 0x33, 0x46, 0x82, 0xdf, 0xaa, 0x46, 0x68, - 0xdc, 0xc7, 0xb4, 0xd5, 0x1a, 0x95, 0x4a, 0xc5, 0xba, 0x50, 0xb1, 0x82, 0xdf, 0x3c, 0xb5, 0x8a, - 0xd8, 0xd8, 0xf0, 0xef, 0x08, 0xa6, 0x47, 0xc7, 0x78, 0xd5, 0xc6, 0x94, 0xb8, 0x60, 0xd5, 0xc6, - 0x94, 0x59, 0x9e, 0x79, 0x5b, 0x48, 0xda, 0xc2, 0x9b, 0xa7, 0x96, 0x34, 0xe6, 0x39, 0xf8, 0x08, - 0xc1, 0xcc, 0x98, 0x4d, 0xe1, 0x9a, 0x0c, 0xd3, 0xcb, 0xb4, 0x51, 0xbb, 0xbe, 0xd2, 0x8c, 0xc8, - 0x48, 0x1c, 0x77, 0x51, 0xfc, 0x13, 0x82, 0x56, 0x6e, 0xdc, 0x57, 0x1d, 0x75, 0x45, 0xc6, 0x58, - 0x75, 0xd4, 0x15, 0xba, 0xa0, 0xf9, 0x9e, 0x90, 0xd1, 0xc1, 0x1b, 0x65, 0x32, 0x5c, 0x7f, 0x62, - 0xa7, 0x44, 0x9b, 0x9e, 0x21, 0x68, 0xe7, 0x2d, 0x0c, 0xd7, 0x21, 0x96, 0x36, 0xe8, 0xed, 0x7a, - 0xc5, 0x4a, 0xd6, 0x8a, 0x90, 0xb5, 0x88, 0xed, 0xea, 0xdd, 0x91, 0xad, 0xf9, 0x0e, 0xc1, 0x94, - 0x34, 0x2a, 0xbc, 0x5c, 0x8d, 0x41, 0xce, 0x2d, 0xb5, 0xeb, 0xa7, 0x2b, 0x52, 0x74, 0x5f, 0x15, - 0x74, 0x2f, 0xe3, 0x4b, 0x85, 0x74, 0xa5, 0x55, 0x6e, 0x6e, 0x1f, 0x1e, 0xeb, 0xe8, 0xe8, 0x58, - 0x47, 0x7f, 0x1d, 0xeb, 0xe8, 0xcb, 0x13, 0xbd, 0x71, 0x74, 0xa2, 0x37, 0x7e, 0x3b, 0xd1, 0x1b, - 0x1f, 0x67, 0x3f, 0x4c, 0x62, 0x80, 0x6b, 0x6a, 0x7f, 0x89, 0x76, 0x90, 0xe0, 0x89, 0x2f, 0x94, - 0xdd, 0x29, 0xf1, 0x99, 0xb5, 0xfc, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x8f, 0x5b, 0x52, 0x5b, - 0x20, 0x0e, 0x00, 0x00, + 0x14, 0xde, 0x81, 0x36, 0xa2, 0x6f, 0xd9, 0x25, 0x99, 0x46, 0x22, 0x6c, 0xd3, 0xdd, 0xd4, 0x08, + 0x51, 0x09, 0xd5, 0xa3, 0x6c, 0x8a, 0x42, 0x52, 0x42, 0xba, 0x69, 0x02, 0xa8, 0x02, 0x51, 0xf6, + 0xd0, 0x03, 0x42, 0x8a, 0x26, 0xf6, 0xe0, 0x5a, 0xcd, 0x7a, 0xb6, 0x1e, 0xef, 0x92, 0xaa, 0xea, + 0x05, 0x09, 0xa9, 0x47, 0x10, 0x08, 0x71, 0xec, 0x11, 0xf1, 0x5f, 0x20, 0xf5, 0xd0, 0x63, 0x00, + 0x21, 0x71, 0xe1, 0x87, 0x12, 0x0e, 0xfc, 0x19, 0xc8, 0x33, 0x63, 0xaf, 0xbd, 0x6b, 0xb3, 0x8e, + 0xd3, 0xd3, 0x7a, 0xe7, 0xbd, 0xf7, 0xcd, 0xf7, 0xcd, 0xf3, 0xbc, 0x4f, 0x86, 0xd6, 0xa0, 0xc7, + 0x18, 0xe1, 0x3e, 0xb5, 0xf6, 0x19, 0x19, 0x2e, 0xef, 0xb1, 0x80, 0x2e, 0x93, 0x7b, 0x03, 0xe6, + 0xdf, 0x37, 0xfb, 0x3e, 0x0f, 0x38, 0x96, 0x09, 0x1e, 0x0b, 0x3e, 0xe7, 0xfe, 0x5d, 0x33, 0x7c, + 0x36, 0x55, 0xb2, 0xa9, 0x93, 0x1b, 0xf3, 0x0e, 0x77, 0xb8, 0xcc, 0x25, 0xe1, 0x93, 0x2a, 0x6b, + 0x2c, 0x3a, 0x9c, 0x3b, 0xfb, 0x8c, 0xd0, 0xbe, 0x4b, 0xa8, 0xe7, 0xf1, 0x80, 0x06, 0x2e, 0xf7, + 0x84, 0x8e, 0x2e, 0x65, 0xed, 0xaa, 0x71, 0x55, 0x46, 0xd3, 0xe2, 0xa2, 0xc7, 0x05, 0xd9, 0xa3, + 0x62, 0x94, 0x61, 0x71, 0xd7, 0x53, 0x71, 0xe3, 0x1a, 0xbc, 0xf2, 0x71, 0xc8, 0x72, 0xe7, 0xc0, + 0xba, 0x43, 0x3d, 0x87, 0x75, 0x69, 0xc0, 0x44, 0x97, 0xdd, 0x1b, 0x30, 0x11, 0xe0, 0x79, 0x38, + 0x6b, 0x33, 0x8f, 0xf7, 0x16, 0xd0, 0x12, 0xba, 0x7c, 0xae, 0xab, 0xfe, 0xac, 0xbf, 0xf0, 0xe8, + 0x71, 0xab, 0xf2, 0xef, 0xe3, 0x56, 0xc5, 0xf8, 0x0e, 0x41, 0x23, 0xab, 0x5a, 0xf4, 0xb9, 0x27, + 0x18, 0x3e, 0x80, 0x3a, 0xd3, 0x81, 0x5d, 0x3f, 0x8c, 0x2c, 0xa0, 0xa5, 0xe7, 0x2f, 0x57, 0xdb, + 0x8b, 0xa6, 0x22, 0x65, 0x86, 0xa4, 0x22, 0xfd, 0xe6, 0x36, 0xb3, 0x6e, 0x70, 0xd7, 0xdb, 0x5a, + 0x79, 0xfa, 0x67, 0xab, 0xf2, 0xe3, 0x5f, 0xad, 0x37, 0x1c, 0x37, 0xb8, 0x33, 0xd8, 0x33, 0x2d, + 0xde, 0x23, 0x5a, 0x84, 0xfa, 0xb9, 0x22, 0xec, 0xbb, 0x24, 0xb8, 0xdf, 0x67, 0x22, 0xaa, 0x11, + 0xdd, 0x1a, 0x4b, 0x32, 0x30, 0x2e, 0x41, 0x4b, 0xf2, 0xea, 0x58, 0x81, 0x3b, 0x64, 0x59, 0xda, + 0x8c, 0x1d, 0x58, 0xca, 0x4f, 0xd1, 0x02, 0x2e, 0xc1, 0x8b, 0x54, 0x86, 0x13, 0xf4, 0xcf, 0x75, + 0xab, 0x6a, 0x4d, 0xed, 0xf4, 0x11, 0x2c, 0x4a, 0x98, 0x77, 0x19, 0xb3, 0x99, 0xbf, 0xcd, 0xf6, + 0x99, 0x23, 0x3b, 0x14, 0x1d, 0xe1, 0x6b, 0x50, 0x1f, 0xd2, 0x7d, 0xd7, 0xa6, 0x01, 0xf7, 0x77, + 0xa9, 0x6d, 0xfb, 0xfa, 0x2c, 0x6b, 0xf1, 0x6a, 0xc7, 0xb6, 0xfd, 0xc4, 0x99, 0x5e, 0x87, 0x8b, + 0x39, 0x80, 0x9a, 0x54, 0x0b, 0xaa, 0x9f, 0xc9, 0x58, 0x12, 0x0e, 0xd4, 0x52, 0x88, 0x65, 0xdc, + 0x84, 0x97, 0x25, 0xc2, 0x87, 0xae, 0x10, 0x37, 0xf8, 0xc0, 0x0b, 0x98, 0x5f, 0x9a, 0xcd, 0x06, + 0x2c, 0x4c, 0x62, 0x8d, 0x4e, 0xa7, 0xe7, 0x0a, 0xb1, 0x6b, 0xa9, 0x75, 0x09, 0x75, 0xa6, 0x5b, + 0xed, 0x8d, 0x52, 0xe3, 0xd3, 0xe9, 0x38, 0x8e, 0x1f, 0xea, 0x60, 0xb7, 0x7c, 0x36, 0xe4, 0x01, + 0x2b, 0xcd, 0xe7, 0x6b, 0xa4, 0x8f, 0x67, 0x12, 0x51, 0xb3, 0xea, 0xc3, 0x1c, 0x8d, 0x62, 0xbb, + 0x7d, 0x15, 0x94, 0xa8, 0xd5, 0xf6, 0x86, 0x39, 0xe5, 0x0e, 0x9a, 0x31, 0x6a, 0xf2, 0x7d, 0xd0, + 0x3b, 0x6c, 0x9d, 0x09, 0x5f, 0xcc, 0xee, 0x2c, 0x1d, 0xdb, 0xd9, 0x68, 0xe5, 0x50, 0x8a, 0x5f, + 0xb5, 0x6f, 0x11, 0x34, 0xf3, 0x32, 0x34, 0x6b, 0x1f, 0xf0, 0x04, 0xeb, 0xe8, 0xba, 0x3c, 0x13, + 0xda, 0x73, 0xe3, 0xb4, 0x85, 0xf1, 0x81, 0xbe, 0xfa, 0x71, 0xf5, 0xed, 0xd3, 0x74, 0xe6, 0xcb, + 0x68, 0x16, 0x8c, 0xc1, 0x69, 0x81, 0x0e, 0xd4, 0x47, 0x02, 0x13, 0x3d, 0x59, 0x2f, 0x27, 0xee, + 0xf6, 0x48, 0x59, 0x8d, 0x26, 0x37, 0x34, 0x16, 0xb3, 0x68, 0xc4, 0xad, 0x78, 0x84, 0xe0, 0x42, + 0x66, 0x58, 0xd3, 0x74, 0xe1, 0xa5, 0x34, 0xcd, 0xa8, 0x09, 0xa7, 0xe7, 0x59, 0x4f, 0xf1, 0x14, + 0xc6, 0x3c, 0x60, 0xc9, 0xe4, 0x16, 0xf5, 0x69, 0x2f, 0x26, 0xf8, 0x29, 0x9c, 0x4f, 0xad, 0x6a, + 0x5e, 0x3b, 0x30, 0xd3, 0x97, 0x2b, 0xfa, 0xd8, 0x5e, 0x9f, 0x4a, 0x47, 0x01, 0xe8, 0xbd, 0x75, + 0x71, 0xfb, 0x87, 0x3a, 0x9c, 0x95, 0xf0, 0xf8, 0x09, 0x82, 0x5a, 0x6a, 0xe8, 0xe1, 0xe9, 0x0a, + 0x73, 0x8d, 0xa2, 0x71, 0xad, 0x54, 0xad, 0xd2, 0x66, 0xac, 0x7f, 0xf1, 0xeb, 0x3f, 0xdf, 0x3c, + 0x77, 0x15, 0xb7, 0x49, 0x96, 0x9b, 0x49, 0xcf, 0x11, 0x24, 0x6d, 0x24, 0xe4, 0x81, 0x5c, 0x7e, + 0x88, 0x7f, 0x43, 0x70, 0x3e, 0x63, 0x82, 0xe3, 0xeb, 0xc5, 0x08, 0xe5, 0xfb, 0x43, 0xa3, 0x73, + 0x0a, 0x04, 0x2d, 0x6c, 0x4d, 0x0a, 0x5b, 0xc1, 0xcb, 0xff, 0x27, 0x4c, 0x1b, 0x4c, 0x5a, 0x1f, + 0xfe, 0x05, 0xc1, 0xec, 0xb8, 0x03, 0xe0, 0x8d, 0x62, 0x94, 0x72, 0xac, 0xa8, 0xf1, 0x4e, 0xd9, + 0x72, 0x2d, 0x67, 0x53, 0xca, 0x59, 0xc3, 0xab, 0x99, 0x72, 0xe2, 0xb9, 0x20, 0xc8, 0x83, 0xf4, + 0xe4, 0x78, 0x48, 0x94, 0x39, 0xe1, 0x9f, 0x10, 0x54, 0x13, 0x46, 0x82, 0xdf, 0x2a, 0x46, 0x68, + 0xd2, 0xc7, 0x1a, 0x6b, 0x25, 0x2a, 0xb5, 0x8a, 0x0d, 0xa9, 0x62, 0x15, 0xbf, 0x79, 0x62, 0x15, + 0xa1, 0xb1, 0xe1, 0x3f, 0x10, 0xcc, 0x8e, 0x8f, 0xf1, 0xa2, 0x8d, 0xc9, 0x71, 0xc1, 0xa2, 0x8d, + 0xc9, 0xb3, 0x3c, 0xe3, 0xa6, 0x94, 0xb4, 0x8d, 0xb7, 0x4e, 0x2c, 0x69, 0xc2, 0x73, 0xf0, 0x21, + 0x82, 0xb9, 0x09, 0x9b, 0xc2, 0x25, 0x19, 0xc6, 0x97, 0x69, 0xb3, 0x74, 0x7d, 0xa1, 0x19, 0x91, + 0x90, 0x38, 0xe9, 0xa2, 0xf8, 0x67, 0x04, 0xb5, 0xd4, 0xb8, 0x2f, 0x3a, 0xea, 0xb2, 0x8c, 0xb1, + 0xe8, 0xa8, 0xcb, 0x74, 0x41, 0xe3, 0x3d, 0x29, 0xa3, 0x83, 0x37, 0xf3, 0x64, 0xd8, 0xee, 0xd4, + 0x4e, 0xc9, 0x36, 0x3d, 0x41, 0x50, 0x4f, 0x5b, 0x18, 0x2e, 0x43, 0x2c, 0x6e, 0xd0, 0xdb, 0xe5, + 0x8a, 0xb5, 0xac, 0x55, 0x29, 0x6b, 0x19, 0x93, 0xe2, 0xdd, 0x51, 0xad, 0xf9, 0x1e, 0xc1, 0x8c, + 0x32, 0x2a, 0xbc, 0x52, 0x8c, 0x41, 0xca, 0x2d, 0x1b, 0x57, 0x4f, 0x56, 0xa4, 0xe9, 0xbe, 0x2a, + 0xe9, 0x5e, 0xc4, 0x17, 0x32, 0xe9, 0x2a, 0xab, 0xdc, 0x7a, 0xff, 0xe9, 0x51, 0x13, 0x1d, 0x1e, + 0x35, 0xd1, 0xdf, 0x47, 0x4d, 0xf4, 0xd5, 0x71, 0xb3, 0x72, 0x78, 0xdc, 0xac, 0xfc, 0x7e, 0xdc, + 0xac, 0x7c, 0x62, 0x26, 0x3e, 0x4c, 0x42, 0x80, 0x2b, 0x7a, 0x7f, 0x85, 0x36, 0x6c, 0x93, 0x83, + 0x08, 0x52, 0x7e, 0xa4, 0xec, 0xcd, 0xc8, 0x2f, 0xad, 0x95, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, + 0x8b, 0x65, 0x76, 0xe7, 0x23, 0x0e, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/oracle/types/tx.pb.go b/x/oracle/types/tx.pb.go index 54ccf7cdf0..da287d37f3 100644 --- a/x/oracle/types/tx.pb.go +++ b/x/oracle/types/tx.pb.go @@ -279,39 +279,39 @@ func init() { func init() { proto.RegisterFile("umee/oracle/v1beta1/tx.proto", fileDescriptor_b2ad7050c491a929) } var fileDescriptor_b2ad7050c491a929 = []byte{ - // 505 bytes of a gzipped FileDescriptorProto + // 507 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x94, 0x3d, 0x6f, 0x13, 0x31, 0x18, 0xc7, 0x63, 0x52, 0x55, 0xad, 0x51, 0x29, 0x5c, 0x0b, 0x4a, 0xa3, 0xe8, 0x5c, 0x19, 0x04, - 0x54, 0x88, 0x3b, 0xb5, 0x0c, 0x48, 0x95, 0x10, 0xa5, 0x10, 0xc4, 0x12, 0x09, 0x79, 0x60, 0x60, - 0x41, 0x4e, 0xf2, 0xe0, 0x54, 0x5c, 0xe2, 0xc8, 0x76, 0x43, 0xba, 0x33, 0xb0, 0xc1, 0x47, 0x28, - 0x2b, 0x0b, 0x5f, 0x83, 0xb1, 0x23, 0xd3, 0x09, 0x25, 0x4b, 0x27, 0x86, 0xfb, 0x04, 0xc8, 0xbe, - 0x17, 0x82, 0x48, 0x1b, 0xda, 0x6e, 0x3e, 0xff, 0x7f, 0xff, 0xe7, 0xed, 0x1e, 0x19, 0xd7, 0xf6, - 0xbb, 0x00, 0xa1, 0x54, 0xbc, 0x15, 0x41, 0x38, 0xd8, 0x6c, 0x82, 0xe1, 0x9b, 0xa1, 0x19, 0x06, - 0x7d, 0x25, 0x8d, 0xf4, 0x88, 0x55, 0x7b, 0x60, 0xde, 0x4b, 0xf5, 0x2e, 0xb0, 0xe7, 0x20, 0x25, - 0x83, 0x8c, 0xac, 0xae, 0x0a, 0x29, 0xa4, 0x63, 0x43, 0x7b, 0x4a, 0x6d, 0xf4, 0x1b, 0xc2, 0xa4, - 0xa1, 0xc5, 0x13, 0x21, 0x14, 0x08, 0x6e, 0xa0, 0x3e, 0x6c, 0x75, 0x78, 0x4f, 0x00, 0xe3, 0x06, - 0x5e, 0x2a, 0x18, 0x48, 0x03, 0xde, 0x4d, 0x3c, 0xd7, 0xe1, 0xba, 0x53, 0x41, 0xeb, 0xe8, 0xee, - 0xe2, 0xee, 0x72, 0x12, 0x93, 0xcb, 0x07, 0xbc, 0x1b, 0x6d, 0x53, 0x7b, 0x4b, 0x99, 0x13, 0xbd, - 0x0d, 0x3c, 0xff, 0x16, 0xa0, 0x0d, 0xaa, 0x72, 0xc9, 0x61, 0xd7, 0x92, 0x98, 0x2c, 0xa5, 0x58, - 0x7a, 0x4f, 0x59, 0x06, 0x78, 0x5b, 0x78, 0x71, 0xc0, 0xa3, 0xbd, 0x36, 0x37, 0x52, 0x55, 0xca, - 0x8e, 0x5e, 0x4d, 0x62, 0x72, 0x35, 0xa5, 0x0b, 0x89, 0xb2, 0x3f, 0xd8, 0xf6, 0xc2, 0xc7, 0x43, - 0x52, 0x3a, 0x3e, 0x24, 0x25, 0xba, 0x81, 0xef, 0xcc, 0x28, 0x98, 0x81, 0xee, 0xcb, 0x9e, 0x06, - 0xfa, 0x0b, 0xe1, 0xda, 0x49, 0xec, 0xab, 0xac, 0x33, 0xcd, 0x23, 0xf3, 0x6f, 0x67, 0xf6, 0x96, - 0x32, 0x27, 0x7a, 0x3b, 0xf8, 0x0a, 0x64, 0xc6, 0x37, 0x8a, 0x1b, 0xd0, 0x59, 0x87, 0x6b, 0x49, - 0x4c, 0xae, 0xa7, 0xf8, 0xdf, 0x3a, 0x65, 0x4b, 0x30, 0x91, 0x49, 0x4f, 0xcc, 0xa6, 0x7c, 0xa6, - 0xd9, 0xcc, 0x9d, 0x75, 0x36, 0xb7, 0xf1, 0xad, 0xd3, 0xfa, 0x2d, 0x06, 0xf3, 0x01, 0xe1, 0x1b, - 0x0d, 0x2d, 0x9e, 0x41, 0xe4, 0xb8, 0xe7, 0x00, 0xed, 0xa7, 0x56, 0xe8, 0x19, 0x2f, 0xc4, 0x0b, - 0xb2, 0x0f, 0xca, 0xe5, 0x4f, 0xc7, 0xb2, 0x92, 0xc4, 0x64, 0x39, 0xcd, 0x9f, 0x2b, 0x94, 0x15, - 0x90, 0x35, 0xb4, 0xb3, 0x38, 0xd9, 0x60, 0x26, 0x0c, 0xb9, 0x42, 0x59, 0x01, 0x4d, 0x94, 0xbb, - 0x8e, 0xfd, 0xe9, 0x55, 0xe4, 0x85, 0x6e, 0x1d, 0x97, 0x71, 0xb9, 0xa1, 0x85, 0xf7, 0x15, 0xe1, - 0xda, 0xa9, 0x3b, 0xba, 0x13, 0xcc, 0xd8, 0xff, 0x60, 0xc6, 0xd2, 0x54, 0x5f, 0x5c, 0x34, 0x42, - 0x5e, 0xb4, 0xf7, 0x05, 0xe1, 0xb5, 0x93, 0x77, 0xee, 0xd1, 0xb9, 0xf3, 0x58, 0x7b, 0xb5, 0x7e, - 0x21, 0x7b, 0x51, 0xe3, 0x27, 0x84, 0x57, 0xa6, 0xfd, 0xfe, 0x87, 0xff, 0x13, 0x7e, 0x8a, 0xb1, - 0xfa, 0xf8, 0x9c, 0xc6, 0xbc, 0xa2, 0xdd, 0xfa, 0xf7, 0x91, 0x8f, 0x8e, 0x46, 0x3e, 0xfa, 0x39, - 0xf2, 0xd1, 0xe7, 0xb1, 0x5f, 0x3a, 0x1a, 0xfb, 0xa5, 0x1f, 0x63, 0xbf, 0xf4, 0xfa, 0x9e, 0xd8, - 0x33, 0x9d, 0xfd, 0x66, 0xd0, 0x92, 0xdd, 0xd0, 0x06, 0xbe, 0x9f, 0x65, 0x71, 0x1f, 0xe1, 0x30, - 0x7f, 0x12, 0xcd, 0x41, 0x1f, 0x74, 0x73, 0xde, 0xbd, 0x6b, 0x0f, 0x7e, 0x07, 0x00, 0x00, 0xff, - 0xff, 0x07, 0x52, 0x2c, 0xeb, 0x2e, 0x05, 0x00, 0x00, + 0x74, 0xe0, 0x4e, 0x0d, 0x03, 0x52, 0x25, 0x44, 0x29, 0x14, 0x75, 0x89, 0x84, 0x3c, 0x30, 0xb0, + 0x20, 0x27, 0x79, 0x70, 0x2a, 0x2e, 0x71, 0x64, 0xbb, 0x21, 0xdd, 0x19, 0xd8, 0xe0, 0x23, 0x94, + 0x95, 0x85, 0xaf, 0xc1, 0xd8, 0x91, 0xe9, 0x84, 0x92, 0xa5, 0x13, 0xc3, 0x7d, 0x02, 0x64, 0xdf, + 0x0b, 0x41, 0xa4, 0x0d, 0x6d, 0x37, 0x9f, 0xff, 0xbf, 0xff, 0xf3, 0x76, 0x8f, 0x8c, 0x6b, 0x07, + 0x5d, 0x80, 0x50, 0x2a, 0xde, 0x8a, 0x20, 0x1c, 0x6c, 0x36, 0xc1, 0xf0, 0xcd, 0xd0, 0x0c, 0x83, + 0xbe, 0x92, 0x46, 0x7a, 0xc4, 0xaa, 0x3d, 0x30, 0xef, 0xa5, 0x7a, 0x17, 0xd8, 0x73, 0x90, 0x92, + 0x41, 0x46, 0x56, 0x57, 0x85, 0x14, 0xd2, 0xb1, 0xa1, 0x3d, 0xa5, 0x36, 0xfa, 0x0d, 0x61, 0xd2, + 0xd0, 0xe2, 0xa9, 0x10, 0x0a, 0x04, 0x37, 0xb0, 0x3b, 0x6c, 0x75, 0x78, 0x4f, 0x00, 0xe3, 0x06, + 0x5e, 0x2a, 0x18, 0x48, 0x03, 0xde, 0x6d, 0x3c, 0xd7, 0xe1, 0xba, 0x53, 0x41, 0xeb, 0xe8, 0xfe, + 0xe2, 0xce, 0x72, 0x12, 0x93, 0xab, 0x87, 0xbc, 0x1b, 0x6d, 0x51, 0x7b, 0x4b, 0x99, 0x13, 0xbd, + 0x0d, 0x3c, 0xff, 0x16, 0xa0, 0x0d, 0xaa, 0x72, 0xc5, 0x61, 0x37, 0x92, 0x98, 0x2c, 0xa5, 0x58, + 0x7a, 0x4f, 0x59, 0x06, 0x78, 0x75, 0xbc, 0x38, 0xe0, 0xd1, 0x7e, 0x9b, 0x1b, 0xa9, 0x2a, 0x65, + 0x47, 0xaf, 0x26, 0x31, 0xb9, 0x9e, 0xd2, 0x85, 0x44, 0xd9, 0x1f, 0x6c, 0x6b, 0xe1, 0xe3, 0x11, + 0x29, 0x9d, 0x1c, 0x91, 0x12, 0xdd, 0xc0, 0xf7, 0x66, 0x14, 0xcc, 0x40, 0xf7, 0x65, 0x4f, 0x03, + 0xfd, 0x85, 0x70, 0xed, 0x34, 0xf6, 0x55, 0xd6, 0x99, 0xe6, 0x91, 0xf9, 0xb7, 0x33, 0x7b, 0x4b, + 0x99, 0x13, 0xbd, 0x6d, 0x7c, 0x0d, 0x32, 0xe3, 0x1b, 0xc5, 0x0d, 0xe8, 0xac, 0xc3, 0xb5, 0x24, + 0x26, 0x37, 0x53, 0xfc, 0x6f, 0x9d, 0xb2, 0x25, 0x98, 0xc8, 0xa4, 0x27, 0x66, 0x53, 0x3e, 0xd7, + 0x6c, 0xe6, 0xce, 0x3b, 0x9b, 0xbb, 0xf8, 0xce, 0x59, 0xfd, 0x16, 0x83, 0xf9, 0x80, 0xf0, 0xad, + 0x86, 0x16, 0xcf, 0x21, 0x72, 0xdc, 0x0b, 0x80, 0xf6, 0x33, 0x2b, 0xf4, 0x8c, 0x17, 0xe2, 0x05, + 0xd9, 0x07, 0xe5, 0xf2, 0xa7, 0x63, 0x59, 0x49, 0x62, 0xb2, 0x9c, 0xe6, 0xcf, 0x15, 0xca, 0x0a, + 0xc8, 0x1a, 0xda, 0x59, 0x9c, 0x6c, 0x30, 0x13, 0x86, 0x5c, 0xa1, 0xac, 0x80, 0x26, 0xca, 0x5d, + 0xc7, 0xfe, 0xf4, 0x2a, 0xf2, 0x42, 0xeb, 0x27, 0x65, 0x5c, 0x6e, 0x68, 0xe1, 0x7d, 0x45, 0xb8, + 0x76, 0xe6, 0x8e, 0x6e, 0x07, 0x33, 0xf6, 0x3f, 0x98, 0xb1, 0x34, 0xd5, 0xbd, 0xcb, 0x46, 0xc8, + 0x8b, 0xf6, 0xbe, 0x20, 0xbc, 0x76, 0xfa, 0xce, 0x3d, 0xbe, 0x70, 0x1e, 0x6b, 0xaf, 0xee, 0x5e, + 0xca, 0x5e, 0xd4, 0xf8, 0x09, 0xe1, 0x95, 0x69, 0xbf, 0xff, 0xd1, 0xff, 0x84, 0x9f, 0x62, 0xac, + 0x3e, 0xb9, 0xa0, 0x31, 0xaf, 0x68, 0x67, 0xef, 0xfb, 0xc8, 0x47, 0xc7, 0x23, 0x1f, 0xfd, 0x1c, + 0xf9, 0xe8, 0xf3, 0xd8, 0x2f, 0x1d, 0x8f, 0xfd, 0xd2, 0x8f, 0xb1, 0x5f, 0x7a, 0x1d, 0x88, 0x7d, + 0xd3, 0x39, 0x68, 0x06, 0x2d, 0xd9, 0x0d, 0x6d, 0xe0, 0x07, 0x59, 0x16, 0xf7, 0x11, 0x0e, 0xea, + 0xe1, 0x30, 0x7f, 0x15, 0xcd, 0x61, 0x1f, 0x74, 0x73, 0xde, 0x3d, 0x6d, 0x0f, 0x7f, 0x07, 0x00, + 0x00, 0xff, 0xff, 0x71, 0xc8, 0x2f, 0x6e, 0x31, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/oracle/types/vote.go b/x/oracle/types/vote.go index 4c92a6cee2..e15f30d246 100644 --- a/x/oracle/types/vote.go +++ b/x/oracle/types/vote.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "gopkg.in/yaml.v3" - "github.com/umee-network/umee/x/leverage/types" + "github.com/umee-network/umee/v2/x/leverage/types" ) func NewAggregateExchangeRatePrevote(